/* ══════════════════════════════════════════════════════════════
   DUELPLAY GIFT CARD STORE — Premium AAA Gaming Theme
   ══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Background palette */
  --bg-1: #071321;
  --bg-2: #0B1B34;
  --bg-3: #11294D;
  --bg-4: #132F57;

  /* Accent colours */
  --orange:  #f97316;
  --orange-d:#ea6c0a;
  --gold:    #fbbf24;
  --cyan:    #00d4ff;
  --blue:    #3b82f6;
  --purple:  #a855f7;
  --green:   #10b981;
  --red:     #ef4444;

  /* Glass */
  --glass:        rgba(255,255,255,0.06);
  --glass-hover:  rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.13);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.45);

  /* Text */
  --white: #ffffff;
  --text:  rgba(255,255,255,0.88);
  --muted: rgba(255,255,255,0.50);

  /* Glows */
  --glow-orange: 0 0 24px rgba(249,115,22,0.55);
  --glow-cyan:   0 0 24px rgba(0,212,255,0.45);
  --glow-purple: 0 0 24px rgba(168,85,247,0.45);
  --glow-gold:   0 0 24px rgba(251,191,36,0.45);

  /* Radius */
  --r-sm:  12px;
  --r-md:  18px;
  --r-lg:  24px;
  --r-xl:  30px;

  /* Compat aliases (used by card JS) */
  --teal:   #0d9488;
  --teal-l: #14b8a6;
  --dark:   #0B1B34;
  --border: rgba(255,255,255,0.13);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.4);
  --card-shadow-hover: 0 16px 48px rgba(0,0,0,0.55);
  --bg: var(--bg-1);
  --muted-compat: rgba(255,255,255,0.5);
  --green-l: rgba(16,185,129,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter','Segoe UI',sans-serif;
  background: var(--bg-1);
  color: var(--text);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── ANIMATED BACKGROUND ─────────────────────────────────────── */
.particle-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.bg-orbs {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.bg-orb-1 { width: 600px; height: 600px; background: var(--purple); top: -200px; left: -150px; animation-delay: 0s; }
.bg-orb-2 { width: 500px; height: 500px; background: var(--blue);   top: 30%;   right: -180px; animation-delay: -4s; }
.bg-orb-3 { width: 400px; height: 400px; background: var(--orange); bottom: 10%; left: 20%; animation-delay: -8s; }
.bg-orb-4 { width: 350px; height: 350px; background: var(--cyan);   bottom: -100px; right: 10%; animation-delay: -2s; }
.bg-orb-5 { width: 300px; height: 300px; background: var(--gold);   top: 60%;   left: 60%; animation-delay: -6s; }

@keyframes orbFloat {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(30px,-40px) scale(1.06); }
  100% { transform: translate(-20px,30px) scale(0.96); }
}

/* Light ray effect */
.bg-rays {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: conic-gradient(from 200deg at 70% 20%,
    transparent 0deg, rgba(0,212,255,0.03) 10deg, transparent 20deg,
    transparent 40deg, rgba(249,115,22,0.03) 50deg, transparent 60deg);
  animation: rayRotate 20s linear infinite;
}
@keyframes rayRotate { to { transform: rotate(360deg); } }

/* Main page sits above background */
.header, .page, .auth-screen, .loader-wrap, .success-overlay,
.toast, footer, .dc-overlay { position: relative; z-index: 1; }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── HEADER ──────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(7,19,33,0.75);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4), 0 1px 0 rgba(0,212,255,0.08);
  transition: background 0.3s;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 13px 24px;
  display: flex; align-items: center; gap: 24px;
}

/* Logo */
.header-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  animation: logoEntry 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes logoEntry { from { opacity:0; transform:translateX(-20px); } }

.logo-icon {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg,var(--orange),var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--glow-orange), 0 0 0 1px rgba(249,115,22,0.3);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { box-shadow: var(--glow-orange), 0 0 0 1px rgba(249,115,22,0.3); }
  50%      { box-shadow: 0 0 36px rgba(249,115,22,0.7), 0 0 0 2px rgba(249,115,22,0.5); }
}
.logo-name {
  font-size: 20px; font-weight: 900;
  background: linear-gradient(90deg,#fff 0%,var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

/* Nav links */
.header-nav {
  display: flex; align-items: center; gap: 2px;
  margin-left: 8px;
}
.nav-link {
  padding: 7px 15px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; border-radius: 1px;
  background: linear-gradient(90deg,var(--cyan),var(--orange));
  transition: left 0.25s, right 0.25s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link:hover::after { left: 12px; right: 12px; }

/* Header right */
.header-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.balance-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.15);
  border: 1.5px solid rgba(16,185,129,0.4);
  border-radius: 20px; padding: 5px 14px;
  font-size: 13px; font-weight: 700; color: var(--green);
  box-shadow: 0 0 16px rgba(16,185,129,0.2);
  animation: balancePulse 2.5s ease-in-out infinite;
}
@keyframes balancePulse {
  0%,100% { box-shadow: 0 0 16px rgba(16,185,129,0.2); }
  50%      { box-shadow: 0 0 28px rgba(16,185,129,0.4); }
}

.btn-back {
  padding: 7px 14px; border-radius: 10px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  border: 1.5px solid var(--glass-border);
  background: var(--glass);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-back:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: var(--glass-hover); }

.btn-add-cash {
  padding: 9px 20px; border-radius: 10px;
  background: linear-gradient(135deg,var(--orange),var(--gold));
  color: #fff; font-size: 13px; font-weight: 800;
  box-shadow: var(--glow-orange);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-add-cash:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(249,115,22,0.65);
}

/* ── LOADER ──────────────────────────────────────────────────── */
.loader-wrap {
  display: flex; align-items: center; justify-content: center;
  min-height: 60dvh; background: transparent;
}
.spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: var(--cyan);
  border-right-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── AUTH SCREEN ─────────────────────────────────────────────── */
.auth-screen {
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.auth-card {
  text-align: center; padding: 48px 36px; max-width: 380px; width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(24px);
  box-shadow: var(--glass-shadow), var(--glow-purple);
  animation: cardPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes cardPop { from { opacity:0; transform:scale(0.85); } }
.auth-icon { font-size: 60px; margin-bottom: 20px; }
.auth-card h2 {
  font-size: 24px; font-weight: 900; color: #fff;
  margin-bottom: 12px;
}
.auth-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; margin-bottom: 28px;
}

/* ── AUTH SCREEN — standalone login/signup ─────────────────────── */
.auth-card--wide { max-width: 400px; text-align: left; }
.auth-card--wide .auth-icon,
.auth-card--wide h2,
.auth-card--wide > p:first-of-type { text-align: center; }

.auth-tabs {
  display: flex; gap: 6px; margin-bottom: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm); padding: 4px;
}
.auth-tab {
  flex: 1; padding: 10px 0; text-align: center;
  font-size: 13px; font-weight: 800; color: var(--muted);
  border-radius: 8px; cursor: pointer; border: none; background: transparent;
  font-family: inherit; transition: background 0.2s, color 0.2s;
}
.auth-tab.active {
  background: linear-gradient(135deg,var(--orange),var(--gold));
  color: #fff;
  box-shadow: 0 2px 12px rgba(249,115,22,0.4);
}

.auth-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%; padding: 13px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: #fff; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

.auth-error {
  font-size: 13px; color: #f87171; background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3); border-radius: var(--r-sm);
  padding: 10px 14px; line-height: 1.5; display: none;
}
.auth-error.show { display: block; }

.auth-forgot {
  align-self: flex-end; font-size: 12px; font-weight: 700;
  color: var(--cyan); cursor: pointer; background: none; border: none;
  font-family: inherit; padding: 0;
}

.auth-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0; font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--glass-border);
}

.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px 0; border-radius: var(--r-sm);
  background: #fff; color: #1f1f1f; font-size: 14px; font-weight: 800;
  border: none; cursor: pointer; font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-google:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.btn-google img { width: 18px; height: 18px; }

.auth-switch {
  text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px;
}
.auth-switch button {
  color: var(--cyan); font-weight: 800; background: none; border: none;
  cursor: pointer; font-family: inherit; font-size: 13px; padding: 0;
}

.auth-back-link {
  display: block; text-align: center; margin-top: 16px;
  font-size: 13px; color: var(--muted); text-decoration: underline;
  cursor: pointer; background: none; border: none; font-family: inherit;
}

.btn-loading { opacity: 0.6; pointer-events: none; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 800;
  cursor: pointer; border: none; outline: none;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit; width: 100%;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(255,255,255,0.15),transparent);
  pointer-events: none;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: linear-gradient(135deg,var(--orange),var(--gold));
  color: #fff;
  box-shadow: var(--glow-orange), 0 4px 20px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(249,115,22,0.7), 0 8px 30px rgba(0,0,0,0.4);
}

/* ── PAGE ────────────────────────────────────────────────────── */
.page { width: 100%; }

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero-section {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 24px 56px;
  display: flex; align-items: center; gap: 48px;
  position: relative;
}

/* Decorative glow behind hero */
.hero-section::before {
  content: '';
  position: absolute; top: 10%; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(249,115,22,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 70% 60%, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left { flex: 1; position: relative; }

/* Trust badge */
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.35);
  border-radius: 20px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--green);
  margin-bottom: 24px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.1s both;
  box-shadow: 0 0 16px rgba(16,185,129,0.15);
}
.trust-stars { color: var(--gold); font-size: 13px; }

/* Hero title */
.hero-title {
  font-size: 52px; font-weight: 900;
  line-height: 1.1; letter-spacing: -0.04em;
  color: #fff; margin-bottom: 18px;
}

.word {
  display: inline-block;
  animation: wordReveal 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.word:nth-child(1) { animation-delay: 0.15s; }
.word:nth-child(2) { animation-delay: 0.22s; }
.word:nth-child(3) { animation-delay: 0.29s; }
.word:nth-child(4) { animation-delay: 0.36s; }
.word:nth-child(5) { animation-delay: 0.43s; }
.word:nth-child(6) { animation-delay: 0.50s; }

@keyframes wordReveal {
  from { opacity:0; transform: translateY(30px) rotateX(-20deg); }
  to   { opacity:1; transform: translateY(0) rotateX(0); }
}

.hero-title-highlight {
  background: linear-gradient(90deg, var(--orange) 0%, var(--gold) 60%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: textShine 3s linear infinite;
}
@keyframes textShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-accent {
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.5));
}

.hero-sub {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; margin-bottom: 24px;
  animation: fadeUp 0.6s 0.55s both;
}

/* Hero bullets */
.hero-bullets {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.65s both;
}
.hero-bullet {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.8);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 9px 16px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}
.hero-bullet:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
}

.hero-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.75s both;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  color: #fff; font-size: 15px; font-weight: 800;
  box-shadow: var(--glow-orange), 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-hero-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(255,255,255,0.18),transparent);
}
.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 48px rgba(249,115,22,0.7), 0 16px 48px rgba(0,0,0,0.4);
}

.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-md);
  border: 2px solid var(--glass-border);
  background: var(--glass);
  color: #fff; font-size: 15px; font-weight: 700;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-hero-outline:hover {
  border-color: var(--cyan);
  background: rgba(0,212,255,0.08);
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

.hero-quicklink {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--muted); font-size: 13px; font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hero-quicklink:hover {
  border-color: var(--cyan); color: #fff; background: rgba(0,212,255,0.06);
}

/* Hero right — promo card */
.hero-right { flex-shrink: 0; width: 380px; animation: fadeUp 0.7s 0.3s both; }

.hero-promo-card {
  background: linear-gradient(145deg, rgba(19,47,87,0.9) 0%, rgba(11,27,52,0.95) 50%, rgba(7,19,33,0.95) 100%);
  border-radius: var(--r-xl); padding: 30px 26px;
  border: 1px solid rgba(0,212,255,0.25);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.1),
              0 24px 60px rgba(0,0,0,0.5),
              inset 0 1px 0 rgba(255,255,255,0.08),
              var(--glow-cyan);
  position: relative; overflow: hidden;
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Shining border sweep */
.hero-promo-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--r-xl);
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg, var(--cyan) 30deg, transparent 60deg,
    transparent 180deg, var(--orange) 210deg, transparent 240deg
  );
  animation: borderSpin 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes borderSpin { to { --angle: 360deg; } }

.hero-promo-card::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
}

.promo-badge-top {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg,var(--orange),var(--gold));
  color: #fff; border-radius: 20px; padding: 5px 14px;
  font-size: 11px; font-weight: 900; letter-spacing: 0.08em;
  margin-bottom: 18px;
  box-shadow: var(--glow-orange);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: var(--glow-orange); }
  50%      { box-shadow: 0 0 36px rgba(249,115,22,0.7); }
}

.promo-main-text {
  font-size: 24px; font-weight: 900; line-height: 1.2;
  margin-bottom: 20px; letter-spacing: -0.02em; color: #fff;
}
.promo-highlight {
  background: linear-gradient(90deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.promo-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
  margin-bottom: 20px;
}

.promo-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.promo-feat {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.82);
}
.feat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg,var(--cyan),var(--blue));
  box-shadow: 0 0 8px rgba(0,212,255,0.6);
  flex-shrink: 0;
}

.promo-cta-row { display: flex; align-items: center; gap: 16px; }
.btn-promo {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-sm);
  background: linear-gradient(135deg,var(--orange),var(--gold));
  color: #fff; font-size: 13px; font-weight: 800;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--glow-orange);
}
.btn-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 36px rgba(249,115,22,0.65);
}
.promo-payment-icon {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.45); line-height: 1.5; text-align: center;
}

/* ── CTA BAND ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, rgba(19,47,87,0.8) 0%, rgba(11,27,52,0.9) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 40px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,212,255,0.05) 0%, transparent 70%);
}
.cta-band-inner { max-width: 720px; margin: 0 auto; position: relative; }
.cta-band-label {
  font-size: 11px; font-weight: 700; color: var(--cyan);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 0 12px rgba(0,212,255,0.5);
}
.cta-band-title {
  font-size: 26px; font-weight: 900; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.cta-band-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--r-md);
  background: linear-gradient(135deg,var(--orange),var(--gold));
  color: #fff; font-size: 14px; font-weight: 800;
  box-shadow: var(--glow-orange);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(249,115,22,0.65);
}

.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--r-md);
  border: 2px solid var(--glass-border);
  background: var(--glass);
  color: #fff; font-size: 14px; font-weight: 700;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-cta-outline:hover {
  border-color: var(--cyan); background: rgba(0,212,255,0.07);
  transform: translateY(-2px);
}

/* ── SECTION HEADERS ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 36px; }

.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 800; color: var(--cyan);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 12px rgba(0,212,255,0.5);
}

.section-title {
  font-size: 28px; font-weight: 900; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 14px;
}

.section-underline {
  width: 48px; height: 3px;
  background: linear-gradient(90deg,var(--cyan),var(--orange));
  border-radius: 2px; margin: 0 auto;
  box-shadow: 0 0 12px rgba(0,212,255,0.5);
}

/* ── PACKS SECTION ───────────────────────────────────────────── */
.packs-section {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 24px;
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 16px;
}

/* ── PACK CARDS — 3D Premium ─────────────────────────────────── */
.pack-card {
  position: relative;
  background: linear-gradient(145deg, rgba(19,47,87,0.85), rgba(7,19,33,0.9));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  user-select: none; -webkit-tap-highlight-color: transparent;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4),
              inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  animation: cardFloat2 6s ease-in-out infinite;
}
.pack-card:nth-child(even) { animation-delay: -3s; }
.pack-card:nth-child(3n)   { animation-delay: -1.5s; }

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

.pack-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.55),
              0 0 0 1px rgba(0,212,255,0.3),
              var(--glow-cyan);
  border-color: rgba(0,212,255,0.4);
}

/* Shine sweep on hover */
.pack-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    transparent 0%, rgba(255,255,255,0) 40%,
    rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 60%,
    transparent 100%);
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.5s ease;
  pointer-events: none; z-index: 2;
}
.pack-card:hover::after { background-position: 200% 0; }

/* Card face */
.pack-face {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.pack-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.pack-card:hover .pack-img { transform: scale(1.07); }

.pack-face-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.pack-card:hover .pack-face-icon { transform: scale(1.15) translateY(-4px); }

/* Discount badge */
.pack-badge {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: linear-gradient(135deg,#16a34a,#22c55e);
  color: #fff;
  font-size: 11px; font-weight: 900; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 20px;
  box-shadow: 0 0 12px rgba(34,197,94,0.6);
  animation: badgeBounce 2s ease-in-out infinite;
}
@keyframes badgeBounce {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

/* Card body */
.pack-body {
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
  position: relative; z-index: 1;
}
.pack-body-name {
  font-size: 13px; font-weight: 800; color: #fff; line-height: 1.3;
}
.pack-body-arrow { color: var(--muted); font-size: 12px; flex-shrink: 0; }
.pack-body-wallet {
  flex-shrink: 0;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green); font-size: 11px; font-weight: 800;
  padding: 2px 9px; border-radius: 20px;
  white-space: nowrap;
}
.pack-body-wallet-label { font-size: 9px; font-weight: 600; opacity: 0.75; }
.pack-body-desc { font-size: 10px; color: var(--muted); line-height: 1.5; margin: 0; }
.pack-body-footer {
  display: flex; align-items: center; gap: 6px; margin-top: 2px;
}
.pack-body-price {
  font-size: 16px; font-weight: 900; color: #fff; letter-spacing: -0.02em;
}

.pack-view-btn {
  width: 100%; margin-top: 8px;
  padding: 9px 0; border-radius: 10px;
  background: linear-gradient(135deg,var(--orange),var(--gold));
  border: none; color: #fff;
  font-size: 11px; font-weight: 900; cursor: pointer;
  font-family: inherit; letter-spacing: 0.08em;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(249,115,22,0.3);
  position: relative; overflow: hidden;
}
.pack-view-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(255,255,255,0.15),transparent);
}
.pack-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.5);
}

/* ── DC SECTION ──────────────────────────────────────────────── */
.dc-section {
  max-width: 1200px; margin: 0 auto;
  padding: 40px 24px 20px;
}

.dc-card {
  background: linear-gradient(145deg, rgba(19,47,87,0.85), rgba(7,19,33,0.9));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  display: flex; flex-direction: column;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: cardFloat2 7s ease-in-out infinite;
}
.dc-card:nth-child(even)  { animation-delay: -3.5s; }
.dc-card:nth-child(3n)    { animation-delay: -1.5s; }
.dc-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(168,85,247,0.3), var(--glow-purple);
  border-color: rgba(168,85,247,0.35);
}

.dc-face {
  position: relative;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.dc-face .pack-img { transition: transform 0.4s ease; }
.dc-card:hover .dc-face .pack-img { transform: scale(1.07); }

.dc-body {
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.dc-name {
  font-size: 13px; font-weight: 800; color: #fff; line-height: 1.3;
}
.dc-view-btn {
  width: 100%; padding: 8px 0; border-radius: 10px;
  background: linear-gradient(135deg,var(--purple),var(--blue));
  border: none; color: #fff;
  font-size: 12px; font-weight: 800; cursor: pointer;
  font-family: inherit; letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(168,85,247,0.3);
}
.dc-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,85,247,0.5);
}

/* ── MODAL ───────────────────────────────────────────────────── */
.dc-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(16px);
  align-items: center; justify-content: center;
  padding: 16px;
}
.dc-modal {
  background: linear-gradient(145deg, #0d1f38, #071321);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--r-xl); width: 100%;
  max-width: 400px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,212,255,0.1),
              0 32px 80px rgba(0,0,0,0.6),
              var(--glow-cyan);
  position: relative;
  animation: modalPop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalPop { from { opacity:0; transform: scale(0.85) translateY(20px); } }

.dc-modal-x {
  position: absolute; top: 14px; right: 16px; z-index: 10;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.dc-modal-x:hover { background: rgba(255,255,255,0.2); }

.dc-modal-face {
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-xl) var(--r-xl) 0 0; overflow: hidden;
}
.dc-modal-body { padding: 20px 22px 24px; }
.dc-modal-name {
  font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 6px;
}
.dc-modal-pct {
  display: inline-block;
  background: linear-gradient(135deg,#16a34a,#22c55e);
  color: #fff; font-size: 13px; font-weight: 800;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
  box-shadow: 0 0 12px rgba(34,197,94,0.5);
}
.dc-modal-desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }

.dc-modal-code-lbl {
  font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 8px;
}
.dc-modal-code-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.dc-modal-code {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(0,212,255,0.3);
  border-radius: 12px; padding: 13px 16px;
  font-size: 17px; font-weight: 900; letter-spacing: 0.12em; color: #fff;
  font-family: 'Courier New',monospace;
}
.dc-modal-copy {
  background: linear-gradient(135deg,var(--cyan),var(--blue));
  color: #fff; border: none;
  padding: 13px 16px; border-radius: 12px; cursor: pointer;
  font-size: 12px; font-weight: 800; font-family: inherit;
  white-space: nowrap; transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--glow-cyan);
}
.dc-modal-copy:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(0,212,255,0.5); }

.dc-modal-expiry { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.dc-modal-note {
  font-size: 11px; color: var(--muted);
  background: rgba(255,255,255,0.04);
  border-radius: 10px; padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.07);
}

/* Locked state */
.dc-locked-box {
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 14px; padding: 18px 16px; margin-bottom: 14px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.dc-locked-icon  { font-size: 32px; }
.dc-locked-code  {
  font-size: 22px; letter-spacing: 0.18em; color: rgba(255,255,255,0.2);
  font-weight: 900; font-family: 'Courier New',monospace;
}
.dc-locked-hint  { font-size: 11px; color: var(--muted); text-align: center; }

.dc-unlock-btn {
  width: 100%; padding: 15px; border-radius: var(--r-sm); border: none;
  background: linear-gradient(135deg,var(--orange),var(--gold));
  color: #fff; font-size: 14px; font-weight: 900;
  font-family: inherit; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 12px;
  box-shadow: var(--glow-orange), 0 4px 20px rgba(0,0,0,0.3);
  position: relative; overflow: hidden;
}
.dc-unlock-btn::after { content:''; position:absolute; inset:0; background:linear-gradient(rgba(255,255,255,0.15),transparent); }
.dc-unlock-btn:hover { transform:translateY(-3px); box-shadow: 0 0 40px rgba(249,115,22,0.65); }
.dc-unlock-btn:disabled { opacity:0.5; cursor:not-allowed; transform:none; }

/* ── EMPTY STATE ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 64px 20px; }
.empty-icon  { font-size: 56px; margin-bottom: 16px; }
.empty-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.empty-sub   { font-size: 13px; color: var(--muted); }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.hw-section {
  background: linear-gradient(135deg, rgba(11,27,52,0.95) 0%, rgba(7,19,33,0.98) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 72px 24px;
  position: relative; overflow: hidden;
}
.hw-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 50%, rgba(249,115,22,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 50% 60% at 80% 50%, rgba(0,212,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hw-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 64px;
  position: relative;
}
.hw-text { flex: 1; }
.hw-sub-label {
  font-size: 12px; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(0,212,255,0.5);
}
.hw-title {
  font-size: 38px; font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hw-accent {
  background: linear-gradient(90deg,var(--orange),var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hw-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.8; margin-bottom: 32px;
}
.btn-hw {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: var(--r-md);
  background: linear-gradient(135deg,var(--orange),var(--gold));
  color: #fff; font-size: 15px; font-weight: 800;
  box-shadow: var(--glow-orange), 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hw:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 48px rgba(249,115,22,0.65), 0 16px 48px rgba(0,0,0,0.4);
}

.hw-steps-row { display: flex; gap: 16px; }
.hw-step {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md); padding: 24px 18px;
  text-align: center;
  backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: cardFloat2 5s ease-in-out infinite;
}
.hw-step:nth-child(2) { animation-delay: -1.7s; }
.hw-step:nth-child(3) { animation-delay: -3.4s; }
.hw-step:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.35);
  box-shadow: var(--glow-cyan);
}
.hw-step-icon {
  font-size: 36px; margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,212,255,0.4));
  animation: iconBounce 3s ease-in-out infinite;
}
.hw-step:nth-child(2) .hw-step-icon { animation-delay: -1s; }
.hw-step:nth-child(3) .hw-step-icon { animation-delay: -2s; }
@keyframes iconBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.hw-step-name { font-size: 15px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.hw-step-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── STATS ───────────────────────────────────────────────────── */
.stats-section {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.stat-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px 20px; text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: cardFloat2 6s ease-in-out infinite;
}
.stat-item:nth-child(2) { animation-delay: -2s; }
.stat-item:nth-child(3) { animation-delay: -4s; }
.stat-item:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.3);
  box-shadow: var(--glow-orange), var(--glass-shadow);
}
.stat-icon {
  font-size: 36px; margin-bottom: 14px; display: block;
  animation: iconBounce 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(249,115,22,0.4));
}
.stat-item:nth-child(2) .stat-icon { filter: drop-shadow(0 0 10px rgba(0,212,255,0.4)); }
.stat-item:nth-child(3) .stat-icon { filter: drop-shadow(0 0 10px rgba(168,85,247,0.4)); }
.stat-number {
  font-size: 30px; font-weight: 900; color: #fff;
  letter-spacing: -0.03em; margin-bottom: 6px;
  background: linear-gradient(90deg,var(--gold),var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.stat-divider { display: none; }

/* ── TRUST SECTION ───────────────────────────────────────────── */
.trust-section {
  background: linear-gradient(135deg, rgba(11,27,52,0.9) 0%, rgba(19,47,87,0.85) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 56px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,212,255,0.05) 0%, transparent 70%);
}
.trust-handshake {
  font-size: 56px; margin-bottom: 20px; display: block;
  filter: drop-shadow(0 0 16px rgba(0,212,255,0.4));
  animation: iconBounce 3s ease-in-out infinite;
}
.trust-title {
  font-size: 26px; font-weight: 900; color: #fff;
  max-width: 640px; margin: 0 auto 14px;
  line-height: 1.4;
}
.trust-sub {
  font-size: 14px; color: var(--muted);
  max-width: 560px; margin: 0 auto;
  line-height: 1.8;
}

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews-section {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 24px;
}
.reviews-title {
  font-size: 26px; font-weight: 900; color: #fff;
  text-align: center; margin-bottom: 36px; letter-spacing: -0.02em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.review-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); padding: 28px;
  backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: cardFloat2 7s ease-in-out infinite;
}
.review-card:nth-child(2) { animation-delay: -2.3s; }
.review-card:nth-child(3) { animation-delay: -4.6s; }
.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251,191,36,0.3);
  box-shadow: var(--glow-gold), var(--glass-shadow);
}

/* Inner shine */
.review-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.review-quote {
  font-size: 60px; line-height: 0.8;
  background: linear-gradient(135deg,var(--cyan),var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-family: Georgia,serif; margin-bottom: -6px;
}
.review-stars {
  font-size: 16px; color: var(--gold); margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(251,191,36,0.5);
}
.review-text {
  font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.8;
  margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 0 16px currentColor;
  border: 2px solid rgba(255,255,255,0.2);
}
.review-name { font-size: 13px; font-weight: 800; color: #fff; }
.review-role { font-size: 10px; font-weight: 700; color: var(--cyan); letter-spacing: 0.08em; }

/* ── SUCCESS OVERLAY ─────────────────────────────────────────── */
.success-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9990; padding: 24px;
}
.success-card {
  text-align: center; padding: 48px 36px; max-width: 360px; width: 100%;
  background: linear-gradient(145deg,#0d1f38,#071321);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.1), 0 32px 80px rgba(0,0,0,0.6), var(--glow-cyan);
  animation: cardPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
.success-anim {
  font-size: 76px;
  animation: pop 0.5s cubic-bezier(0.34,1.56,0.64,1);
  margin-bottom: 16px; display: block;
  filter: drop-shadow(0 0 20px rgba(249,115,22,0.6));
}
@keyframes pop { from { transform:scale(0.3); opacity:0; } }
.success-card h2 { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.success-card p  { font-size: 14px; color: var(--muted); }
.success-amount {
  font-size: 48px; font-weight: 900;
  background: linear-gradient(90deg,var(--green),var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin: 20px 0 6px;
}
.success-card .btn-secondary {
  display: block; width: 100%; margin-top: 12px;
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: var(--muted); font-size: 13px; font-weight: 600;
  padding: 12px; border-radius: var(--r-md, 10px); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.success-card .btn-secondary:hover { border-color: rgba(0,212,255,0.4); color: #fff; }
.success-label { font-size: 12px; color: var(--muted); margin-bottom: 32px; }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed; top: 20px; left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: rgba(11,27,52,0.95);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--r-sm); padding: 13px 22px;
  font-size: 13px; font-weight: 700; color: #fff;
  z-index: 9999; min-width: 240px; text-align: center;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  max-width: calc(100vw - 32px);
  pointer-events: none;
}
.toast.show    { transform: translateX(-50%) translateY(0); }
.toast.success { background: rgba(4,47,31,0.95); border-color: rgba(16,185,129,0.3); box-shadow: 0 0 24px rgba(16,185,129,0.3); }
.toast.error   { background: rgba(69,0,0,0.95);  border-color: rgba(239,68,68,0.3);  box-shadow: 0 0 24px rgba(239,68,68,0.3); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, rgba(7,19,33,0.98) 0%, rgba(0,0,0,1) 100%);
  border-top: 1px solid var(--glass-border);
  color: var(--muted);
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--orange), transparent);
  opacity: 0.4;
}

.footer-top {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) 2.4fr;
  gap: 48px;
  align-items: start;
}
.footer-brand { min-width: 0; }
.footer-logo {
  font-size: 24px; font-weight: 900; color: #fff;
  margin-bottom: 14px;
  background: linear-gradient(90deg,#fff,var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.8; max-width: 320px;
}

.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; width: 100%; }
.footer-col  { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.footer-col-title {
  font-size: 13px; font-weight: 800; color: #fff;
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.footer-col a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.25);
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--cyan); }
.footer-bottom-copy { font-weight: 500; }
.footer-bottom-copy strong { color: rgba(255,255,255,0.6); }
.footer-bottom-links a { font-weight: 500; }
.footer-bottom-links span { font-weight: 500; }

.footer-badges {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 28px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,0.55);
}
.footer-badges span { display: inline-flex; align-items: center; gap: 7px; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  font-size: 14px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

.footer-contact-item {
  font-size: 13px; color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.8; display: flex; gap: 6px; align-items: flex-start;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--cyan); }

@media (max-width: 640px) {
  .footer-badges { gap: 14px 22px; padding: 18px 16px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ── ADMIN (kept compatible, dark-themed) ───────────────────── */
.admin-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 14px 16px;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(12px);
}
.admin-card .ac-info { flex: 1; }
.admin-card .ac-name { font-size: 14px; font-weight: 700; color: #fff; }
.admin-card .ac-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.admin-card .ac-actions { display: flex; gap: 8px; }
.admin-card .ac-actions button {
  padding: 6px 12px; border-radius: 8px; font-size: 12px;
  font-weight: 600; cursor: pointer; border: none; font-family: inherit;
}
.btn-edit       { background: rgba(124,58,237,0.2); color: #a78bfa; }
.btn-del        { background: rgba(220,38,38,0.2);  color: #f87171; }
.btn-toggle-on  { background: rgba(5,150,105,0.2);  color: #34d399; }
.btn-toggle-off { background: rgba(220,38,38,0.2);  color: #f87171; }

/* ── UTILITY ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM TEXT & 3D ANIMATION LAYER — v2
══════════════════════════════════════════════════════════════ */

/* ── 3D TILT SETUP ───────────────────────────────────────────── */
.pack-card,
.dc-card,
.review-card,
.hw-step,
.stat-item,
.hero-promo-card {
  transform-style: preserve-3d;
  will-change: transform;
}
/* Pause float animation while JS tilt is active */
.pack-card:hover,
.dc-card:hover,
.review-card:hover,
.hw-step:hover,
.stat-item:hover {
  animation-play-state: paused;
}

/* ── HOLOGRAPHIC SHIMMER on pack cards ───────────────────────── */
.pack-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(0,212,255,0.07) 20%,
    rgba(249,115,22,0.07) 35%,
    rgba(168,85,247,0.07) 50%,
    rgba(0,212,255,0.07) 65%,
    transparent 80%
  );
  background-size: 300% 300%;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
  animation: holoShift 3s ease-in-out infinite paused;
}
.pack-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@keyframes holoShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* ── 3D DEPTH TEXT SHADOW on hero title ──────────────────────── */
.hero-title {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.12),
    0 2px 0 rgba(255,255,255,0.08),
    0 4px 0 rgba(255,255,255,0.04),
    0 8px 20px rgba(0,0,0,0.35),
    0 16px 40px rgba(0,0,0,0.2);
}

/* ── NEON PULSE on hw-title ──────────────────────────────────── */
.hw-title {
  animation: neonPulse 4s ease-in-out infinite;
}
@keyframes neonPulse {
  0%,100% { text-shadow: none; }
  50%     { text-shadow:
      0 0 30px rgba(249,115,22,0.25),
      0 0 60px rgba(249,115,22,0.12),
      0 0 100px rgba(249,115,22,0.06); }
}

/* ── SECTION TITLE GRADIENT WAVE ─────────────────────────────── */
.section-title {
  background: linear-gradient(
    90deg,
    #fff 0%, #fff 25%,
    var(--cyan) 40%, var(--gold) 55%,
    #fff 70%, #fff 100%
  );
  background-size: 260% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleWave 6s linear infinite;
}
@keyframes titleWave {
  0%   { background-position: 0%   center; }
  100% { background-position: 260% center; }
}

/* ── GLITCH on section tags ──────────────────────────────────── */
.section-tag {
  position: relative;
  display: inline-block;
}
.section-tag.glitching::before,
.section-tag.glitching::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  pointer-events: none;
}
.section-tag.glitching::before {
  color: var(--orange);
  clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
  animation: glitch1 0.25s steps(2) both;
}
.section-tag.glitching::after {
  color: var(--cyan);
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
  animation: glitch2 0.25s steps(2) both;
}
@keyframes glitch1 {
  0%   { transform: translate(-4px, 0) skewX(-4deg); }
  50%  { transform: translate(4px, -2px) skewX(4deg); }
  100% { transform: translate(0, 0) skewX(0); }
}
@keyframes glitch2 {
  0%   { transform: translate(4px, 2px) skewX(2deg); }
  50%  { transform: translate(-4px, 0) skewX(-2deg); }
  100% { transform: translate(0, 0) skewX(0); }
}

/* ── TYPEWRITER CURSOR ───────────────────────────────────────── */
.tw-cursor {
  display: inline-block;
  width: 3px; height: 0.85em;
  background: var(--cyan);
  border-radius: 2px;
  margin-left: 4px;
  vertical-align: middle;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,212,255,0.4);
  animation: cursorBlink 0.75s step-end infinite;
}
@keyframes cursorBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ── CHAR-BY-CHAR REVEAL ─────────────────────────────────────── */
.char-split span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px) rotateX(-50deg);
  filter: blur(4px);
  transition:
    opacity   0.5s cubic-bezier(0.22,1,0.36,1),
    transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
    filter    0.4s ease;
}
.char-split.chars-in span {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  filter: blur(0);
}

/* ── STAT COUNTER GLOW on reveal ─────────────────────────────── */
.stat-number.counting {
  filter: blur(1.5px);
  opacity: 0.7;
  transition: filter 0.1s, opacity 0.1s;
}
.stat-number.count-done {
  filter: none;
  opacity: 1;
  transition: filter 0.3s, opacity 0.3s;
}

/* ── MAGNETIC BUTTON (JS sets transform; this is reset) ──────── */
.btn-hero-primary,
.btn-hw,
.btn-promo,
.btn-cta-primary {
  will-change: transform;
}

/* ── REVIEW CARD 3D LAYER DEPTH ──────────────────────────────── */
.review-card .review-quote  { transform: translateZ(10px); display: block; }
.review-card .review-text   { transform: translateZ(5px); }
.review-card .review-author { transform: translateZ(8px); }

/* ── PROMO CARD 3D DEPTH LAYERS ──────────────────────────────── */
.hero-promo-card .promo-badge-top  { transform: translateZ(16px); }
.hero-promo-card .promo-main-text  { transform: translateZ(10px); }
.hero-promo-card .promo-cta-row    { transform: translateZ(14px); }

/* ══════════════════════════════════════════════════
   RESPONSIVE — tablet (≤ 1024px)
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-section { flex-direction: column; padding: 40px 20px 36px; }
  .hero-right { width: 100%; }
  .hero-title { font-size: 42px; }
  .hw-inner { flex-direction: column; gap: 40px; }
  .hw-steps-row { gap: 12px; }
  .footer-top { grid-template-columns: 1fr 2.2fr; gap: 24px; }
  .footer-cols { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .coupon-grid { grid-template-columns: repeat(3,1fr); }
  .stats-section { grid-template-columns: repeat(3,1fr); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — mobile (≤ 640px)
══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Header */
  .header-inner { padding: 11px 16px; gap: 8px; }
  .logo-name { font-size: 17px; }
  .logo-icon { width: 32px; height: 32px; font-size: 17px; border-radius: 9px; }
  .header-nav { display: none; }
  .header-right { gap: 7px; }
  .btn-back { padding: 6px 11px; font-size: 12px; }
  .btn-add-cash { padding: 8px 14px; font-size: 12px; }
  .balance-pill { padding: 4px 10px; font-size: 12px; }

  /* Trust badge */
  .trust-badge { font-size: 11px; line-height: 1.7; padding: 6px 13px; border-radius: 14px; }

  /* Hero */
  .hero-section { padding: 28px 16px 24px; gap: 24px; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 13px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }

  /* Promo card */
  .hero-promo-card { padding: 22px 20px; border-radius: var(--r-lg); }
  .promo-main-text { font-size: 20px; }

  /* Sections */
  .packs-section, .dc-section { padding: 32px 14px; }
  .hw-section { padding: 48px 16px; }
  .hw-title { font-size: 26px; }
  .hw-steps-row { flex-direction: column; gap: 10px; }
  .hw-step { padding: 20px 16px; }
  .section-title { font-size: 22px; }

  /* CTA */
  .cta-band { padding: 32px 16px; }
  .cta-band-title { font-size: 18px; }
  .cta-band-btns { flex-direction: column; gap: 10px; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; justify-content: center; }

  /* Stats */
  .stats-section { grid-template-columns: 1fr; gap: 14px; padding: 36px 16px; }

  /* Pack cards — 2-col */
  .coupon-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .pack-face-icon { font-size: 32px; }
  .pack-body { padding: 10px 12px 12px; }
  .pack-body-price { font-size: 15px; }

  /* Reviews */
  .reviews-section { padding: 40px 16px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Footer */
  .footer-top { padding: 24px 12px; grid-template-columns: 0.85fr 2.4fr; gap: 12px; align-items: start; }
  .footer-cols { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .footer-col { gap: 8px; }
  .footer-col-title { font-size: 10.5px; }
  .footer-col a { font-size: 10px; line-height: 1.5; }
  .footer-contact-item { font-size: 10px; gap: 4px; }
  .footer-brand { text-align: left; }
  .footer-logo { font-size: 15px; margin-bottom: 8px; }
  .footer-tagline { font-size: 10.5px; max-width: 100%; line-height: 1.55; }
  .footer-social { margin-top: 10px; gap: 6px; }
  .footer-social a { width: 26px; height: 26px; font-size: 11px; }

  /* Trust */
  .trust-section { padding: 40px 16px; }
  .trust-title { font-size: 19px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — small phones (≤ 400px)
══════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .coupon-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .pack-body-name { font-size: 11px; }
  .pack-body-desc { display: none; }
  .btn-back { display: none; }
  .hero-title { font-size: 26px; }
  .header-inner { padding: 9px 12px; }
}
