/* ===== BRAND TOKENS ===== */
:root {
  --brand-dark: #060a13;
  --brand-card: #0d1424;
  --brand-card-hover: #111b30;
  --brand-border: #1a2744;
  --brand-green: #00ff88;
  --brand-green-dark: #00cc6a;
  --brand-green-glow: rgba(0, 255, 136, 0.15);
  --brand-text: #e2e8f0;
  --brand-text-muted: #8892a4;
  --brand-gold: #ffd700;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--brand-dark);
  color: var(--brand-text);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 80px; /* sticky CTA space on mobile */
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--brand-dark); }
::-webkit-scrollbar-thumb { background: var(--brand-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-green-dark); }

/* ===== SELECTION ===== */
::selection { background: var(--brand-green); color: var(--brand-dark); }

/* ===== LINKS ===== */
a { color: var(--brand-green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-green-dark); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,255,136,0.08) 0%, transparent 60%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(0,255,136,0.03) 25%, transparent 50%);
  animation: heroRotate 30s linear infinite;
}
@keyframes heroRotate { to { transform: rotate(360deg); } }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--brand-green); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-green { background: rgba(0,255,136,0.12); color: var(--brand-green); border: 1px solid rgba(0,255,136,0.25); }
.badge-gold { background: rgba(255,215,0,0.12); color: var(--brand-gold); border: 1px solid rgba(255,215,0,0.25); }

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--brand-green);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(0,255,136,0.25);
}
.cta-btn:hover {
  background: var(--brand-green-dark);
  color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,255,136,0.35);
}

/* ===== CARDS ===== */
.card {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.card:hover {
  border-color: rgba(0,255,136,0.3);
  background: var(--brand-card-hover);
  transform: translateY(-2px);
}

/* ===== PROMO CODE BLOCK ===== */
.promo-code {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0,255,136,0.08);
  border: 1px dashed rgba(0,255,136,0.4);
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-green);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.promo-code:hover { background: rgba(0,255,136,0.15); }
.promo-code .copy-icon { opacity: 0.6; transition: opacity 0.2s; }
.promo-code:hover .copy-icon { opacity: 1; }
.promo-code.copied {
  border-color: var(--brand-green);
  background: rgba(0,255,136,0.2);
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--brand-border);
}
.compare-table th {
  background: rgba(0,255,136,0.1);
  color: var(--brand-green);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 16px;
  text-align: left;
}
.compare-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--brand-border);
  font-size: 0.95rem;
}
.compare-table tr:hover td { background: rgba(0,255,136,0.03); }
.compare-table .highlight-row { background: rgba(0,255,136,0.05); }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: rgba(0,255,136,0.4); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: var(--brand-card);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-text);
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--brand-card-hover); }
.faq-question .chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--brand-green);
}
.faq-item.active .faq-question .chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  color: var(--brand-text-muted);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 18px;
}

/* ===== REVIEWS ===== */
.review-card {
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.review-card:hover {
  border-color: rgba(0,255,136,0.25);
  transform: translateY(-2px);
}
.stars { color: var(--brand-gold); font-size: 1rem; letter-spacing: 2px; }

/* ===== STICKY CTA (MOBILE) ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px;
  background: linear-gradient(to top, var(--brand-dark) 60%, transparent);
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-title .accent { color: var(--brand-green); }

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  color: var(--brand-text);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--brand-green); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: var(--brand-card);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--brand-text);
  font-size: 0.9rem;
  transition: background 0.2s;
}
.lang-dropdown a:hover {
  background: rgba(0,255,136,0.1);
  color: var(--brand-green);
}
.lang-dropdown a.current {
  background: rgba(0,255,136,0.15);
  color: var(--brand-green);
  font-weight: 600;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--brand-dark);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 80px 24px 24px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ===== TRUST INDICATORS ===== */
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,255,136,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  flex-shrink: 0;
}

/* ===== FEATURE GRID ===== */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,255,136,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  flex-shrink: 0;
}

/* ===== LONGREAD ===== */
.longread p { margin-bottom: 1rem; color: var(--brand-text-muted); }
.longread h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--brand-text);
}
.longread h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--brand-text);
}
.longread ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.longread ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.5rem;
  color: var(--brand-text-muted);
}
.longread ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 700;
}

/* ===== FOOTER ===== */
footer {
  background: var(--brand-card);
  border-top: 1px solid var(--brand-border);
  margin-top: 60px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* ===== 18+ WARNING ===== */
.age-warning {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--brand-gold);
}

/* ===== RATING STARS IN HERO ===== */
.rating-display {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-gold);
  font-weight: 700;
}
.rating-display .score { color: var(--brand-text); font-size: 1.5rem; }