:root {
  --bg: #04060c;
  --bg2: #070b16;
  --panel: #0a101f;
  --line: rgba(79, 227, 255, 0.14);
  --blue: #2f7bff;
  --cyan: #4fe3ff;
  --gold: #e8c26a;
  --gold-dim: #a8863c;
  --text: #dbe6f5;
  --muted: #7d8ba3;
  --red: #ff8fb0;
  --font-display: "Oswald", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-body: "Manrope", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
::selection {
  background: var(--blue);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ---------- utilities ---------- */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.6;
}
h2.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 14px 0 18px;
}
.section-lead {
  color: var(--muted);
  max-width: 560px;
  font-size: 17px;
}

/* reveal on scroll */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rv.on {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
  }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(4, 6, 12, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--cyan);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--cyan);
  box-shadow:
    0 0 14px rgba(79, 227, 255, 0.35),
    inset 0 0 8px rgba(79, 227, 255, 0.15);
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 34px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
  font-size: 15px;
}
.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.btn-vip {
  color: #0b0800;
  background: linear-gradient(135deg, #f2d489, var(--gold) 45%, #c79a3e);
  box-shadow: 0 0 22px rgba(232, 194, 106, 0.35);
}
.btn-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(232, 194, 106, 0.5);
}
.btn-ghost {
  color: var(--cyan);
  border-color: rgba(79, 227, 255, 0.45);
  background: rgba(79, 227, 255, 0.05);
}
.btn-ghost:hover {
  background: rgba(79, 227, 255, 0.12);
  transform: translateY(-2px);
}
.btn-nav {
  padding: 9px 18px;
  font-size: 13px;
}
@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 90px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("bg-sports.png") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 40%,
      rgba(4, 6, 12, 0.25),
      rgba(4, 6, 12, 0.9) 80%
    ),
    linear-gradient(
      180deg,
      rgba(4, 6, 12, 0.55),
      rgba(4, 6, 12, 0.35) 40%,
      var(--bg) 96%
    );
}
.rune-ring {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: min(88vmin, 760px);
  height: min(88vmin, 760px);
  transform: translate(-50%, -52%);
  opacity: 0.5;
  pointer-events: none;
}
.rune-ring svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.ring-a {
  animation: spin 90s linear infinite;
  transform-origin: center;
}
.ring-b {
  animation: spin 140s linear infinite reverse;
  transform-origin: center;
}
.ring-c {
  animation: spin 200s linear infinite;
  transform-origin: center;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.rune-ring text {
  font-family: var(--font-mono);
  fill: var(--cyan);
  letter-spacing: 0.6em;
}
.hero-in {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(79, 227, 255, 0.35);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 28px;
  background: rgba(4, 6, 12, 0.55);
  box-shadow: 0 0 18px rgba(79, 227, 255, 0.15);
}
.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 9vw, 118px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 60px rgba(47, 123, 255, 0.45);
}
.hero h1 .accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
  text-shadow: 0 0 34px rgba(79, 227, 255, 0.5);
}
.hero-sub {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text);
}
.hero-sub b {
  color: var(--cyan);
  font-weight: 600;
}
.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hstat {
  padding: 6px 38px;
  border-left: 1px solid var(--line);
  text-align: left;
}
.hstat:first-child {
  border-left: none;
}
.hstat .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  color: var(--cyan);
  line-height: 1;
}
.hstat .l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
@media (max-width: 620px) {
  .hstat {
    padding: 6px 20px;
  }
}

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 22, 0.85);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: inline-flex;
  animation: marquee 42s linear infinite;
}
.ticker span {
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ticker .sep {
  color: var(--blue);
}
.ticker .hot {
  color: var(--cyan);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- sections ---------- */
section {
  position: relative;
  padding: 110px 0;
}
.section-head {
  margin-bottom: 56px;
}

/* ---------- disciplines ---------- */
.disc-list {
  border-top: 1px solid var(--line);
}
.disc {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 30px;
  padding: 38px 10px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background 0.3s;
}
.disc::before {
  /* сканирующая линия слева */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
  box-shadow: 0 0 16px rgba(79, 227, 255, 0.6);
}
.disc:hover {
  background: rgba(47, 123, 255, 0.045);
}
.disc:hover::before {
  transform: scaleY(1);
}
.disc .glyph {
  font-family: var(--font-mono);
  font-size: 34px;
  color: var(--blue);
  text-align: center;
  text-shadow: 0 0 18px rgba(47, 123, 255, 0.5);
  transition:
    color 0.3s,
    text-shadow 0.3s;
}
.disc:hover .glyph {
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(79, 227, 255, 0.7);
}
.disc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(125, 139, 163, 0.65);
  transition:
    color 0.35s,
    -webkit-text-stroke-color 0.35s,
    text-shadow 0.35s;
}
.disc:hover .disc-name {
  color: var(--text);
  -webkit-text-stroke-color: transparent;
  text-shadow: 0 0 34px rgba(79, 227, 255, 0.35);
}
.disc-what {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
}
.disc-what b {
  color: var(--cyan);
  font-weight: 600;
}

@media (max-width: 820px) {
  .disc {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 30px 6px;
  }
  .disc .glyph {
    font-size: 26px;
  }
}

/* ---------- youtube ---------- */
#youtube {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    var(--bg2) 20%,
    var(--bg2) 80%,
    var(--bg) 100%
  );
}
.yt-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .yt-grid {
    grid-template-columns: 1fr;
  }
}
.yt-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.yt-item:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 227, 255, 0.4);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
}
.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: #060a14;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition:
    opacity 0.3s,
    transform 0.4s;
}
.yt-item:hover .yt-thumb img {
  opacity: 1;
  transform: scale(1.04);
}
.yt-play {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(4, 6, 12, 0.7);
  border: 1px solid var(--cyan);
  display: grid;
  place-items: center;
  box-shadow: 0 0 26px rgba(79, 227, 255, 0.4);
  transition:
    transform 0.25s,
    background 0.25s;
}
.yt-thumb:hover .yt-play {
  transform: scale(1.1);
  background: rgba(47, 123, 255, 0.35);
}
.yt-play::after {
  content: "";
  display: block;
  margin-left: 4px;
  border-left: 16px solid var(--cyan);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.yt-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-meta {
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.yt-meta .live-dot {
  color: var(--red);
}
.yt-empty {
  grid-column: 1/-1;
  border: 1px dashed rgba(79, 227, 255, 0.3);
  border-radius: 12px;
  padding: 60px 30px;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ---------- VIP ---------- */
#vip {
  overflow: hidden;
}
.vip-in {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 940px) {
  .vip-in {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.vip-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(232, 194, 106, 0.35);
  box-shadow:
    0 0 60px rgba(232, 194, 106, 0.12),
    0 30px 70px rgba(0, 0, 0, 0.6);
}
.vip-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 6, 12, 0.75));
}
.vip-img .badge {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232, 194, 106, 0.5);
  border-radius: 999px;
  padding: 7px 16px;
  background: rgba(4, 6, 12, 0.65);
  backdrop-filter: blur(6px);
}
.vip-copy .eyebrow {
  color: var(--gold);
}
.vip-copy .eyebrow::before {
  background: var(--gold);
}
.vip-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 14px 0 8px;
}
.vip-copy h2 .crown {
  color: var(--gold);
  text-shadow: 0 0 26px rgba(232, 194, 106, 0.5);
}
.vip-copy .vip-sub {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 26px;
}
.vip-list {
  list-style: none;
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.vip-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 500;
}
.vip-list li::before {
  content: "♠";
  flex: none;
  color: var(--gold);
  font-size: 14px;
  text-shadow: 0 0 10px rgba(232, 194, 106, 0.6);
}
.vip-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.vip-note {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 34px;
  background: var(--bg2);
}
.f-in {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.f-links {
  display: flex;
  gap: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.f-links a:hover {
  color: var(--cyan);
}
.f-legal {
  width: 100%;
  margin-top: 26px;
  font-size: 12.5px;
  color: #5a6577;
  max-width: 760px;
}
