:root {
  --bg: #050505;
  --card: #101010;
  --text: #f5f5f5;
  --muted: #b9b9b9;
  --accent: #ffe100;
  --accent-2: #ffba08;
  --line: #232323;
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 10% -10%, #2a2a2a 0%, transparent 32%),
    radial-gradient(circle at 100% 10%, rgba(255,225,0,.09), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1rem;
  backdrop-filter: blur(8px);
  background: rgba(5,5,5,.7);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: 182px;
  display: block;
}

.menu-btn {
  border: 1px solid var(--line);
  background: #121212;
  color: var(--text);
  border-radius: 12px;
  padding: .4rem .7rem;
  font-size: 1.1rem;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  background: #0a0a0a;
  border-bottom: 1px solid var(--line);
}

.site-nav.open { display: flex; }
.site-nav a {
  padding: .9rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: Anton, 'Bebas Neue', Impact, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 1rem;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a:active,
.site-nav a.is-active {
  color: var(--accent) !important;
  background: #171717;
}

main { padding: 0 1rem 3rem; max-width: 1100px; margin: 0 auto; }

.hero {
  position: relative;
  overflow: clip;
  margin: .7rem auto 0;
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(140deg, #161616 15%, #080808 90%);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,225,0,.34), transparent 52%),
    radial-gradient(circle at 75% 80%, rgba(255,186,8,.14), transparent 45%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.hero-content {
  padding: 1rem 1.2rem 1.2rem;
  position: relative;
  z-index: 2;
  background: #0e0e0e;
  border-top: 1px solid #232323;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 35%, rgba(0,0,0,.76) 100%);
}
.eyebrow {
  letter-spacing: .09em;
  font-size: .75rem;
  color: var(--accent);
  margin: 0 0 .65rem;
}

h1, h2, h3 { margin: 0; line-height: 1.03; }
h1 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.2rem, 10vw, 5rem);
  letter-spacing: .02em;
  text-transform: uppercase;
}

h1 span { color: var(--accent); }
.hero-image-overlay h1 {
  text-shadow:
    0 2px 0 rgba(0,0,0,.45),
    0 8px 24px rgba(0,0,0,.7),
    0 0 18px rgba(0,0,0,.35);
  animation: heroTitleIn 1.25s cubic-bezier(.17,.84,.3,1) both, heroTitlePulse 2.6s ease-out 1.25s 1;
  transform-origin: left center;
}
.hero p { color: var(--muted); max-width: 52ch; }

.hero-cta { display: flex; gap: .55rem; flex-wrap: nowrap; margin-top: 1rem; overflow-x: auto; padding-bottom: .2rem; }
.btn {
  padding: .66rem .92rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .86rem;
  white-space: nowrap;
  border: 1px solid transparent;
  min-width: 152px;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  border-color: #f8d600;
  box-shadow: 0 8px 26px rgba(255,225,0,.28);
}
.btn-ghost {
  background: #171717;
  color: #f1f1f1;
  border-color: #353535;
}
.btn-watch {
  background: #0f2548;
  color: #d7e8ff;
  border-color: #274a7f;
}
.btn { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.35); border-color: var(--accent); }

.hero-image-wrap { position: relative; height: 52vh; min-height: 320px; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .9s ease-in-out, transform 1.1s cubic-bezier(.19,1,.22,1), filter .8s ease;
  will-change: transform, opacity;
  animation: heroFloat 9s ease-in-out infinite alternate;
}
.hero-image.active { opacity: 1; z-index: 1; }
.hero-slide:nth-child(2) {
  object-position: center 20%;
}
.hero-slide:nth-child(3),
.hero-slide:nth-child(4) {
  object-position: center 10%;
}
.hero:hover .hero-image.active { transform: scale(1.14); filter: contrast(1.06) saturate(1.04); }

.stats-wrap {
  margin: .9rem auto 1.3rem;
  max-width: 980px;
}

.stats-kicker {
  margin: 0 0 .45rem;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .6rem;
}
.stats article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0e0e0e;
  padding: .8rem .5rem;
  text-align: center;
}
.stats h3 { font-family: Anton, sans-serif; font-size: 2rem; color: var(--accent); }
.stats p { color: var(--muted); font-size: .75rem; margin: 0; }
.stat-link {
  display: inline-block;
  font-weight: 700;
  color: #9ed0ff;
  font-size: .9rem;
}
.stat-link:hover { color: var(--accent); }

.stats-social-row {
  margin-top: .55rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.panel, .cards, .gallery, .socials, .signup, .leaderboard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: #0d0d0d;
  margin: 0 auto 1rem;
  max-width: 980px;
}

h2 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 7vw, 3rem);
  margin-bottom: .75rem;
}

.panel p { color: var(--muted); margin: .3rem 0; }

.card-grid { display: grid; gap: .7rem; }
.card {
  border: 1px solid #2b2b2b;
  border-radius: 14px;
  background: linear-gradient(170deg, #1a1a1a, #0f0f0f);
  padding: .9rem;
  transition: transform .45s cubic-bezier(.19,1,.22,1), border-color .35s ease, box-shadow .45s ease;
}
.card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255,225,0,.55);
  box-shadow: 0 22px 50px rgba(0,0,0,.5);
}
.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  margin-bottom: .7rem;
}
.card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); }

.image-card-grid { grid-template-columns: 1fr; }
.image-card {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.image-card img {
  margin: 0;
  border: 0;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  object-position: center 12%;
}
.image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 32%, rgba(0,0,0,.72) 100%);
}
.image-overlay h3 {
  margin: 0;
  font-family: Anton, 'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(1.2rem, 6vw, 2rem);
  color: var(--accent);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.impact-card {
  border: 1px solid #2b2b2b;
  border-radius: 14px;
  background: linear-gradient(170deg, #171717, #0d0d0d);
  padding: .95rem .8rem;
}

.impact-card h3 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.3rem, 5.8vw, 2rem);
  color: var(--accent);
  margin-bottom: .3rem;
}

.impact-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.25;
}

.sponsor-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: .9rem;
}
.sponsor-row span { color: var(--muted); }
.sponsor-row img {
  width: auto;
  height: 54px;
  max-width: 170px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: .5rem .7rem;
  border: 1px solid #2b2b2b;
}

.signup-banner {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #2d2d2d;
  max-height: 520px;
}

.signup-banner img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  height: auto;
  object-fit: cover;
  object-position: center 36%;
  display: block;
}

.signup-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: .25rem;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.62));
}

.signup-overlay strong {
  font-family: Anton, 'Bebas Neue', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 10vw, 3.6rem);
  line-height: .95;
  color: var(--accent);
  letter-spacing: .03em;
}

.signup-overlay em {
  font-style: normal;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.social-grid { display: grid; gap: .65rem; }
.social-grid a {
  background: #161616;
  border: 1px solid #2e2e2e;
  padding: .9rem 1rem;
  border-radius: 12px;
  font-weight: 700;
}
.social-grid a:hover { border-color: var(--accent); transform: translateY(-1px); }

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .8rem;
}
.video-card {
  border: 1px solid rgba(255,225,0,.45);
  border-radius: 14px;
  padding: .6rem;
  background: #121212;
  box-shadow: 0 0 0 1px rgba(255,225,0,.08) inset;
}
.video-rank {
  margin: 0 0 .4rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.video-rank a {
  color: #9ed0ff;
  font-weight: 700;
  letter-spacing: normal;
}
.video-rank a:hover { color: var(--accent); }
.video-card iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 10px;
  background: #000;
}
.video-views {
  margin: -.15rem 0 .2rem;
  color: #c7c7c7;
  font-weight: 700;
  font-size: .88rem;
}
.video-hint {
  margin: 0 0 .45rem;
  color: var(--accent);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-footer {
  text-align: center;
  color: #9d9d9d;
  padding-bottom: 2.3rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, #ffe100, #ffba08);
  box-shadow: 0 1px 12px rgba(255,225,0,.5);
}

.reveal { opacity: 0; transform: translateY(64px) scale(.965); filter: blur(6px); transition: 1s cubic-bezier(.19,1,.22,1); }
.reveal.on { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@keyframes pulseGlow {
  from { transform: scale(1); opacity: .72; }
  to { transform: scale(1.11); opacity: 1; }
}

@keyframes heroFloat {
  from { transform: scale(1.08) translateY(-6px); }
  to { transform: scale(1.12) translateY(10px); }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(42px) scale(.9) skewY(4deg);
    filter: blur(10px);
    letter-spacing: .12em;
  }
  55% {
    opacity: 1;
    transform: translateY(-8px) scale(1.04) skewY(0deg);
    filter: blur(0);
    letter-spacing: .04em;
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    letter-spacing: .02em;
  }
}

@keyframes heroTitlePulse {
  0% { transform: scale(1); text-shadow: 0 2px 0 rgba(0,0,0,.45), 0 8px 24px rgba(0,0,0,.7), 0 0 18px rgba(0,0,0,.35); }
  40% { transform: scale(1.035); text-shadow: 0 2px 0 rgba(0,0,0,.5), 0 18px 36px rgba(0,0,0,.8), 0 0 28px rgba(255,225,0,.3); }
  100% { transform: scale(1); text-shadow: 0 2px 0 rgba(0,0,0,.45), 0 8px 24px rgba(0,0,0,.7), 0 0 18px rgba(0,0,0,.35); }
}

@media (max-width: 759px) {
  .stats { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .image-card-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { height: 52vh; min-height: 260px; }
  .signup-banner, .signup-banner img {
    max-height: 360px;
    aspect-ratio: 4 / 3;
  }
  .video-card iframe {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}

@media (min-width: 760px) {
  .menu-btn { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    background: transparent;
    gap: .2rem;
  }
  .site-nav a { border: 0; padding: .4rem .7rem; border-radius: 10px; }
  .site-nav a:hover { background: #171717; color: var(--accent); }
  .brand img { width: 210px; }

  main { padding: 0 1.2rem 4rem; max-width: 100vw; margin: 0 auto; }

  .hero,
  .stats-wrap,
  .panel,
  .cards,
  .gallery,
  .signup,
  .socials,
  .leaderboard { max-width: min(1680px, 96vw); }

  .hero-image-wrap { min-height: 600px; height: 600px; border-bottom: 1px solid var(--line); }
  .hero-content {
    padding: 1.35rem 2.2rem 1.6rem;
    display: block;
  }
  .hero-content p {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    font-size: 1.18rem;
    line-height: 1.5;
    letter-spacing: .01em;
    text-align: center;
  }
  .hero-content .hero-cta {
    justify-content: center;
    overflow: visible;
    padding-bottom: 0;
    margin-top: 1rem;
  }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .image-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .signup-overlay strong { font-size: clamp(3.8rem, 9vw, 8rem); letter-spacing: .045em; }
  .signup-overlay em { font-size: 1.05rem; letter-spacing: .14em; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.card-grid .card:nth-child(1) { transition-delay: .03s; }
.card-grid .card:nth-child(2) { transition-delay: .08s; }
.card-grid .card:nth-child(3) { transition-delay: .13s; }
.card-grid .card:nth-child(4) { transition-delay: .18s; }
