/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080810;
  --bg-dark: #0d0d18;
  --bg-card: #12121f;
  --bg-card-hover: #1a1a2e;
  --gold: #c9a227;
  --gold-light: #f0c040;
  --gold-glow: rgba(201, 162, 39, 0.3);
  --celeste: #5ab0e8;
  --celeste-light: #94d0f7;
  --celeste-glow: rgba(90, 176, 232, 0.3);
  --red: #c0392b;
  --green-wa: #25d366;
  --text: #f0f0f8;
  --text-muted: #7a7a9a;
  --border: rgba(90, 176, 232, 0.12);
  --border-gold: rgba(201, 162, 39, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-celeste: 0 0 30px rgba(90, 176, 232, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Accent classes */
.celeste-accent { color: var(--celeste-light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
}
.btn-lg  { padding: 16px 36px; font-size: 15px; }
.btn-xl  { padding: 18px 40px; font-size: 16px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), #ffe066);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  border-color: var(--green-wa);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(8, 8, 16, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo span { font-size: 14px; color: var(--text); }
.nav-logo strong { color: var(--celeste-light); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--celeste-light); }

.nav-wa { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #0a1628 0%, #080810 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(90,176,232,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(192,57,43,0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* ===== FONDO FLOTANTE (NAIPES) ===== */
.poker-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.poker-bg span {
  position: absolute;
  font-family: serif;
  color: #ffffff;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
  animation: floatSuit ease-in-out infinite;
}
@keyframes floatSuit {
  0%, 100% { transform: translateY(0px) rotate(-4deg); }
  40%       { transform: translateY(-22px) rotate(6deg); }
  70%       { transform: translateY(-10px) rotate(-2deg); }
}

/* Posición y estilo individual de cada naipe */
.poker-bg span:nth-child(1)  { top:8%;    left:3%;    font-size:82px; opacity:0.045; animation-duration:7s;   animation-delay:0s;   }
.poker-bg span:nth-child(2)  { top:13%;   right:5%;   font-size:56px; opacity:0.04;  animation-duration:9s;   animation-delay:1.2s; color:#b03030; }
.poker-bg span:nth-child(3)  { top:58%;   left:5%;    font-size:46px; opacity:0.04;  animation-duration:8s;   animation-delay:2s;   color:#b03030; }
.poker-bg span:nth-child(4)  { bottom:18%;left:17%;   font-size:40px; opacity:0.035; animation-duration:11s;  animation-delay:3s;   }
.poker-bg span:nth-child(5)  { top:33%;   right:6%;   font-size:72px; opacity:0.04;  animation-duration:10s;  animation-delay:0.5s; }
.poker-bg span:nth-child(6)  { bottom:28%;right:14%;  font-size:52px; opacity:0.04;  animation-duration:7.5s; animation-delay:2.5s; color:#b03030; }
.poker-bg span:nth-child(7)  { top:70%;   left:46%;   font-size:34px; opacity:0.03;  animation-duration:9s;   animation-delay:4s;   color:#b03030; }
.poker-bg span:nth-child(8)  { top:24%;   left:36%;   font-size:28px; opacity:0.03;  animation-duration:12s;  animation-delay:1.5s; }
.poker-bg span:nth-child(9)  { top:80%;   right:36%;  font-size:44px; opacity:0.03;  animation-duration:8.5s; animation-delay:5s;   }
.poker-bg span:nth-child(10) { top:46%;   left:25%;   font-size:30px; opacity:0.025; animation-duration:13s;  animation-delay:3.5s; color:#b03030; }
.poker-bg span:nth-child(11) { top:5%;    left:55%;   font-size:38px; opacity:0.035; animation-duration:9.5s; animation-delay:0.8s; color:#b03030; }
.poker-bg span:nth-child(12) { bottom:8%; left:42%;   font-size:64px; opacity:0.04;  animation-duration:10s;  animation-delay:2.2s; }
.poker-bg span:nth-child(13) { top:42%;   left:88%;   font-size:48px; opacity:0.035; animation-duration:8s;   animation-delay:1.8s; color:#b03030; }
.poker-bg span:nth-child(14) { top:18%;   left:72%;   font-size:34px; opacity:0.03;  animation-duration:11.5s;animation-delay:4.5s; }
.poker-bg span:nth-child(15) { bottom:12%;left:70%;   font-size:44px; opacity:0.04;  animation-duration:7s;   animation-delay:6s;   color:#b03030; }
.poker-bg span:nth-child(16) { top:62%;   right:28%;  font-size:28px; opacity:0.03;  animation-duration:12s;  animation-delay:2.8s; }
.poker-bg span:nth-child(17) { bottom:40%;left:55%;   font-size:52px; opacity:0.035; animation-duration:9s;   animation-delay:1s;   }
.poker-bg span:nth-child(18) { top:88%;   left:10%;   font-size:36px; opacity:0.03;  animation-duration:10.5s;animation-delay:5.5s; color:#b03030; }

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 40px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Logo hero (agrandado) */
.hero-logo-wrap { margin-bottom: 4px; }
.hero-logo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(90,176,232,0.35);
  box-shadow: 0 0 50px rgba(90,176,232,0.15), 0 0 100px rgba(90,176,232,0.06);
}

/* Tagline */
.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--celeste);
  text-transform: uppercase;
}

/* Título */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 7vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.2),
    0 0 50px rgba(180, 220, 255, 0.1);
}

/* "DE POKER" en celeste neon */
.hero-title .celeste-accent {
  color: var(--celeste-light);
  text-shadow:
    0 0 8px rgba(148, 208, 247, 0.7),
    0 0 22px rgba(148, 208, 247, 0.4),
    0 0 50px rgba(148, 208, 247, 0.2);
  animation: neonCelestePulse 2.8s ease-in-out infinite;
}
@keyframes neonCelestePulse {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.2); }
}

/* Club GG badge */
.hero-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(90,176,232,0.07);
  border: 1px solid rgba(90,176,232,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
}
.clubgg-badge {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 85%;
}
.platform-name {
  font-weight: 800;
  color: var(--celeste-light);
}

/* Oferta */
.hero-offer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(201,162,39,0.05));
  border: 1px solid rgba(201,162,39,0.5);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  width: 100%;
  max-width: 400px;
  position: relative;
}
.hero-offer::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 2px solid rgba(201,162,39,0.6);
  animation: offerPulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes offerPulse {
  0%, 100% { transform: scale(1);    opacity: 0.8; }
  50%       { transform: scale(1.05); opacity: 0;   }
}
.offer-icon { font-size: 28px; }
.offer-text { font-size: 16px; color: var(--text); }
.offer-text strong { font-weight: 700; }

/* Palabra BONO — shine dorado */
.bono-word {
  font-weight: 900;
  background: linear-gradient(
    105deg,
    var(--gold) 15%,
    #fffbe0 42%,
    #fff5a0 50%,
    #fffbe0 58%,
    var(--gold-light) 85%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(240,192,64,0.55));
  animation: bonoShine 2.8s linear infinite;
}
@keyframes bonoShine {
  0%   { background-position: 150% center; }
  100% { background-position: -150% center; }
}

/* Stats pills */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.stat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
}
.pill-num  { font-weight: 900; color: var(--celeste-light); }
.pill-icon { font-size: 14px; }
.pill-txt  { color: var(--text-muted); font-size: 12px; font-weight: 600; }

/* CTA hero */
.hero-cta-btn { width: 100%; max-width: 420px; }

/* Legal */
.hero-legal {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Animate in */
.animate-in { animation: fadeUp 0.8s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--celeste) 0%, var(--celeste-light) 50%, var(--celeste) 100%);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.ticker-track span {
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  color: #03243a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--bg-dark); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--celeste);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
}

/* ===== BENEFICIOS ===== */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.benefit-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.4s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(90,176,232,0.35);
  box-shadow: var(--shadow-celeste);
}
.benefit-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.benefit-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== PREMIOS ===== */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prize-card { border-radius: var(--radius-lg); overflow: hidden; }
.prize-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.prize-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: saturate(0.8) brightness(0.88);
}
.prize-card:hover .prize-img-wrap img { transform: scale(1.06); }
.prize-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  padding: 32px 16px 16px;
  text-align: center;
}
.prize-overlay span {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ===== COMUNIDAD ===== */
.comunidad-section {
  background: radial-gradient(ellipse at 50% 50%, #091520 0%, var(--bg) 70%);
}
.comunidad-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.comunidad-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(90,176,232,0.1);
  border: 1px solid rgba(90,176,232,0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--celeste);
}
.comunidad-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 900;
  line-height: 1.1;
}
.comunidad-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== IG STORIES ===== */
.stories-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  justify-content: center;
}
.stories-gallery::-webkit-scrollbar { display: none; }

.story-card {
  flex: 0 0 200px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  aspect-ratio: 9/16;
  transition: transform 0.3s ease;
}
.story-card:hover { transform: scale(1.03); }
.story-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story-ring {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 3px solid var(--celeste);
  box-shadow: inset 0 0 16px rgba(90,176,232,0.08), 0 0 14px rgba(90,176,232,0.2);
  pointer-events: none;
  z-index: 2;
  background: transparent;
}

.stories-footer {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.stories-quote {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 560px;
  line-height: 1.8;
}

/* ===== PROCESO DE INGRESO ===== */
.steps-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  width: 100%;
  transition: all 0.3s ease;
}
.step-item:hover {
  border-color: rgba(90,176,232,0.3);
  box-shadow: var(--shadow-celeste);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--celeste);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.step-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.step-arrow {
  font-size: 24px;
  color: var(--celeste);
  opacity: 0.35;
  padding: 6px 0;
  text-align: center;
}

/* ===== SIMPLE Y RÁPIDO ===== */
.simple-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.simple-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.simple-text strong { color: var(--text); }

.platforms-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: all 0.3s ease;
  min-width: 110px;
}
.platform-item:hover {
  border-color: rgba(90,176,232,0.3);
  transform: translateY(-4px);
}
.platform-item span { font-size: 13px; font-weight: 600; color: var(--text-muted); }

.clubgg-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: left;
  width: 100%;
}
.clubgg-note-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.clubgg-note p { font-size: 14px; line-height: 1.6; }
.note-muted { color: var(--text-muted); font-size: 13px; margin-top: 4px; }

/* ===== CTA FINAL ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(ellipse at center, #091520 0%, #080810 70%);
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(90,176,232,0.07) 0%, transparent 60%);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.2;
}
.cta-content p { font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.cta-content strong { color: var(--text); }
.cta-legal { font-size: 11px; color: var(--text-muted); opacity: 0.55; }

/* ===== FOOTER ===== */
.footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-logo span { font-size: 14px; color: var(--text-muted); }
.footer-logo strong { color: var(--celeste-light); }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--celeste-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-disclaimer { color: #444 !important; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-wa);
  animation: waPulse 2s ease infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .benefit-card { flex: 0 0 calc(50% - 10px); }
  .prizes-grid  { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(8,8,16,0.98);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-wa { display: none; }

  .hero-logo { width: 160px; height: 160px; }
  .story-card { flex: 0 0 160px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .section { padding: 64px 0; }
}

@media (max-width: 560px) {
  .benefit-card { flex: 0 0 100%; }
  .prizes-grid  { grid-template-columns: 1fr; max-width: 340px; }
  .hero-cta-btn { font-size: 13px; padding: 16px 24px; }
  .platforms-row { gap: 16px; }
  .platform-item { min-width: 90px; padding: 18px 20px; }
  .footer-links  { gap: 16px; }
}
