/* CSS Reset & Variables */
:root {
  --neon-green: #00F48D;
  --cyber-green: #04d97f;
  --dark-bg: #0B0E14;
  --glass-bg: rgba(20, 25, 35, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --gold-glow: #FACC15;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 244, 141, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(0, 244, 141, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 244, 141, 0); }
}

@keyframes slideBg {
  from { background-position: 0 0; }
  to { background-position: -200% 0; }
}

@keyframes scrollInfinite {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Base Styles */
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
.gradient-text {
  background: linear-gradient(135deg, var(--neon-green), #00b8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glow-text {
  text-shadow: 0 0 20px rgba(0,244,141,0.5);
  color: #fff;
}

/* Glass Header */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 14, 20, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.logo span { color: var(--neon-green); }

.header-badges { display: flex; align-items: center; gap: 1rem; }
.badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--neon-green); font-weight: 600;
}
.btn-sm {
  background: var(--glass-border); color: #fff; padding: 0.5rem 1rem;
  border-radius: 99px; text-decoration: none; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--glass-border); transition: var(--transition);
}
.btn-sm:hover { background: var(--cyber-green); color: #000; }

/* Buttons */
.btn-glow {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(90deg, var(--cyber-green), var(--neon-green));
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: var(--transition);
  animation: pulseGlow 2s infinite;
}
.btn-glow::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: var(--transition);
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 244, 141, 0.3); }
.btn-glow:hover::before { left: 100%; transition: 0.6s; }
.pulse-anim { animation: pulseGlow 2s infinite; }

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tag-pill {
  display: inline-flex;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.25rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 2rem; }
.hero-subtitle strong { color: #fff; }

.price-box {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; display: inline-block;
}
.old-price { color: #f43f5e; text-decoration: line-through; font-size: 0.9rem; font-weight: 600; display: block;}
.current-price { font-size: 3.5rem; font-weight: 800; color: var(--neon-green); line-height: 1;}
.payment-info { font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.5rem; display: block;}

.trust-indicators {
  display: flex; gap: 2rem; margin-top: 2rem; color: var(--text-secondary); font-size: 0.9rem;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-item svg { color: var(--neon-green); }

/* Mockup Container */
.hero-image-wrapper { position: relative; perspective: 1000px; }
.mockup-img { width: 100%; border-radius: 20px; z-index: 2; position: relative; }
.floating-element { animation: float 6s ease-in-out infinite; }
.mockup-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; height: 100%; background: var(--neon-green);
  filter: blur(100px); opacity: 0.2; z-index: 1; border-radius: 50%;
}
.floating-badge {
  position: absolute; background: rgba(255,255,255,0.1); 
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff; 
  padding: 0.75rem 1.5rem; border-radius: 12px; font-weight: 700; z-index: 3;
}
.badge-1 { bottom: -20px; left: -20px; color: var(--neon-green); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.badge-2 { top: -20px; right: -20px; background: var(--gold-glow); color: #000; border: none; transform: rotate(5deg); }

/* Generic Glass Card */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
}

/* Base Sections */
section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.sub-tag {
  background: rgba(250, 204, 21, 0.1); color: var(--gold-glow);
  padding: 0.5rem 1.25rem; border-radius: 99px; font-weight: 700; font-size: 0.85rem; display: inline-block; margin-bottom: 1rem;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; }

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  grid-auto-rows: minmax(150px, auto);
}
.bento-card { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: var(--transition); cursor: pointer; }
.bento-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.icon-box { font-size: 2rem; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(255,255,255,0.05); }
.icon-box.warning { background: rgba(250, 204, 21, 0.1); }
.icon-box.danger { background: rgba(244, 63, 94, 0.1); }
.icon-box.success { background: rgba(0, 244, 141, 0.1); }
.bento-card p { font-weight: 500; line-height: 1.5; color: var(--text-primary); }
.bento-card.featured { grid-column: 1 / -1; align-items: center; text-align: center; background: linear-gradient(180deg, rgba(0,244,141,0.05) 0%, transparent 100%); border-top: 1px solid var(--neon-green); }
.bento-card.featured h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.bento-card.featured p { color: var(--text-secondary); max-width: 600px; }

/* Video */
.video-container {
  aspect-ratio: 16/9; width: 100%; max-width: 900px; margin: 0 auto; overflow: hidden; padding: 10px; position: relative;
}
.video-container iframe { width: 100%; height: 100%; border-radius: 16px; border: none; }
.video-container::before { content:''; position: absolute; inset: 0; background: linear-gradient(45deg, var(--neon-green), #00b8d4); z-index: -1; opacity: 0.3; filter: blur(30px); }

/* Hover Cards Showcase */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.hover-card { padding: 2.5rem; text-align: left; transition: var(--transition); position: relative; overflow: hidden; }
.hover-card::before { content:''; position: absolute; top:0; left:0; width:100%; height:100%; background: radial-gradient(circle at top right, rgba(0,244,141,0.1), transparent 50%); opacity: 0; transition: var(--transition); }
.hover-card:hover { transform: translateY(-10px); border-color: var(--neon-green); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.hover-card:hover::before { opacity: 1; }
.card-icon { width: 64px; height: 64px; background: rgba(0,244,141,0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--neon-green); margin-bottom: 1.5rem; transition: var(--transition); }
.hover-card:hover .card-icon { background: var(--neon-green); color: #000; transform: scale(1.1) rotate(5deg); }
.hover-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.hover-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.hover-card ul li { color: var(--text-secondary); padding-left: 1.5rem; position: relative; }
.hover-card ul li::before { content:'→'; position: absolute; left: 0; color: var(--neon-green); font-weight: bold; }

/* Cyber Grid / Bonus */
.cyber-grid-bg { 
  position: absolute; inset: 0; z-index: 1; opacity: 0.3;
  background-image: linear-gradient(var(--glass-border) 1px, transparent 1px), linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
  animation: slideBg 10s linear infinite;
}
.bonus-section { background: radial-gradient(circle at center, rgba(0,244,141,0.05) 0%, var(--dark-bg) 70%); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); overflow: hidden; }
.bonus-badge { background: var(--gold-glow); color: #000; font-weight: 800; padding: 0.5rem 2rem; border-radius: 99px; display: inline-block; margin: 0 auto 2rem; }
.bonus-showcase { margin-top: 4rem; width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow: hidden; padding: 20px 0;}
.bonus-track { display: flex; gap: 2rem; width: fit-content; animation: scrollInfinite 30s linear infinite; }
.bonus-track:hover { animation-play-state: paused; }
.game-thumb { width: clamp(250px, 30vw, 400px); position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--glass-border); cursor: pointer; transition: var(--transition); }
.game-thumb:hover { transform: scale(1.05); z-index: 10; border-color: var(--neon-green); box-shadow: 0 0 30px rgba(0,244,141,0.3);}
.game-thumb img { width: 100%; height: auto; display: block; filter: grayscale(30%); transition: var(--transition); }
.game-thumb:hover img { filter: grayscale(0%); }
.thumb-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem 1rem 1rem; background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent); font-weight: 700; transform: translateY(20px); opacity: 0; transition: var(--transition); }
.game-thumb:hover .thumb-overlay { transform: translateY(0); opacity: 1; }

/* Compare Grid */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.compare-card { padding: 3rem 2rem 2rem; position: relative; }
.card-badge { position: absolute; top: -15px; left: 2rem; padding: 0.5rem 1.5rem; border-radius: 99px; font-weight: 700; font-size: 0.9rem; }
.before-badge { background: #3f3f46; color: #fff; }
.after-badge { background: var(--cyber-green); color: #000; box-shadow: 0 0 20px rgba(0,244,141,0.4); }
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.compare-card ul li { display: flex; align-items: center; gap: 1rem; font-weight: 500; font-size: 1.05rem; }
.compare-card.before ul li { color: var(--text-secondary); }
.icon { font-size: 1.5rem; background: rgba(255,255,255,0.05); width: 48px; height: 48px; display: flex; justify-content: center; align-items: center; border-radius: 50%; }

/* FAQ Accordion */
.accordion { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item { overflow: hidden; }
.accordion-header { width: 100%; padding: 1.5rem; text-align: left; background: transparent; border: none; color: #fff; font-size: 1.1rem; font-weight: 600; font-family: inherit; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.accordion-content { padding: 0 1.5rem; max-height: 0; overflow: hidden; color: var(--text-secondary); line-height: 1.6; transition: max-height 0.4s ease, padding 0.4s ease; }
.accordion-item.active .accordion-content { padding: 0 1.5rem 1.5rem; max-height: 200px; }
.accordion-item.active .chevron { transform: rotate(180deg); color: var(--neon-green); }

/* Final CTA */
.final-cta { text-align: center; }
.premium-card { padding: 4rem 3rem; background: linear-gradient(135deg, rgba(20,25,35,0.8), rgba(0,244,141,0.05)); border: 1px solid rgba(0,244,141,0.2); }
.inclusion-list { list-style: none; text-align: left; max-width: 400px; margin: 2rem auto; font-size: 1.1rem; display: flex; flex-direction: column; gap: 1rem; }
.pricing-final { margin: 3rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-final .old { font-size: 1.2rem; text-decoration: line-through; color: var(--text-secondary); }
.pricing-final .new { font-size: 4rem; color: var(--neon-green); line-height: 1; text-shadow: 0 0 30px rgba(0,244,141,0.5); }
.pricing-final .small { font-size: 1.2rem; color: #fff; text-shadow: none; font-weight: 400; }

/* Footer */
footer { padding: 4rem 0 2rem; border-top: 1px solid var(--glass-border); margin-top: 4rem; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.footer-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--neon-green); }
.footer-content p { color: var(--text-secondary); max-width: 300px; line-height: 1.6; }
.copyright { text-align: center; color: rgba(255,255,255,0.3); font-size: 0.85rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1000;
  background: #25D366; width: 60px; height: 60px; border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .trust-indicators { justify-content: center; }
  .hero-image-wrapper { max-width: 600px; margin: 0 auto; }
  .bento-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .header-badges .badge { display: none; }
}

/* Base Scroll Animations Utility Classes */
.animate-on-scroll { opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.slide-up { transform: translateY(40px); }
.slide-right { transform: translateX(-40px); }
.slide-left { transform: translateX(40px); }
.zoom-in { transform: scale(0.9); }
.scale-in { transform: scale(1.1); opacity: 0; filter: blur(10px); }

.is-visible { opacity: 1; transform: translate(0) scale(1); filter: blur(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
