:root {
  --bg: #030a1a;
  --bg-soft: #081225;
  --panel: rgba(7, 16, 34, 0.88);
  --panel-strong: rgba(10, 21, 43, 0.96);
  --line: rgba(116, 197, 255, 0.18);
  --line-strong: rgba(116, 197, 255, 0.35);
  --text: #eef6ff;
  --muted: #90a6c8;
  --blue: #1495ff;
  --blue-2: #35d0ff;
  --blue-3: #0d5bff;
  --green: #71ff9c;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --glow: 0 0 0 1px rgba(53, 208, 255, 0.22), 0 0 24px rgba(20, 149, 255, 0.2);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(20, 149, 255, 0.18), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(53, 208, 255, 0.14), transparent 20%),
    linear-gradient(135deg, #030914 0%, #020814 40%, #020d20 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03), transparent 20%),
    linear-gradient(300deg, rgba(25,90,170,0.13), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(0, 140, 255, 0.05), transparent 22%);
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  flex: 0 0 280px;
  position: fixed;
  inset: 0 auto 0 0;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(5, 12, 28, 0.98), rgba(3, 10, 23, 0.95));
  border-right: 1px solid rgba(116, 197, 255, 0.12);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.branding {
  padding: 6px 0 26px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.wordmark-main {
  font-size: 2rem;
  line-height: 1;
}

.wordmark-main .accent {
  color: var(--blue-2);
  text-shadow: 0 0 18px rgba(53, 208, 255, 0.4);
}

.wordmark-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  color: var(--muted);
  text-transform: uppercase;
}

.sponsor-chip {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(8, 22, 44, 0.9), rgba(5, 16, 33, 0.82));
  border: 1px solid var(--line);
  box-shadow: var(--glow);
}

.sponsor-chip-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--muted);
  margin-bottom: 8px;
}

.sponsor-chip img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(36, 176, 255, 0.18));
}

.nav-group {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: var(--text);
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.24s ease;
}

.nav-link img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(90deg, rgba(20, 149, 255, 0.18), rgba(53, 208, 255, 0.1));
  border-color: rgba(53, 208, 255, 0.24);
  box-shadow: 0 0 0 1px rgba(53, 208, 255, 0.12), 0 0 30px rgba(20, 149, 255, 0.18);
}

.nav-link.active span,
.nav-link:hover span {
  text-shadow: 0 0 12px rgba(53, 208, 255, 0.32);
}

.sidebar-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(116, 197, 255, 0.1);
}

.sidebar-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 10px;
}

.sidebar-feature {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 23, 48, 0.94), rgba(5, 14, 29, 0.9));
  border: 1px solid var(--line);
  box-shadow: var(--glow);
}

.sidebar-feature strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.sidebar-feature span {
  color: var(--muted);
  font-size: 0.9rem;
}

.sidebar-feature a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-2);
  text-decoration: none;
  font-weight: 700;
}

.main {
  margin-left: 280px;
  width: calc(100% - 280px);
  padding: 36px 38px 48px;
}

.page-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.section {
  margin-bottom: 28px;
}

.panel,
.hero-panel,
.metric-card,
.feature-card,
.highlight-panel,
.stream-card,
.review-card,
.table-shell,
.social-card,
.footer-panel,
.newsletter-panel,
.podium-card {
  background: linear-gradient(180deg, rgba(8, 18, 38, 0.9), rgba(4, 11, 24, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 36px;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 22px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(53, 208, 255, 0.2), transparent 20%),
    radial-gradient(circle at 28% 10%, rgba(20, 149, 255, 0.25), transparent 28%),
    linear-gradient(135deg, rgba(13, 91, 255, 0.16), transparent 40%);
  pointer-events: none;
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(20, 149, 255, 0.12);
  border: 1px solid rgba(53, 208, 255, 0.22);
  color: var(--blue-2);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-title .soft {
  color: #95e6ff;
  text-shadow: 0 0 26px rgba(53, 208, 255, 0.22);
}

.hero-text {
  max-width: 720px;
  color: #c5d7f1;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button {
  color: #02111d;
  background: linear-gradient(135deg, #69e7ff, #1495ff);
  box-shadow: 0 12px 30px rgba(20, 149, 255, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.metric-card {
  padding: 18px;
}

.metric-label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.metric-value {
  display: block;
  margin-top: 8px;
  font-size: 1.45rem;
  font-weight: 800;
}

.metric-value.blue {
  color: var(--blue-2);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sponsor-panel {
  padding: 22px;
  min-height: 210px;
}

.sponsor-panel img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  display: block;
}

.sponsor-copy {
  margin-top: 14px;
  color: #b8c9e7;
  line-height: 1.7;
}

.inline-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(116, 197, 255, 0.14);
}

.inline-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-3));
  box-shadow: 0 0 16px rgba(53,208,255,0.55);
}

.section-head {
  margin-bottom: 18px;
}

.section-kicker {
  font-size: 0.76rem;
  color: var(--blue-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  letter-spacing: -0.03em;
}

.section-text {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

.features-grid,
.social-grid,
.reviews-grid,
.stream-grid {
  display: grid;
  gap: 18px;
}

.features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  padding: 22px;
  min-height: 200px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(53,208,255,0.18), rgba(20,149,255,0.18));
  border: 1px solid rgba(53, 208, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 24px rgba(53, 208, 255, 0.08);
}

.icon-badge img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
}

.feature-card p,
.highlight-panel p,
.review-card p,
.stream-card p {
  color: #b8c9e7;
  line-height: 1.75;
  margin: 0;
}

.highlight-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: center;
}

.highlight-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.highlight-item .check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(53, 208, 255, 0.15);
  color: var(--blue-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.highlight-side {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 32, 64, 0.9), rgba(4, 11, 24, 0.96));
  border: 1px solid rgba(53, 208, 255, 0.16);
}

.highlight-side img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-card {
  position: relative;
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
}

.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(53,208,255,0.05), transparent 40%);
  pointer-events: none;
}

.social-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.social-logo {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social-name {
  font-weight: 700;
  font-size: 1rem;
}

.social-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.social-count {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.social-arrow {
  color: var(--blue-2);
  font-size: 1.3rem;
}

.newsletter-panel,
.footer-panel,
.table-shell {
  padding: 24px;
}

.newsletter-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.input {
  flex: 1 1 320px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  outline: none;
}

.input:focus {
  border-color: rgba(53, 208, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(20, 149, 255, 0.12);
}

.footer-panel {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-sponsor {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(36, 176, 255, 0.14));
}

.footer-copy {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.subtle {
  color: var(--muted);
}

.leaderboard-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-bottom: 18px;
}

.countdown-panel,
.month-panel {
  padding: 24px;
}

.countdown-label,
.panel-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 12px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.count-box {
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.count-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.count-unit {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.month-select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 0 16px;
}

.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.podium-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.podium-card.first {
  border-color: rgba(53, 208, 255, 0.3);
  box-shadow: 0 0 0 1px rgba(53, 208, 255, 0.16), 0 0 34px rgba(20,149,255,0.18), var(--shadow);
}

.podium-rank {
  position: absolute;
  right: 16px;
  top: 14px;
  font-weight: 900;
  color: var(--blue-2);
  font-size: 1.5rem;
}

.podium-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.podium-name {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 800;
}

.podium-prize {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
}

.podium-wager {
  margin-top: 8px;
  color: var(--muted);
}

.table-shell table {
  width: 100%;
  border-collapse: collapse;
}

.table-shell thead th {
  text-align: left;
  padding: 16px 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a5bddf;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.table-shell tbody td {
  padding: 17px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.table-shell tbody tr:hover {
  background: rgba(255,255,255,0.025);
}

.position {
  font-weight: 800;
  color: var(--blue-2);
}

.prize {
  color: var(--green);
  font-weight: 800;
}

.stream-grid {
  grid-template-columns: 1.25fr 0.75fr;
}

.stream-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  background: linear-gradient(145deg, rgba(11, 28, 54, 0.92), rgba(4, 11, 24, 0.98));
  border: 1px solid rgba(53,208,255,0.16);
}

.stream-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.stream-frame-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(3,8,20,0.2), rgba(3,8,20,0.88)),
    radial-gradient(circle at 35% 20%, rgba(20,149,255,0.34), transparent 28%),
    linear-gradient(145deg, rgba(7,18,37,0.92), rgba(2,10,22,0.98));
}

.stream-fallback-card {
  width: 100%;
  padding: 24px;
  border-radius: 20px;
  background: rgba(5, 14, 29, 0.75);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.stream-side {
  display: grid;
  gap: 18px;
}

.stream-card {
  padding: 22px;
}

.review-card {
  padding: 24px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20,149,255,0.24), rgba(53,208,255,0.18));
  color: var(--blue-2);
  font-weight: 900;
}

.review-author {
  font-weight: 800;
}

.review-card strong {
  color: var(--blue-2);
}

@media (max-width: 1180px) {
  .features-grid,
  .social-grid,
  .podium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel,
  .highlight-panel,
  .leaderboard-top,
  .stream-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .sidebar {
    position: static;
    width: 100%;
    flex-basis: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(116,197,255,0.12);
  }

  .layout {
    flex-direction: column;
  }

  .main {
    margin-left: 0;
    width: 100%;
    padding: 22px 18px 36px;
  }
}

@media (max-width: 680px) {
  .features-grid,
  .social-grid,
  .reviews-grid,
  .podium-grid,
  .countdown-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 24px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .footer-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .table-shell {
    overflow-x: auto;
  }

  .table-shell table {
    min-width: 680px;
  }
}


.hero-home-updated {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 540px);
  align-items: center;
}

.hero-home-updated::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 22, 0.22) 0%, rgba(4, 10, 22, 0.06) 42%, rgba(4, 10, 22, 0) 100%);
  pointer-events: none;
}

.hero-media-side {
  position: relative;
}

.hero-visual-card {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(116, 197, 255, 0.2);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(53, 208, 255, 0.12),
    0 0 34px rgba(20, 149, 255, 0.2);
  background: #031226;
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 22, 0.04), rgba(3, 10, 22, 0.02) 45%, rgba(3, 10, 22, 0.2) 100%),
    radial-gradient(circle at 50% 8%, rgba(83, 223, 255, 0.25), transparent 18%),
    radial-gradient(circle at 84% 26%, rgba(20, 149, 255, 0.18), transparent 20%),
    radial-gradient(circle at 14% 78%, rgba(20, 149, 255, 0.18), transparent 20%);
  pointer-events: none;
  z-index: 1;
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(3, 12, 28, 0.58);
  border: 1px solid rgba(116, 197, 255, 0.2);
  color: #dff7ff;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(20, 149, 255, 0.18);
}

.hero-badge-top { top: 18px; right: 18px; }
.hero-badge-bottom { left: 18px; bottom: 18px; }

@media (max-width: 1120px) {
  .hero-home-updated {
    grid-template-columns: 1fr;
  }

  .hero-visual-card {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .hero-visual-card {
    min-height: 340px;
    border-radius: 22px;
  }

  .hero-badge {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    padding: 8px 12px;
  }
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(53, 208, 255, 0.18));
}

.footer-logo {
  width: 200px;
}

.hero-cinematic {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(116, 197, 255, 0.16);
  box-shadow: var(--shadow), 0 0 0 1px rgba(53, 208, 255, 0.08), 0 0 55px rgba(20, 149, 255, 0.15);
  background: #020814;
}

.hero-cinematic-bg,
.hero-cinematic-bg img,
.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
}

.hero-cinematic-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-cinematic-overlay {
  background:
    linear-gradient(180deg, rgba(2, 8, 20, 0.78) 0%, rgba(2, 8, 20, 0.18) 18%, rgba(2, 8, 20, 0.05) 42%, rgba(2, 8, 20, 0.85) 100%),
    radial-gradient(circle at 50% 18%, rgba(53, 208, 255, 0.20), transparent 18%),
    linear-gradient(90deg, rgba(2, 8, 20, 0.42), transparent 22%, transparent 78%, rgba(2, 8, 20, 0.34));
}

.hero-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  background: linear-gradient(180deg, rgba(4, 10, 20, 0.92), rgba(4, 10, 20, 0.78));
  border-bottom: 1px solid rgba(116, 197, 255, 0.16);
  z-index: 2;
}

.hero-topbar-brand {
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #f4fbff;
}
.hero-topbar-brand span { color: var(--blue-2); }

.hero-topbar-copy {
  justify-self: center;
  color: rgba(238, 246, 255, 0.82);
  font-size: 0.96rem;
}

.hero-topbar-pill {
  text-decoration: none;
  color: #f7fbff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(16, 108, 255, 0.92), rgba(53, 208, 255, 0.88));
  box-shadow: 0 0 24px rgba(20, 149, 255, 0.24);
}

.hero-cinematic-content {
  position: relative;
  z-index: 2;
  min-height: 760px;
}

.hero-floating-logo {
  position: absolute;
  top: 92px;
  left: 28px;
  padding: 14px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(7, 16, 34, 0.78), rgba(7, 16, 34, 0.45));
  border: 1px solid rgba(116, 197, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-cinematic-copy {
  position: absolute;
  left: 34px;
  bottom: 122px;
  max-width: 460px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7, 16, 34, 0.80), rgba(7, 16, 34, 0.48));
  border: 1px solid rgba(116, 197, 255, 0.15);
  backdrop-filter: blur(10px);
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--blue-2);
  margin-bottom: 12px;
}

.hero-cinematic-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-cinematic-copy h1 span {
  display: block;
  color: #d9ecff;
  text-shadow: 0 0 22px rgba(53, 208, 255, 0.18);
}

.hero-cinematic-copy p {
  margin: 0 0 18px;
  color: rgba(238, 246, 255, 0.82);
  line-height: 1.55;
}

.hero-cinematic-caption {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  text-align: center;
  width: min(720px, calc(100% - 60px));
}

.hero-name {
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 0 28px rgba(53, 208, 255, 0.22);
}

.hero-subcopy {
  margin-top: 8px;
  color: rgba(238, 246, 255, 0.88);
  font-size: 1.02rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1100px) {
  .hero-topbar {
    grid-template-columns: 1fr;
    height: auto;
    padding: 14px 18px;
    text-align: center;
  }
  .hero-topbar-copy,
  .hero-topbar-pill {
    justify-self: center;
  }
  .hero-cinematic,
  .hero-cinematic-content {
    min-height: 680px;
  }
}

@media (max-width: 860px) {
  .site-logo { width: 180px; }
  .hero-floating-logo {
    top: 118px;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: center;
  }
  .hero-cinematic-copy {
    left: 18px;
    right: 18px;
    bottom: 140px;
    max-width: none;
  }
  .hero-cinematic-caption {
    width: calc(100% - 36px);
    bottom: 28px;
  }
}

/* ===== Leaderboard v5: cleaner, closer to reference screenshot ===== */
body[data-page="leaderboard"] .sidebar-feature {
  display: none;
}

body[data-page="leaderboard"] .leaderboard-sidebar-bottom {
  padding-top: 18px;
}

.leaderboard-casino-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(16, 99, 255, 0.28), rgba(42, 213, 255, 0.16));
  border: 1px solid rgba(83, 210, 255, 0.32);
  box-shadow: 0 0 0 1px rgba(53, 208, 255, 0.14), 0 0 28px rgba(20, 149, 255, 0.18);
}

.lb-hero-title-wrap {
  margin-bottom: 16px;
}

.lb-page-title {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #f6fbff;
  text-shadow:
    0 0 16px rgba(53, 208, 255, 0.24),
    0 0 38px rgba(20, 149, 255, 0.18);
}

.lb-panel {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 17, 27, 0.94), rgba(10, 13, 22, 0.98));
  border: 1px solid rgba(88, 196, 255, 0.14);
  box-shadow: var(--shadow);
}

.lb-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.lb-panel-title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.lb-history-btn {
  appearance: none;
  border: 1px solid rgba(83, 210, 255, 0.28);
  background: linear-gradient(135deg, rgba(15, 92, 255, 0.16), rgba(53, 208, 255, 0.12));
  color: #dff6ff;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(20, 149, 255, 0.12);
}

.lb-countdown-bar {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(83, 210, 255, 0.16);
  background: linear-gradient(90deg, rgba(17, 28, 48, 0.86), rgba(14, 17, 26, 0.92));
}

.lb-countdown-label {
  text-align: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d7efff;
}

.lb-countdown-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lb-time-box {
  min-width: 84px;
  text-align: center;
}

.lb-time-box .count-number {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: #f8fcff;
  letter-spacing: -0.05em;
}

.lb-time-box .count-unit {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  color: #86a7d2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.lb-separator {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(122, 209, 255, 0.82);
  transform: translateY(-8px);
}

.lb-month-center {
  display: flex;
  justify-content: center;
  margin: 24px 0 28px;
}

.lb-month-select {
  width: min(360px, 100%);
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(83, 210, 255, 0.24);
  background: linear-gradient(180deg, rgba(11, 19, 34, 0.96), rgba(8, 13, 24, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 0 20px rgba(20, 149, 255, 0.1);
  text-align: center;
  font-weight: 800;
}

.lb-podium-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}

.lb-podium-grid .podium-card {
  position: relative;
  padding: 54px 18px 24px;
  min-height: 220px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(83, 210, 255, 0.16);
  background: linear-gradient(180deg, rgba(21, 25, 35, 0.96), rgba(11, 13, 20, 0.98));
  overflow: visible;
}

.lb-podium-grid .podium-card.first {
  min-height: 248px;
  border-color: rgba(98, 214, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(98, 214, 255, 0.16), 0 0 38px rgba(20, 149, 255, 0.18), var(--shadow);
}

.lb-podium-grid .podium-card.second {
  min-height: 192px;
}

.lb-podium-grid .podium-card.third {
  min-height: 176px;
}

.lb-podium-grid .podium-rank {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  border: 3px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.lb-podium-grid .podium-card.first .podium-rank {
  background: radial-gradient(circle at 30% 30%, #f3fbff 0%, #8ae2ff 38%, #0f8dff 100%);
  color: #04264c;
}

.lb-podium-grid .podium-card.second .podium-rank {
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d3e7f7 34%, #6b90b4 100%);
  color: #1b2a3f;
}

.lb-podium-grid .podium-card.third .podium-rank {
  background: radial-gradient(circle at 30% 30%, #fff6f2 0%, #e7c1ab 40%, #9f6a4f 100%);
  color: #3b2217;
}

.lb-podium-grid .podium-label {
  display: none;
}

.lb-podium-grid .podium-name {
  margin-top: 14px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #ffffff;
}

.lb-podium-grid .podium-prize {
  margin-top: 6px;
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #62d6ff;
  text-shadow: 0 0 18px rgba(53, 208, 255, 0.22);
}

.lb-podium-grid .podium-wager {
  margin-top: 8px;
  font-size: 0.96rem;
  color: #95afd2;
}

.lb-table-shell {
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(83, 210, 255, 0.14);
  background: linear-gradient(180deg, rgba(20, 22, 30, 0.92), rgba(9, 11, 17, 0.98));
}

.lb-table-shell table {
  width: 100%;
  border-collapse: collapse;
}

.lb-table-shell thead th {
  padding: 18px 18px;
  color: #7fd7ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lb-table-shell tbody td {
  padding: 18px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lb-table-shell tbody tr:nth-child(odd) {
  background: rgba(255,255,255,0.015);
}

.lb-table-shell tbody tr:hover {
  background: rgba(77, 185, 255, 0.06);
}

.lb-table-shell .position {
  color: #67d4ff;
  font-weight: 900;
}

.lb-table-shell .prize {
  color: #c7f4ff;
  font-weight: 900;
}

@media (max-width: 980px) {
  .lb-panel-top {
    flex-direction: column;
    align-items: stretch;
  }

  .lb-history-btn {
    width: 100%;
  }

  .lb-podium-grid {
    grid-template-columns: 1fr;
  }

  .lb-podium-grid .podium-card,
  .lb-podium-grid .podium-card.first,
  .lb-podium-grid .podium-card.second,
  .lb-podium-grid .podium-card.third {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .lb-page-title {
    font-size: 2.35rem;
  }

  .lb-panel {
    padding: 16px;
  }

  .lb-countdown-inline {
    gap: 8px;
  }

  .lb-time-box {
    min-width: 64px;
  }

  .lb-time-box .count-number {
    font-size: 1.5rem;
  }

  .lb-separator {
    font-size: 1.4rem;
    transform: translateY(-4px);
  }

  .lb-table-shell {
    overflow-x: auto;
  }
}


.lb-prize-note{
  margin: 8px auto 22px;
  text-align:center;
  color: rgba(220,235,255,.82);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}


.lb-history-note{
  margin: 0 auto 22px;
  text-align:center;
  color: rgba(151, 195, 232, 0.9);
  font-size: 0.95rem;
}

.empty-row{
  text-align:center;
  color:#b7d8f7;
  padding:28px !important;
}

.empty-state-card{
  text-align:center;
}

.reviews-empty{min-height:220px;}


/* Mobile header / drawer */
.mobile-header,
.mobile-backdrop {
  display: none;
}

@media (max-width: 900px) {
  body { background:
    radial-gradient(circle at 15% 8%, rgba(20,149,255,.16), transparent 28%),
    linear-gradient(180deg, #040b14 0%, #02070f 100%); }

  .mobile-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 88px;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    background: rgba(10,14,21,.96);
    border-bottom: 1px solid rgba(111,180,255,.14);
    backdrop-filter: blur(10px);
    z-index: 70;
  }

  .mobile-menu-btn {
    width: 48px; height: 48px;
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    display: block;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: #f3f7ff;
    box-shadow: 0 0 14px rgba(53,208,255,.12);
    transition: transform .25s ease, opacity .2s ease;
  }

  body.menu-open .mobile-menu-btn span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  body.menu-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
  body.menu-open .mobile-menu-btn span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

  .mobile-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 16px rgba(53,208,255,.12));
  }

  .mobile-kick-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 16px;
    text-decoration: none;
    color: #151515;
    font-weight: 800;
    background: linear-gradient(180deg, #ffd14a 0%, #ffbe0b 100%);
    box-shadow: 0 0 24px rgba(255,190,11,.22);
    white-space: nowrap;
    font-size: 14px;
  }

  .mobile-backdrop {
    position: fixed;
    inset: 88px 0 0 0;
    background: rgba(0,0,0,.48);
    z-index: 58;
  }

  body.menu-open .mobile-backdrop { display: block; }
  body.menu-open { overflow: hidden; }

  .layout { display: block; }
  .sidebar {
    width: min(80vw, 420px);
    max-width: 420px;
    transform: translateX(-105%);
    transition: transform .28s ease;
    z-index: 65;
    padding-top: 108px;
    box-shadow: 24px 0 60px rgba(0,0,0,.45);
  }
  body.menu-open .sidebar { transform: translateX(0); }

  .sidebar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 88px;
    background: rgba(10,14,21,.96);
    border-bottom: 1px solid rgba(111,180,255,.12);
  }

  .branding { padding-top: 0; }
  .sponsor-chip { display: none; }

  .main {
    margin-left: 0;
    width: 100%;
    padding: 108px 0 32px;
  }

  .page-shell {
    max-width: 100%;
  }

  .section,
  .lb-panel,
  .footer-panel,
  .highlight-panel,
  .newsletter-panel,
  .stream-card,
  .review-empty,
  .review-card {
    border-radius: 28px;
  }

  .section { margin-bottom: 18px; }

  .hero-cinematic {
    margin: 0;
    border-radius: 0 0 32px 32px;
    min-height: calc(100svh - 88px);
  }

  .hero-topbar {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding: 0 16px;
    top: 12px;
  }
  .hero-topbar-copy { display: none; }
  .hero-topbar-brand { font-size: 13px; }
  .hero-topbar-pill { font-size: 13px; padding: 10px 12px; }

  .hero-cinematic-content {
    padding: 96px 18px 26px;
    min-height: calc(100svh - 88px);
    align-items: end;
  }
  .hero-floating-logo { display: none; }
  .hero-cinematic-copy {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
  }
  .hero-kicker { justify-content: center; }
  .hero-cinematic-copy h1 {
    font-size: clamp(36px, 10vw, 54px);
    line-height: .95;
    margin-bottom: 14px;
  }
  .hero-cinematic-copy p {
    font-size: 18px;
    line-height: 1.45;
    max-width: 720px;
    margin: 0 auto 18px;
  }
  .hero-actions {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .hero-actions a { min-width: 160px; }
  .hero-cinematic-caption {
    margin: 18px auto 0;
    text-align: center;
    max-width: 100%;
  }
  .hero-name {
    font-size: 24px;
    text-shadow: 0 0 24px rgba(53,208,255,.32);
  }
  .hero-subcopy { font-size: 14px; }

  .section-head,
  .features-grid,
  .social-grid,
  .streams-grid,
  .reviews-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title,
  .lb-page-title {
    font-size: clamp(42px, 12vw, 72px);
    line-height: .92;
    letter-spacing: -.04em;
  }

  .lb-hero-title-wrap { padding: 0 16px; }
  .lb-panel {
    margin: 0 16px;
    padding: 18px;
    border-radius: 28px;
  }
  .lb-panel-top {
    display: block;
    text-align: center;
  }
  .lb-panel-title {
    font-size: 21px;
    margin-bottom: 14px;
  }
  .lb-history-btn {
    width: 100%;
    justify-content: center;
    min-height: 58px;
    font-size: 16px;
  }
  .lb-countdown-bar {
    padding: 18px 12px;
    border-radius: 24px;
  }
  .lb-countdown-label {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .lb-countdown-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .lb-separator { display: none; }
  .lb-time-box {
    padding: 0;
    min-width: 0;
  }
  .count-number {
    font-size: clamp(32px, 9vw, 46px);
  }
  .count-unit {
    font-size: 11px;
    letter-spacing: .18em;
  }
  .lb-month-center { margin-top: 18px; }
  .lb-month-select {
    width: 100%;
    min-height: 62px;
    font-size: 18px;
    border-radius: 20px;
  }
  .lb-prize-note,
  .lb-history-note {
    font-size: 11px;
    letter-spacing: .15em;
    text-align: center;
    margin-top: 12px;
  }
  .lb-podium-grid,
  .podium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }
  .podium-card {
    min-height: 0;
    padding: 18px;
    border-radius: 24px;
  }
  .podium-card.second { order: 1; }
  .podium-card.first { order: 2; }
  .podium-card.third { order: 3; }
  .podium-rank { font-size: 42px; }
  .podium-name { font-size: 24px; }
  .podium-prize { font-size: 28px; }

  .lb-table-shell {
    margin-top: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lb-table-shell table {
    min-width: 620px;
  }

  .footer-panel {
    margin: 0 16px;
    padding: 22px 16px 28px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }

  .social-grid,
  .features-grid,
  .streams-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .highlight-panel,
  .newsletter-panel,
  .stream-card,
  .review-empty {
    margin-left: 16px;
    margin-right: 16px;
    padding: 22px 18px;
  }
}

@media (max-width: 560px) {
  .mobile-header {
    grid-template-columns: 54px 1fr auto;
    padding: 0 12px;
  }
  .mobile-logo { height: 42px; }
  .mobile-kick-btn {
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 14px;
  }
  .mobile-kick-btn strong { font-size: 14px; }
  .hero-cinematic-copy h1 { font-size: clamp(30px, 10.5vw, 44px); }
  .hero-cinematic-copy p { font-size: 16px; }
  .button, .button-secondary { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .section-title, .lb-page-title { font-size: clamp(34px, 13vw, 54px); }
  .lb-panel-title { font-size: 18px; }
  .count-number { font-size: clamp(28px, 10vw, 40px); }
  .nav-link { font-size: 17px; padding: 15px 16px; }
}
