:root{
  --bg:#070a12;
  --bg2:#05070e;
  --text:#d7e9ff;
  --muted:#8fb5e6;
  --line:rgba(90,160,255,.18);
  --blue:#3aa7ff;
  --cyan:#66d4ff;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  overflow-x:hidden;

  /* ✅ ОДИН КОЛІР НА ВСЮ СТОРІНКУ (без переходу) */
  background: var(--bg);

  position: relative;
}

/* ✅ ВИМКНЕНО glow, бо він створює “плями/перехід” */
body::before{
  content:"";
  display:none;
}

/* ✅ ВИМКНЕНО grid, бо він теж може виглядати як перехід/накладка */
body::after{
  content:"";
  display:none;
}

.container{ width:min(1100px, 92vw); margin:0 auto; }

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  padding:52px 0 18px;
  align-items:center;
}
@media (max-width: 900px){
  .hero{ grid-template-columns:1fr; padding-top:34px; }
}

.badge{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  background:rgba(10,18,35,.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(60,150,255,.08) inset;
}

.title{
  margin:14px 0 10px;
  font-size: clamp(40px, 6vw, 64px);
  line-height:1.05;
  text-shadow:
    0 0 8px rgba(58,167,255,.4),
    0 0 18px rgba(58,167,255,.25),
    0 0 28px rgba(58,167,255,.15);
}

.subtitle{
  margin:0;
  color:rgba(215,233,255,.84);
  font-size: 16px;
  line-height:1.65;
  max-width: 72ch;
}

/* CTFtime block */
.ctftime{
  margin-top:14px;
  border:1px solid rgba(90,160,255,.22);
  border-radius:16px;
  padding:12px 14px;
  background: rgba(10,18,35,.35);
  box-shadow: 0 0 0 1px rgba(60,150,255,.08) inset;
  width: fit-content;
}
.ctftime__label{
  font-size:12px;
  color: rgba(143,181,230,.95);
  margin-bottom:6px;
}
.ctftime__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color: rgba(102,212,255,.95);
  font-weight:800;
  letter-spacing:.2px;
}
.ctftime__link:hover{ text-decoration: underline; }
.ctftime__arrow{ opacity:.8; transform: translateY(-1px); }

.hero__meta{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 520px){ .hero__meta{ grid-template-columns:1fr; } }

.stat{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  background:rgba(10,18,35,.42);
  box-shadow: 0 0 0 1px rgba(60,150,255,.08) inset;
}
.stat__label{ color:var(--muted); font-size:12px; }
.stat__value{ font-weight:800; font-size:22px; margin-top:4px; color: #eaf4ff; }
.stat__hint{ color:rgba(215,233,255,.66); font-size:12px; margin-top:2px; }

.logoCard{
  position:relative;
  border-radius: 22px;
  border: 1px solid rgba(90,160,255,.28);
  background: rgba(10,18,35,.35);
  overflow:hidden;
  padding: 14px;
  box-shadow: 0 0 0 1px rgba(60,150,255,.10) inset, 0 0 42px rgba(58,167,255,.18);
}
.logo{
  width:100%;
  height:auto;
  display:block;
  border-radius: 16px;
  filter: saturate(1.1) contrast(1.05);
}
.logoGlow{
  position:absolute; inset:-40px;
  background: radial-gradient(circle at 40% 30%, rgba(58,167,255,.30), transparent 55%),
              radial-gradient(circle at 75% 75%, rgba(102,212,255,.18), transparent 55%);
  mix-blend-mode: screen;
  pointer-events:none;
}

.section{ padding: 22px 0 10px; }
.section__head{ display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.section__title{ margin:0 0 14px; font-size: 22px; }

.team{ display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap:10px; }
@media (max-width: 900px){ .team{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px){ .team{ grid-template-columns: 1fr; } }

.member{
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  background: rgba(10,18,35,.35);
  box-shadow: 0 0 0 1px rgba(60,150,255,.08) inset;
}
.member__role{ color: var(--muted); font-size: 12px; }
.member__name{ margin-top:6px; font-weight:800; font-size: 16px; color:#eaf4ff; }

.captain{
  border-color: rgba(58,167,255,.50);
  box-shadow: 0 0 0 1px rgba(58,167,255,.18) inset, 0 0 22px rgba(58,167,255,.12);
}

.pill{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  background: rgba(10,18,35,.35);
}

.tableWrap{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background: rgba(10,18,35,.35);
  box-shadow: 0 0 0 1px rgba(60,150,255,.08) inset;
}
.table{ width:100%; border-collapse: collapse; font-size: 14px; }
.table thead th{
  text-align:left;
  padding:12px;
  color: rgba(215,233,255,.88);
  background: rgba(12,22,45,.55);
  border-bottom: 1px solid rgba(90,160,255,.18);
}
.table tbody td{
  padding:11px 12px;
  border-bottom: 1px solid rgba(90,160,255,.12);
  color: rgba(215,233,255,.78);
  background: transparent;
}
.table tbody tr:hover td{ background: rgba(58,167,255,.06); }
.table tbody tr:last-child td{ border-bottom:none; }

.footer{ padding: 26px 0 40px; }
.footer__line{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(90,160,255,.25), transparent);
  margin-bottom: 12px;
}
.footer__content{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  color: rgba(215,233,255,.75);
  font-size: 13px;
}

/* Hosted by bigger */
.hosted{
  font-size: 14px;
  font-weight: 800;
  color: rgba(180,215,255,.88);
  letter-spacing: .2px;
}
