/* ============================================================
   TEEN PATTI MASTER — PREMIUM THEME UPGRADE
   Full override layer — loaded after style.css
   ============================================================ */

/* ── NEW design tokens ─────────────────────────────────── */
:root {
  --gold:        #D4AF37;
  --gold-bright: #F0D060;
  --gold-dim:    #A88810;
  --gold-glow:   rgba(212,175,55,0.55);
  --purple:      rgb(90,30,115);
  --purple-mid:  rgb(110,40,140);
  --bg-black:    #070310;
  --bg-deep:     #050212;
  --bg-plum:     #0C0520;
  --bg-card:     rgba(255,255,255,0.03);
  --border-gold: rgba(212,175,55,0.22);
  --border-glow: rgba(212,175,55,0.55);
  --text-dim:    rgba(255,255,255,0.62);
  --text-faint:  rgba(255,255,255,0.38);
  --radius-xl:   28px;
  --radius-lg:   20px;
  --radius-md:   14px;
  --radius-sm:   10px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-gold: 0 0 40px rgba(212,175,55,0.35), 0 4px 20px rgba(0,0,0,0.5);
  --transition:  all 0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ── Global base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-black);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(90,30,115,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212,175,55,0.06) 0%, transparent 55%);
  background-attachment: fixed;
  font-family: 'Inter', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* ── Gold gradient text utility ────────────────────────── */
.gold-text {
  background: linear-gradient(135deg, #FFF5A0 0%, #F0D060 25%, #D4AF37 55%, #8A6A0A 80%, #D4AF37 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 18px rgba(212,175,55,0.3));
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION — glassmorphism premium
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,2,18,0.82);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 0 rgba(212,175,55,0.1) inset;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(4,1,14,0.95);
  box-shadow: 0 4px 60px rgba(0,0,0,0.8), 0 1px 0 rgba(212,175,55,0.15) inset;
}
.nav .wrap { height: 68px; }
@media(max-width:767px){ .nav .wrap { height: 60px; } }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1.5px solid rgba(212,175,55,0.45);
  box-shadow: 0 0 12px rgba(212,175,55,0.3);
  transition: box-shadow 0.3s ease;
}
.brand:hover .brand-mark { box-shadow: 0 0 22px rgba(212,175,55,0.6); }
.brand span {
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 16px;
  background: linear-gradient(135deg, #F0D060, #D4AF37, #A88810);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; letter-spacing: 0.04em;
  white-space: nowrap;
}
@media(max-width:480px){ .brand span { font-size: 13px; } }

.nav-links { gap: 22px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.72);
  letter-spacing: 0.03em; padding: 4px 0; position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--gold); transform: scaleX(0);
  transform-origin: center; transition: transform 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Nav CTA */
.nav-cta .btn-gold {
  border-radius: 999px; padding: 9px 22px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; white-space: nowrap;
  background: linear-gradient(135deg, #F0D060 0%, #D4AF37 50%, #A88810 100%);
  color: #07030f; box-shadow: 0 0 20px rgba(212,175,55,0.4), 0 3px 10px rgba(0,0,0,0.4);
  border: 1px solid rgba(240,208,96,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta .btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(212,175,55,0.65), 0 6px 20px rgba(0,0,0,0.5);
}

/* Mobile menu */
.mobile-menu {
  background: rgba(4,1,14,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 12px 20px 20px;
}
.mobile-menu a {
  font-size: 14px; color: rgba(255,255,255,0.75); padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-gold { margin-top: 12px; border-radius: 12px; width: 100%; justify-content: center; }

/* Nav toggle */
.nav-toggle span {
  background: var(--gold); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ══════════════════════════════════════════════════════════
   BUTTONS — premium multi-style
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 12px; padding: 14px 28px;
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.05em; cursor: pointer; border: 1px solid transparent;
  transition: var(--transition); position: relative; overflow: hidden;
  white-space: nowrap; text-decoration: none;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, #FFF5A0 0%, #F0D060 20%, #D4AF37 55%, #8A6A0A 85%, #D4AF37 100%);
  color: #07030f;
  box-shadow: 0 0 0 1px rgba(240,208,96,0.4), 0 6px 28px rgba(212,175,55,0.5), 0 2px 8px rgba(0,0,0,0.4);
  text-shadow: 0 1px 2px rgba(255,255,255,0.2);
}
.btn-gold:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 0 1px rgba(240,208,96,0.7), 0 10px 40px rgba(212,175,55,0.7), 0 4px 16px rgba(0,0,0,0.5);
}
.btn-gold:active { transform: translateY(0) scale(0.99); }

.btn-ghost {
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.06);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px); font-family: 'Inter', sans-serif; font-weight: 600;
}
.btn-ghost:hover {
  border-color: rgba(212,175,55,0.6);
  background: rgba(212,175,55,0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212,175,55,0.15);
}
.btn-pill {
  border-radius: 999px; padding: 8px 18px; font-size: 12px;
  background: linear-gradient(135deg, #D4AF37, #A88810); color: #07030f;
  font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0.04em;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(212,175,55,0.4); }

/* ══════════════════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold); margin-bottom: 14px;
  box-shadow: 0 0 12px rgba(212,175,55,0.12) inset;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 {
  font-family: 'Cinzel', serif; font-weight: 900;
  font-size: clamp(26px,4vw,38px); margin-bottom: 14px; line-height: 1.2;
}
.section-head p { color: var(--text-faint); font-size: 15px; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   SECTIONS — backgrounds
   ══════════════════════════════════════════════════════════ */
.section { padding: 88px 0; position: relative; }
.section--black { background: transparent; }
.section--fade-plum {
  background: linear-gradient(180deg, transparent 0%, rgba(13,5,32,0.7) 40%, rgba(13,5,32,0.7) 60%, transparent 100%);
}
.section--fade-back {
  background: linear-gradient(180deg, rgba(13,5,32,0.5) 0%, transparent 100%);
}
@media(max-width:639px){ .section { padding: 56px 0; } }

/* ══════════════════════════════════════════════════════════
   HERO — index.html
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; overflow: hidden;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(90,30,115,0.5) 0%, transparent 55%),
              radial-gradient(ellipse 70% 50% at 20% 80%, rgba(212,175,55,0.06) 0%, transparent 50%),
              var(--bg-deep);
}
/* Animated mesh background */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(90,30,115,0.3) 0%, transparent 45%),
    radial-gradient(circle at 75% 65%, rgba(212,175,55,0.07) 0%, transparent 40%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  0%  { opacity: 0.6; transform: scale(1); }
  100%{ opacity: 1;   transform: scale(1.04); }
}
.hero-glow-line {
  position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%);
  width: 65%; height: 1px; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), rgba(212,175,55,0.55), rgba(212,175,55,0.25), transparent);
  filter: blur(2px);
  animation: glowPulse 3s ease-in-out infinite alternate;
}
@keyframes glowPulse { 0%{ opacity:.4; } 100%{ opacity:1; } }

/* Hero badge */
.badge-live {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  background: rgba(90,30,115,0.6);
  border: 1px solid rgba(212,175,55,0.3); color: rgba(224,192,96,1);
  backdrop-filter: blur(8px);
}
.badge-live::before { content:''; width:6px; height:6px; border-radius:50%; background:#f04; animation:blink 1.2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

/* Hero headline */
.hero h1 .line1 {
  display: block;
  background: linear-gradient(140deg, #FFF8C0 0%, #F5E080 15%, #D4AF37 45%, #8A6A0A 75%, #D4AF37 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(212,175,55,0.45));
  line-height: 1.0;
}
.hero h1 .line2 {
  display: block; color: #fff; line-height: 1.05; margin-top: 4px;
  text-shadow: 0 0 60px rgba(90,30,115,0.9), 0 2px 4px rgba(0,0,0,0.8);
}

/* Hero chip */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 8px; font-size: 11.5px; font-weight: 500;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.78);
  transition: border-color 0.2s, background 0.2s;
}
.chip:hover { border-color: rgba(212,175,55,0.35); background: rgba(212,175,55,0.08); }

/* Stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 56px; }
@media(min-width:768px){ .stat-strip{ grid-template-columns: repeat(4,1fr); } }
.stat-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 22px 16px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(212,175,55,0.16);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.stat-card:hover {
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-4px);
  background: rgba(212,175,55,0.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.12);
}
.stat-card .num {
  font-family: 'Cinzel', serif; font-weight: 900; font-size: clamp(22px,3vw,30px);
  background: linear-gradient(135deg, #F0D060, #D4AF37); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-card .label { font-size: 11px; color: var(--text-faint); margin-top: 4px; letter-spacing: 0.03em; }
.stat-card .ico { font-size: 26px; margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════════
   CARDS — feature / mode / testi / blog
   ══════════════════════════════════════════════════════════ */

/* Glass card base */
.glass-card {
  background: rgba(255,255,255,0.028);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(16px) saturate(1.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}
.glass-card:hover {
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.1);
}

/* Feature cards */
.feature-card {
  padding: 28px 24px; border-radius: var(--radius-lg); cursor: default;
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(212,175,55,0.16);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.35), transparent);
}
.feature-card:hover {
  border-color: rgba(212,175,55,0.5);
  transform: translateY(-6px);
  background: rgba(212,175,55,0.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 25px rgba(212,175,55,0.12);
}
.feature-card .ico { font-size: 36px; margin-bottom: 16px; display: block; }
.feature-card h3 {
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 15px;
  color: var(--gold); margin-bottom: 10px;
}
.feature-card p { font-size: 13.5px; color: var(--text-dim); line-height: 1.65; }

/* Mode cards */
.mode-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.mode-card::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.1) 0%, transparent 65%);
  transition: opacity 0.4s;
}
.mode-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,0.5); }
.mode-card:hover::after { opacity: 1; }
.mode-1 { background: linear-gradient(145deg, rgba(90,30,115,0.2), rgba(10,5,20,0.85)); }
.mode-2 { background: linear-gradient(145deg, rgba(30,72,115,0.2), rgba(10,5,20,0.85)); }
.mode-3 { background: linear-gradient(145deg, rgba(115,30,30,0.2), rgba(10,5,20,0.85)); }

/* Testimonial cards */
.testi-card {
  padding: 26px 24px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(212,175,55,0.16);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"'; position: absolute; top: 10px; right: 18px;
  font-size: 80px; font-family: Georgia, serif; color: rgba(212,175,55,0.06);
  line-height: 1; pointer-events: none;
}
.testi-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); }
.stars { color: #F0D060; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-card p.quote { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff;
  box-shadow: 0 0 12px rgba(212,175,55,0.3);
}
.testi-name { font-size: 14px; font-weight: 700; color: #fff; }
.testi-loc { font-size: 11px; color: var(--text-faint); margin-top: 2px; }

/* Blog cards */
.blog-card {
  display: flex; flex-direction: column; padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(212,175,55,0.16);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: var(--transition); position: relative; overflow: hidden;
}
.blog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
  transform: scaleX(0); transform-origin: center; transition: transform 0.4s ease;
}
.blog-card:hover { border-color: rgba(212,175,55,0.48); transform: translateY(-6px); background: rgba(212,175,55,0.035); }
.blog-card:hover::before { transform: scaleX(1); }
.blog-card h3 { font-size: 15px; line-height: 1.5; color: #fff; margin-bottom: 10px; }
.blog-card p { font-size: 13px; color: var(--text-dim); line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-more { color: var(--gold); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.blog-more:hover { gap: 10px; }

/* Step cards */
.step-card {
  flex: 1; padding: 22px 24px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(212,175,55,0.18);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.step-card:hover { border-color: rgba(212,175,55,0.45); transform: translateY(-3px); background: rgba(212,175,55,0.04); }
.step-num {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 14px; color: #07030f;
  background: linear-gradient(135deg, #F0D060, #D4AF37, #A88810);
  box-shadow: 0 0 20px rgba(212,175,55,0.45), 0 4px 12px rgba(0,0,0,0.4); z-index: 1;
}
.step-card .ttl { font-family: 'Cinzel', serif; font-weight: 700; font-size: 13px; color: var(--gold); margin-bottom: 6px; }
.step-card .desc { font-size: 13px; color: var(--text-dim); line-height: 1.65; }
.step-card .ico { font-size: 26px; margin-bottom: 10px; }

/* Icon cards */
.icon-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 18px 14px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(212,175,55,0.14);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.icon-card:hover { border-color: rgba(212,175,55,0.45); transform: translateY(-4px); background: rgba(212,175,55,0.05); }
.icon-card .ico { font-size: 26px; margin-bottom: 9px; }
.icon-card .label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.78); }

/* ══════════════════════════════════════════════════════════
   FAQ — premium accordion
   ══════════════════════════════════════════════════════════ */
.faq-item {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid rgba(212,175,55,0.16);
  background: rgba(255,255,255,0.022);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover { border-color: rgba(212,175,55,0.35); }
.faq-item.open {
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 4px 24px rgba(212,175,55,0.1);
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 17px 20px; text-align: left; cursor: pointer;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.faq-item.open .faq-q { color: var(--gold); }
.faq-q .plus {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 16px; transition: transform 0.3s ease, background 0.3s;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg); background: rgba(212,175,55,0.2);
}
.faq-a p { padding: 0 20px 16px; font-size: 13.5px; color: var(--text-dim); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   DOWNLOAD PANEL
   ══════════════════════════════════════════════════════════ */
.download-panel { position: relative; overflow: hidden; }
.download-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(90,30,115,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.download-box {
  position: relative; z-index: 1; max-width: 820px; margin: 0 auto;
  text-align: center; padding: 64px 36px; border-radius: 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(212,175,55,0.28);
  backdrop-filter: blur(24px);
  box-shadow: 0 0 80px rgba(90,30,115,0.25), 0 1px 0 rgba(255,255,255,0.05) inset,
              0 20px 60px rgba(0,0,0,0.5);
}
.download-box::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent);
}
.download-box .crown { font-size: 48px; margin-bottom: 20px; display: block; filter: drop-shadow(0 0 20px rgba(212,175,55,0.5)); }
.download-box h2 {
  font-family: 'Cinzel Decorative', 'Cinzel', serif; font-weight: 900;
  font-size: clamp(24px,5vw,40px); color: var(--gold); margin-bottom: 14px; line-height: 1.15;
}
.download-box > p { color: var(--text-dim); font-size: 15px; max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.download-cta {
  display: inline-flex; flex-direction: column; align-items: center; gap: 3px;
  border-radius: 16px; padding: 5px 25px; text-decoration: none;
  background: linear-gradient(135deg, #FFF5A0 0%, #F0D060 20%, #D4AF37 55%, #8A6A0A 85%, #D4AF37 100%);
  color: #07030f;
  box-shadow: 0 0 40px rgba(212,175,55,0.6), 0 8px 32px rgba(0,0,0,0.5),
              0 1px 0 rgba(255,255,255,0.3) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.download-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 60px rgba(212,175,55,0.8), 0 14px 40px rgba(0,0,0,0.6); }
.download-cta .top { font-family: 'Cinzel', serif; font-weight: 900; font-size: 17px; }
.download-cta .bottom { font-size: 12px; opacity: 0.7; font-family: 'Inter', sans-serif; }
.apk-meta {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
  max-width: 480px; margin: 28px auto 0;
}
@media(min-width:640px){ .apk-meta{ grid-template-columns: repeat(4,1fr); } }
.apk-meta div {
  padding: 12px; border-radius: 10px; text-align: center;
  background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.14);
}
.apk-meta .k { font-size: 10px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.apk-meta .v { font-family: 'Cinzel', serif; font-weight: 700; color: var(--gold); font-size: 13px; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (sub-pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative; padding: 140px 0 64px; text-align: center;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(90,30,115,0.4) 0%, transparent 60%),
              var(--bg-deep);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
}
.page-hero--img {
  background-size: cover; background-position: center; background-repeat: no-repeat;
  min-height: 360px;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(5,2,18,0.9) 0%, rgba(13,5,32,0.82) 50%, rgba(5,2,18,0.93) 100%);
}
.page-hero h1 {
  font-family: 'Cinzel Decorative', 'Cinzel', serif; font-weight: 900;
  font-size: clamp(26px,5vw,48px); color: var(--gold); margin-bottom: 14px;
  text-shadow: 0 0 40px rgba(212,175,55,0.4);
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.3));
}
.page-hero p { color: var(--text-dim); font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
@media(max-width:639px){
  .page-hero { padding: 108px 0 44px; min-height: auto; }
  .page-hero h1 { font-size: clamp(20px,7vw,32px); }
}

/* ══════════════════════════════════════════════════════════
   DISCLAIMER / INFO BLOCKS
   ══════════════════════════════════════════════════════════ */
.disclaimer-box {
  margin-top: 36px; padding: 18px 22px; border-radius: 14px;
  font-size: 13px; color: var(--text-faint); line-height: 1.75;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.14);
}
.disclaimer-box strong { color: rgba(255,255,255,0.75); }

.callout {
  padding: 16px 20px; border-radius: 12px; margin: 18px 0;
  font-size: 14px; color: var(--text-dim); line-height: 1.7;
  background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.18);
}
.callout.warn {
  background: rgba(198,60,60,0.07); border-color: rgba(198,60,60,0.28);
  color: rgba(255,200,200,0.75);
}
.callout strong { color: #fff; }

/* Info grid */
.info-card {
  padding: 22px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(212,175,55,0.14);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.info-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-3px); }
.info-card .ico { font-size: 24px; margin-bottom: 10px; }
.info-card h4 { font-family: 'Cinzel', serif; color: var(--gold); font-size: 13px; margin-bottom: 6px; font-weight: 700; }
.info-card p { font-size: 13px; color: var(--text-dim); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════════════════ */
.form-card {
  padding: 32px; border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(212,175,55,0.18);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}
.field label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(212,175,55,0.9); margin-bottom: 7px; display: block; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.2); color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.field input:focus, .field textarea:focus {
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.28); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: rgba(4,1,12,0.98);
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 64px 0 28px;
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.35), transparent);
}
.footer-brand p { font-size: 13px; color: var(--text-faint); margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Cinzel', serif; color: var(--gold); font-size: 12px; margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col a { font-size: 13px; color: var(--text-faint); transition: color 0.2s; display: block; margin-bottom: 9px; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-col ul { gap: 0; }
.footer-bottom {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
}
@media(min-width:640px){ .footer-bottom{ flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 12px; color: var(--text-faint); }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.reveal.left  { transform: translateX(-28px); }
.reveal.right { transform: translateX(28px); }
.reveal.in    { opacity: 1; transform: none; }
@media(prefers-reduced-motion:reduce){ .reveal { opacity:1; transform:none; transition:none; } }
@media(max-width:479px){ .reveal { opacity:1; transform:none; transition:none; } }

/* ══════════════════════════════════════════════════════════
   FLOATING CROWN ANIMATION
   ══════════════════════════════════════════════════════════ */
.hv-crown, .crown-float { animation: floatCrown 4s ease-in-out infinite; }
@keyframes floatCrown {
  0%,100%{ transform: translateY(0) rotate(-2deg); }
  50%    { transform: translateY(-14px) rotate(2deg); }
}

/* ══════════════════════════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,0.55); }

/* ══════════════════════════════════════════════════════════
   PROSE (legal pages)
   ══════════════════════════════════════════════════════════ */
.prose h2 { color: var(--gold); font-size: 19px; margin: 32px 0 10px; font-family: 'Cinzel', serif; }
.prose h3 { color: #fff; font-size: 15px; margin: 20px 0 8px; font-family: 'Cinzel', serif; }
.prose p  { color: var(--text-dim); font-size: 14.5px; line-height: 1.85; margin-bottom: 12px; }
.prose li { color: var(--text-dim); font-size: 14.5px; line-height: 1.8; }

/* Selection */
::selection { background: rgba(212,175,55,0.25); color: #fff; }

/* Focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(212,175,55,0.6); outline-offset: 3px; border-radius: 4px;
}
