/* ===================================
   SETAPP TOP UP — PREMIUM CSS
   Matches main site dark theme
   ================================ */

/* Root Variables (same as main site) */
:root {
  --logo-blue: #4A90E8;
  --logo-purple: #7B3FE4;
  --logo-pink: #F04EA0;
  --logo-coral: #FF6B50;
  --logo-peach: #FF9A5C;
  --logo-lavender: #E8DEF8;
  --deep-violet: #5139C9;
  --electric-purple: #7B3FE4;
  --magenta: #D91A9A;
  --hot-pink: #F04EA0;
  --coral: #FF6B50;
  --peach: #FF9A5C;
  --lavender: #C9B8D8;
  --dark-bg: #09071a;
  --dark-secondary: #0f0d26;
  --glass-bg: rgba(255,255,255,0.065);
  --glass-border: rgba(255,255,255,0.13);
  --glass-strong: rgba(255,255,255,0.11);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.72);
  --text-muted: rgba(255,255,255,0.46);
  --font-main: 'Outfit', 'Inter', sans-serif;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-main);
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Cursor */
.cursor, .cursor-follower {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor { width: 8px; height: 8px; background: var(--hot-pink); mix-blend-mode: screen; }
.cursor-follower { width: 36px; height: 36px; border: 1.5px solid rgba(241, 59, 157, 0.5); transition: width 0.3s, height 0.3s, border-color 0.3s; }
body.cursor-hover .cursor-follower { width: 56px; height: 56px; border-color: rgba(241, 59, 157, 0.8); }
@media (max-width: 768px) { .cursor, .cursor-follower { display: none; } }

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 8, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 42px; height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(123, 63, 228, 0.5));
  transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-img { filter: drop-shadow(0 4px 18px rgba(240, 78, 160, 0.65)); }
.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--logo-purple) 0%, var(--logo-pink) 55%, var(--logo-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; list-style: none; gap: 8px; margin-left: auto; }
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--glass-bg); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 4px; transition: transform 0.3s; }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 8, 18, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1100;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--transition-smooth);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: white;
  font-size: 1.5rem; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-nav-link { color: white; text-decoration: none; font-size: 1.5rem; font-weight: 600; padding: 12px 24px; opacity: 0.8; transition: opacity 0.2s; }
.mobile-nav-link:hover { opacity: 1; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-main); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--transition-spring), box-shadow 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--logo-purple) 0%, var(--logo-pink) 60%, var(--logo-coral) 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(124, 92, 232, 0.45);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 48px rgba(240, 84, 160, 0.55); }
.btn-glass {
  background: var(--glass-bg); color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; }
.btn-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.btn:hover .btn-glow { opacity: 1; }

/* ============ SECTION COMMON ============ */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--hot-pink); margin-bottom: 16px; padding: 6px 14px;
  background: rgba(241, 59, 157, 0.1); border: 1px solid rgba(241, 59, 157, 0.2); border-radius: 100px;
}
.section-headline {
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--text-primary); margin-bottom: 20px;
}
.section-body { font-size: 1.05rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; }
.section-center { text-align: center; margin-bottom: 64px; }

/* Glass Cards */
.glass-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 24px; position: relative; overflow: hidden;
}
.card-shine {
  position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  pointer-events: none;
  transform: rotate(45deg) translate(-100%, -100%);
  transition: transform 0.6s;
}
.glass-card:hover .card-shine { transform: rotate(45deg) translate(100%, 100%); }

/* Orb base */
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--electric-purple), transparent); top: -100px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--magenta), transparent); top: 20%; right: -50px; animation-delay: -2s; }
.orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, var(--hot-pink), transparent); bottom: 10%; left: 30%; animation-delay: -4s; }
@keyframes orbFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

/* ============ TOP UP HERO ============ */
.topup-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.topup-hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.topup-hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  padding-left: clamp(32px, 6vw, 100px);
}
.topup-hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.04em;
  color: var(--text-primary); margin-bottom: 24px;
}
.headline-word { display: block; }
.headline-gradient {
  display: block;
  background: linear-gradient(135deg, var(--logo-purple) 0%, var(--logo-pink) 55%, var(--logo-coral) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  background-size: 200%; animation: gradientShift 5s ease-in-out infinite;
}
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.topup-hero-sub {
  font-size: 1.15rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 36px; max-width: 540px;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--hot-pink); border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(241, 59, 157, 0.5);
}
@keyframes badgePulse {
  0% { box-shadow: 0 0 0 0 rgba(241, 59, 157, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(241, 59, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 59, 157, 0); }
}

/* Trust Badges */
.topup-trust-badges {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted);
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}
.trust-badge svg { color: var(--hot-pink); flex-shrink: 0; }

/* Floating Coin */
.floating-coin {
  position: absolute; right: 10%; top: 50%; transform: translateY(-50%);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: coinFloat 6s ease-in-out infinite;
}
@keyframes coinFloat {
  0%, 100% { transform: translateY(-50%) translateY(0) rotate(0deg); }
  33% { transform: translateY(-50%) translateY(-15px) rotate(5deg); }
  66% { transform: translateY(-50%) translateY(10px) rotate(-3deg); }
}

.coin-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: coinRingPulse 4s ease-in-out infinite;
}
.coin-ring-1 { width: 200px; height: 200px; border-color: rgba(255, 215, 0, 0.3); }
.coin-ring-2 { width: 280px; height: 280px; border-color: rgba(255, 215, 0, 0.15); animation-delay: -1.3s; }
.coin-ring-3 { width: 360px; height: 360px; border-color: rgba(255, 215, 0, 0.08); animation-delay: -2.6s; }
@keyframes coinRingPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.5; } }

.coin-body {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 40%, #FF8C00 70%, #FFD700 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 60px rgba(255, 215, 0, 0.4),
    0 0 120px rgba(255, 165, 0, 0.2),
    inset 0 -4px 12px rgba(0,0,0,0.2),
    inset 0 4px 12px rgba(255,255,255,0.3);
  position: relative; z-index: 1;
  animation: coinSpin 12s linear infinite;
}
@keyframes coinSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.coin-face {
  width: 110px; height: 110px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.15), transparent);
}
.coin-symbol {
  font-size: 3.5rem; font-weight: 900;
  color: rgba(120, 70, 0, 0.7);
  text-shadow: 0 2px 4px rgba(255,255,255,0.3);
  font-family: var(--font-main);
}
.coin-glow {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.3), transparent 70%);
  animation: coinGlowPulse 3s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes coinGlowPulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.4); opacity: 0.2; } }

/* ============ AGE BANNER ============ */
.age-banner {
  background: linear-gradient(135deg, rgba(255, 107, 80, 0.15), rgba(241, 59, 157, 0.1));
  border-top: 1px solid rgba(255, 107, 80, 0.2);
  border-bottom: 1px solid rgba(255, 107, 80, 0.2);
  padding: 16px 32px;
  position: relative; z-index: 1;
}
.age-banner-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5;
}
.age-banner-inner svg { color: var(--coral); flex-shrink: 0; }
.age-banner-inner strong { color: var(--coral); }

/* ============ PRICING SECTION ============ */
.pricing {
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.pricing-bg { position: absolute; inset: 0; pointer-events: none; }
.pricing-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; }
.pricing-orb-1 { width: 600px; height: 600px; background: var(--deep-violet); top: -200px; left: -100px; }
.pricing-orb-2 { width: 500px; height: 500px; background: var(--magenta); bottom: -200px; right: -100px; }

.pricing-section-title {
  font-size: 1.3rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 32px; display: flex; align-items: center; gap: 10px;
  padding-left: 4px;
}
.coin-icon-inline { font-size: 1.5rem; }

/* Coin Cards Grid */
.coins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.coin-card {
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--transition-spring), box-shadow 0.4s;
}
.coin-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.coin-card-top {
  padding: 32px 24px 24px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), rgba(255,255,255,0.05));
  border-bottom: 1px solid var(--glass-border);
}
.coin-amount {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.coin-label {
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}
.coin-card-body {
  padding: 24px;
  flex: 1; display: flex; flex-direction: column;
}
.coin-price {
  font-size: 2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px;
}
.coin-per {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.save-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
  background: linear-gradient(135deg, var(--hot-pink), var(--coral));
  color: white; text-transform: uppercase; letter-spacing: 0.05em;
}
.coin-perks {
  list-style: none; flex: 1; margin-bottom: 20px;
}
.coin-perks li {
  font-size: 0.88rem; color: var(--text-secondary);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 8px;
}
.coin-perks li::before {
  content: '✦';
  color: var(--hot-pink); font-size: 0.7rem; flex-shrink: 0;
}
.coin-perks li:last-child { border-bottom: none; }
.coin-buy-btn { width: 100%; justify-content: center; margin-top: auto; }

/* Popular & Value Badges */
.popular-badge, .value-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 6px 18px;
  border-radius: 0 0 12px 12px; z-index: 3;
}
.popular-badge {
  background: linear-gradient(135deg, var(--hot-pink), var(--magenta));
  color: white;
}
.value-badge {
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #1a1000;
}

/* Popular Card Highlight */
.popular-card {
  border-color: rgba(241, 59, 157, 0.35);
  box-shadow: 0 0 40px rgba(241, 59, 157, 0.1);
}

/* ============ PREMIUM PASSES ============ */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.premium-card {
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--transition-spring), box-shadow 0.4s;
}
.premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.premium-card-header {
  padding: 36px 28px 28px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
  border-bottom: 1px solid var(--glass-border);
}
.premium-icon { margin-bottom: 16px; }
.premium-icon svg { filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); }
.premium-card-header h3 {
  font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 6px;
}
.premium-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.premium-card-body {
  padding: 28px;
  flex: 1; display: flex; flex-direction: column;
}
.premium-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; flex-wrap: wrap;
}
.price-amount { font-size: 2.5rem; font-weight: 900; color: var(--text-primary); }
.price-period { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.price-original {
  font-size: 1rem; color: var(--text-muted); text-decoration: line-through;
  margin-left: 8px; opacity: 0.6;
}
.premium-features { list-style: none; flex: 1; margin-bottom: 24px; }
.premium-features li {
  font-size: 0.88rem; color: var(--text-secondary);
  padding: 7px 0; display: flex; align-items: center; gap: 10px;
}
.feat-check {
  color: var(--hot-pink); font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(241, 59, 157, 0.1); border-radius: 50%;
}
.premium-buy-btn { width: 100%; justify-content: center; margin-top: auto; }

/* Premium Featured */
.premium-featured {
  border-color: rgba(241, 59, 157, 0.35);
  box-shadow: 0 0 60px rgba(241, 59, 157, 0.12);
  transform: scale(1.03);
}
.premium-featured:hover {
  transform: scale(1.05) translateY(-8px);
}
.featured-glow {
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--magenta), var(--hot-pink), var(--coral), var(--magenta));
  border-radius: 24px; z-index: -1;
  background-size: 300% 300%;
  animation: featuredGlow 4s ease-in-out infinite;
  opacity: 0.4;
}
@keyframes featuredGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============ LEGAL SECTIONS — ACCORDION ============ */
.legal-sections {
  padding: 100px 0 60px;
  position: relative;
}
.legal-bg { position: absolute; inset: 0; pointer-events: none; }
.legal-orb { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.1; }
.legal-orb-1 { width: 500px; height: 500px; background: var(--deep-violet); top: 0; left: -100px; }
.legal-orb-2 { width: 400px; height: 400px; background: var(--hot-pink); bottom: 200px; right: -100px; }

/* Accordion wrapper */
.legal-accordion {
  margin-bottom: 16px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.legal-accordion:has(.accordion-trigger[aria-expanded="true"]) {
  border-color: rgba(241, 59, 157, 0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

/* Trigger button */
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none; border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.accordion-trigger:hover { background: rgba(255,255,255,0.03); }
.accordion-trigger[aria-expanded="true"] { background: rgba(255,255,255,0.04); }

.accordion-trigger-left {
  display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0;
}

/* Icon */
.legal-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--transition-spring);
}
.accordion-trigger:hover .legal-icon { transform: scale(1.08); }

/* Title group */
.accordion-title-group {
  display: flex; flex-direction: column; gap: 3px; min-width: 0;
}
.accordion-title {
  font-size: 1.15rem; font-weight: 800; color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.accordion-meta {
  font-size: 0.75rem; color: var(--text-muted); font-weight: 400;
}

/* Chevron */
.accordion-chevron {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: transform 0.4s var(--transition-smooth), background 0.2s, color 0.2s;
}
.accordion-trigger[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
  background: rgba(241, 59, 157, 0.15);
  color: var(--hot-pink);
}

/* Body — smooth height transition using max-height */
.accordion-body {
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.5s var(--transition-smooth), opacity 0.4s;
  opacity: 1;
}
.accordion-body-collapsed {
  max-height: 0;
  opacity: 0;
}

/* Content inside the body */
.legal-content {
  padding: 8px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legal-content h3 {
  font-size: 1rem; font-weight: 700; color: var(--text-primary);
  margin-top: 24px; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-content h3:first-of-type { margin-top: 20px; }
.legal-content p {
  font-size: 0.9rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 10px;
}
.legal-content ul {
  list-style: none; margin-bottom: 16px; padding-left: 0;
}
.legal-content ul li {
  font-size: 0.9rem; line-height: 1.7; color: var(--text-secondary);
  padding: 4px 0 4px 20px; position: relative;
}
.legal-content ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--hot-pink); opacity: 0.6;
}
.legal-content a {
  color: var(--hot-pink); text-decoration: none;
  transition: color 0.2s;
}
.legal-content a:hover { color: var(--logo-coral); text-decoration: underline; }

.legal-highlight {
  padding: 16px 20px; margin: 12px 0 16px;
  background: linear-gradient(135deg, rgba(255, 107, 80, 0.1), rgba(241, 59, 157, 0.08));
  border: 1px solid rgba(255, 107, 80, 0.25);
  border-radius: 12px;
  font-size: 0.92rem; line-height: 1.6; color: var(--text-primary);
}

/* ============ FOOTER ============ */
.footer {
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid var(--glass-border);
}
.footer-bg { position: absolute; inset: 0; pointer-events: none; }
.footer-orb-1 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  filter: blur(120px); opacity: 0.1;
  background: var(--deep-violet); bottom: -100px; left: 30%;
}
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(123, 63, 228, 0.4)); }
.footer-brand-text {
  font-size: 1.3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--logo-purple), var(--logo-pink), var(--logo-coral));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-tagline { font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); }
.footer-nav-group h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-nav-group ul { list-style: none; }
.footer-nav-group li { margin-bottom: 10px; }
.footer-nav-group a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-nav-group a:hover { color: var(--text-primary); }

/* Business Info Block */
.footer-business-info {
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 24px;
}
.business-info-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.business-detail {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
}
.business-detail svg { color: var(--text-muted); flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.business-detail strong { color: var(--text-secondary); }
.business-detail a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.business-detail a:hover { color: var(--hot-pink); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: color 0.2s, background 0.2s;
}
.social-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.12); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.8s, transform 0.8s var(--transition-smooth);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
  opacity: 1; transform: translate(0);
}

/* ============ TILT CARD EFFECT ============ */
.tilt-card { transition: transform 0.4s var(--transition-spring), box-shadow 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .coins-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-featured { transform: scale(1); }
  .premium-featured:hover { transform: translateY(-8px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .business-info-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .topup-hero { padding: 100px 0 60px; flex-direction: column; text-align: center; }
  .topup-hero-content { padding-left: 32px; padding-right: 32px; max-width: 100%; }
  .topup-hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .topup-trust-badges { justify-content: center; }

  .floating-coin { display: none; }

  .coins-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .premium-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .premium-featured { transform: scale(1); }
  .premium-featured:hover { transform: translateY(-4px); }

  .accordion-trigger { padding: 18px 20px; gap: 12px; }
  .accordion-title { font-size: 1rem; white-space: normal; }
  .legal-content { padding: 8px 20px 24px; }
  .accordion-title-group { gap: 2px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-headline { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .pricing { padding: 80px 0 60px; }

  .age-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section-container { padding: 0 20px; }
  .coin-card-top { padding: 24px 16px 16px; }
  .coin-amount { font-size: 2.8rem; }
  .coin-card-body { padding: 20px 16px; }
  .premium-card-header { padding: 28px 20px 20px; }
  .premium-card-body { padding: 20px; }
  .price-amount { font-size: 2rem; }
}
