/* ===================================================
   GR 247 – Premium Cricket Community Landing Page CSS
   Dark Theme | Gold | Neon Green | Glassmorphism
   =================================================== */

/* ---- CSS Variables ---- */
:root {
  --black: #050810;
  --dark: #0a0f1e;
  --darker: #060b14;
  --card-bg: rgba(255, 255, 255, 0.04);
  --gold: #f5c842;
  --gold-light: #ffd95a;
  --gold-dark: #c9a000;
  --green: #00ff7f;
  --green-dark: #00c65a;
  --green-glow: rgba(0, 255, 127, 0.3);
  --gold-glow: rgba(245, 200, 66, 0.3);
  --white: #ffffff;
  --gray: #8896aa;
  --light-gray: #bcc8d9;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 200, 66, 0.3);
  --border-green: rgba(0, 255, 127, 0.25);
  --wa-green: #25d366;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
  --shadow-gold: 0 0 40px rgba(245, 200, 66, 0.2);
  --shadow-green: 0 0 40px rgba(0, 255, 127, 0.2);
  --radius: 16px;
  --radius-lg: 24px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===================================================
   FLOATING ELEMENTS & PARTICLES
   =================================================== */
.floating-ball {
  position: fixed;
  top: 20%;
  right: -80px;
  font-size: 120px;
  opacity: 0.07;
  animation: floatBall 8s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}

@keyframes floatBall {
  0%, 100% { transform: translateY(0px) rotate(0deg) translateX(0); }
  25% { transform: translateY(-30px) rotate(90deg) translateX(-20px); }
  50% { transform: translateY(-15px) rotate(180deg) translateX(0); }
  75% { transform: translateY(-40px) rotate(270deg) translateX(-10px); }
}

.stadium-lights {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.light {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: lightPulse 4s ease-in-out infinite;
}

.l1 { width: 300px; height: 300px; top: -50px; left: -80px; background: radial-gradient(circle, rgba(245,200,66,0.12) 0%, transparent 70%); animation-delay: 0s; }
.l2 { width: 400px; height: 400px; top: -100px; right: -100px; background: radial-gradient(circle, rgba(0,255,127,0.08) 0%, transparent 70%); animation-delay: 1.5s; }
.l3 { width: 250px; height: 250px; bottom: 100px; left: 10%; background: radial-gradient(circle, rgba(245,200,66,0.06) 0%, transparent 70%); animation-delay: 3s; }
.l4 { width: 350px; height: 350px; bottom: 200px; right: 5%; background: radial-gradient(circle, rgba(0,255,127,0.08) 0%, transparent 70%); animation-delay: 0.8s; }

@keyframes lightPulse {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.particles {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFly linear infinite;
}

@keyframes particleFly {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon { font-size: 1.6rem; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light-gray);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e6a800);
  color: var(--black);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245,200,66,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--black);
  box-shadow: 0 4px 20px var(--green-glow);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,255,127,0.45);
  background: linear-gradient(135deg, #00ffaa, var(--green));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(245,200,66,0.05);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-xl { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.pulse-btn {
  animation: pulseBtnAnim 2.5s ease-in-out infinite;
}

@keyframes pulseBtnAnim {
  0%, 100% { box-shadow: 0 4px 20px var(--gold-glow); }
  50% { box-shadow: 0 4px 40px rgba(245,200,66,0.7), 0 0 60px rgba(245,200,66,0.2); }
}

/* ===================================================
   GLASSMORPHISM CARDS
   =================================================== */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition-slow);
}

.glass-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* ===================================================
   SECTION COMMONS
   =================================================== */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(245,200,66,0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

.brand-gold { color: var(--gold); }
.brand-green { color: var(--green); }
.gold-text { color: var(--gold); }
.green-text { color: var(--green); }
.wa-text { color: var(--wa-green); }
.gold-icon { color: var(--gold); }
.green-icon { color: var(--green); }

/* ===================================================
   ANIMATION CLASSES
   =================================================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(80px);
  animation: slideRight 1s 0.5s forwards ease-out;
}

@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

.animate-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}

.animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-anim {
  animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.hover-zoom {
  transition: transform 0.6s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 20px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5,8,16,0.95) 0%, rgba(5,8,16,0.6) 50%, rgba(5,8,16,0.85) 100%),
    radial-gradient(ellipse at bottom, rgba(245,200,66,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at top right, rgba(0,255,127,0.06) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0,255,127,0.1);
  border: 1px solid var(--border-green);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--light-gray);
  margin-bottom: 32px;
  font-weight: 300;
}

.bonus-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.bonus-pill.gold {
  background: rgba(245,200,66,0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

.bonus-pill.gold:hover {
  background: rgba(245,200,66,0.2);
  box-shadow: var(--shadow-gold);
}

.bonus-pill.green {
  background: rgba(0,255,127,0.1);
  border: 1px solid var(--border-green);
  color: var(--green);
}

.bonus-pill.green:hover {
  background: rgba(0,255,127,0.18);
  box-shadow: var(--shadow-green);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-player {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 45%;
  max-width: 520px;
  z-index: 2;
}

.hero-player-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: drop-shadow(0 0 30px rgba(245,200,66,0.15));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 12%, black 90%, transparent 100%);
  mask-image: linear-gradient(to top, transparent 0%, black 12%, black 90%, transparent 100%);
  border-radius: 12px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ===================================================
   WHY CHOOSE SECTION
   =================================================== */
.why-choose {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 36px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: var(--transition);
}

.icon-gold {
  background: rgba(245,200,66,0.12);
  color: var(--gold);
  border: 1px solid var(--border-gold);
}

.icon-green {
  background: rgba(0,255,127,0.1);
  color: var(--green);
  border: 1px solid var(--border-green);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: var(--shadow-gold);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===================================================
   BONUS SECTION
   =================================================== */
.bonus-section {
  position: relative;
  overflow: hidden;
}

.bonus-bg {
  position: absolute;
  inset: 0;
}

.bonus-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.12) saturate(0.8);
}

.bonus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(5,8,16,0.8) 50%, var(--black) 100%);
}

.bonus-section .container { position: relative; z-index: 1; }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.bonus-card {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-featured {
  border-color: var(--border-green);
  transform: scale(1.02);
  box-shadow: var(--shadow-green);
}

.bonus-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.bonus-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 50px;
}

.green-badge {
  background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
}

.gold-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
}

.bonus-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  animation: floatAnim 3s ease-in-out infinite;
}

.bonus-percent {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.bonus-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bonus-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

.bonus-fill {
  height: 100%;
  border-radius: 2px;
  animation: fillBar 2s ease-out forwards;
}

.gold-fill { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); }
.green-fill { background: linear-gradient(90deg, var(--green-dark), var(--green)); }

@keyframes fillBar {
  from { width: 0 !important; }
}

.bonus-bar-label {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* ===================================================
   HOW TO JOIN – TIMELINE
   =================================================== */
.how-to-join {
  background: linear-gradient(180deg, var(--black) 0%, var(--darker) 50%, var(--black) 100%);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 1;
  transition: var(--transition);
  flex-shrink: 0;
}

.gold-circle {
  background: rgba(245,200,66,0.12);
  border: 2px solid var(--gold);
  color: var(--gold);
}

.green-circle {
  background: rgba(0,255,127,0.1);
  border: 2px solid var(--green);
  color: var(--green);
}

.timeline-item:hover .step-circle {
  transform: scale(1.15);
  box-shadow: var(--shadow-gold);
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 50px;
  background: linear-gradient(to bottom, var(--gold), var(--green));
  margin: 8px 0;
  opacity: 0.3;
}

.timeline-content {
  padding: 28px 30px;
  margin-bottom: 24px;
  flex: 1;
  position: relative;
}

.step-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(245,200,66,0.08);
  line-height: 1;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: 1px;
}

.timeline-content p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===================================================
   LIVE CRICKET EXPERIENCE
   =================================================== */
.live-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.live-card { border-radius: var(--radius-lg); overflow: hidden; }

.live-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  border-radius: var(--radius) var(--radius) 0 0;
}

.live-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: rgba(220, 30, 30, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gold-live-badge {
  background: rgba(245,200,66,0.85) !important;
  color: var(--black) !important;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.live-card-body {
  padding: 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: none;
}

.live-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.live-card-body p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

.live-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===================================================
   TROPHY SECTION
   =================================================== */
.trophy-section {
  background: var(--black);
  padding: 60px 0;
}

.trophy-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
}

.trophy-content {
  flex: 1;
}

.trophy-content .section-tag { margin-bottom: 12px; }

.trophy-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.trophy-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.trophy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.trophy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--light-gray);
}

.trophy-image {
  flex-shrink: 0;
  width: 250px;
}

.trophy-img {
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(245,200,66,0.3));
}

/* ===================================================
   WHATSAPP CONTACT
   =================================================== */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.12);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(5,8,16,0.85) 50%, var(--black) 100%);
}

.contact-section .container { position: relative; z-index: 1; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px;
  text-align: left;
  border-color: rgba(37,211,102,0.2);
}

.wa-icon-wrap {
  flex-shrink: 0;
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: ringPulse 2.5s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}

.wa-icon {
  font-size: 4rem;
  color: var(--wa-green);
  position: relative;
  z-index: 1;
}

.contact-text { flex: 1; }

.contact-text .section-tag { margin-bottom: 12px; }

.contact-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.contact-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.contact-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* ===================================================
   FINAL CTA BANNER
   =================================================== */
.final-cta-banner {
  background: linear-gradient(135deg, rgba(245,200,66,0.06) 0%, rgba(0,255,127,0.04) 50%, rgba(245,200,66,0.06) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.final-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.final-cta-text p { color: var(--gray); }

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 60px 0 100px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,200,66,0.08);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.88rem;
  transition: var(--transition);
  position: relative;
  padding-left: 12px;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 18px;
}

.footer-links a:hover::before { opacity: 1; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: rgba(245,200,66,0.04);
  border: 1px solid rgba(245,200,66,0.12);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.footer-disclaimer i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===================================================
   STICKY MOBILE CTA
   =================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(5,8,16,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-mobile-cta .btn {
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 20px;
  letter-spacing: 1px;
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */
@media (max-width: 1024px) {
  .hero-player { width: 40%; max-width: 400px; }
  .trophy-inner { flex-direction: column; gap: 30px; padding: 40px; text-align: center; }
  .trophy-image { width: 200px; margin: 0 auto; }
  .contact-card { flex-direction: column; text-align: center; padding: 40px; }
  .contact-features { align-items: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .final-cta-inner { text-align: center; justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Navbar */
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(5,8,16,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-gold);
    gap: 0;
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 90px 20px 60px; flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .bonus-pills { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-player { position: relative; width: 90%; max-width: 380px; margin: 30px auto 0; right: auto; bottom: auto; }
  .hero-player-img { border-radius: var(--radius); object-fit: cover; max-height: 350px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Bonus */
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-featured { transform: none; }

  /* Timeline */
  .timeline-item { flex-direction: column; align-items: flex-start; }
  .timeline-step { flex-direction: row; align-items: center; gap: 16px; }
  .step-line { display: none; }

  /* Live */
  .live-grid { grid-template-columns: 1fr; }

  /* Trophy */
  .trophy-inner { padding: 30px 20px; }

  /* Contact */
  .contact-card { padding: 30px 24px; }
  .wa-icon-wrap { width: 90px; height: 90px; }
  .wa-icon { font-size: 3rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer { padding: 50px 0 120px; }

  /* Sticky CTA */
  .sticky-mobile-cta { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .final-cta-btns { flex-direction: column; width: 100%; }
  .final-cta-btns .btn { width: 100%; justify-content: center; }
  .live-cta-group { flex-direction: column; align-items: center; }
  .live-cta-group .btn { width: 100%; justify-content: center; }
}

/* ===================================================
   SCROLLBAR
   =================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===================================================
   SELECTION
   =================================================== */
::selection {
  background: rgba(245,200,66,0.25);
  color: var(--white);
}
