/* ============================================================
   Winadda — winsadda.live
   "Violet Victory" design system
   Ubuntu (headings) + Heebo (body)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #6d28d9;
  --primary-light: #8b5cf6;
  --primary-lighter: #a78bfa;
  --primary-dark: #5b21b6;
  --secondary: #fbbf24;
  --secondary-dark: #f59e0b;
  --secondary-glow: rgba(251, 191, 36, 0.35);

  --bg-body: #faf5ff;
  --bg-dark: #1e1b4b;
  --bg-dark-2: #2a2560;
  --bg-dark-3: #322c72;
  --surface: #ffffff;
  --surface-alt: #f3e8ff;

  --text: #1e1b4b;
  --text-soft: #4b4577;
  --text-muted: #6b7280;
  --text-on-dark: #ede9fe;
  --text-on-dark-muted: #b4aede;

  --border: #e9d5ff;
  --border-dark: rgba(167, 139, 250, 0.25);

  --success: #22c55e;
  --danger: #ef4444;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(30, 27, 75, 0.08);
  --shadow: 0 12px 30px rgba(109, 40, 217, 0.12);
  --shadow-lg: 0 24px 60px rgba(30, 27, 75, 0.22);
  --shadow-amber: 0 12px 28px rgba(251, 191, 36, 0.35);

  --grad-violet: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
  --grad-hero: radial-gradient(1200px 600px at 80% -10%, #4c1d95 0%, transparent 55%),
               radial-gradient(900px 500px at 0% 20%, #3b1d7a 0%, transparent 50%),
               linear-gradient(160deg, #1e1b4b 0%, #2a1065 100%);
  --grad-amber: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

  --font-head: 'Ubuntu', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Heebo', 'Segoe UI', system-ui, sans-serif;

  --wrap: 1180px;
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-body);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 17px;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-sm { padding: clamp(40px, 6vw, 70px) 0; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); background: var(--surface-alt);
  padding: 7px 16px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--secondary); background: rgba(251, 191, 36, 0.12); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; margin-top: 12px; }
.on-dark .section-head p, .section-head.on-dark p { color: var(--text-on-dark-muted); }
.lead { font-size: 1.15rem; color: var(--text-soft); }
.highlight { color: var(--primary); }
.highlight-amber {
  background: var(--grad-amber);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: var(--radius-pill);
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-violet); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 40px rgba(109, 40, 217, 0.35); }
.btn-amber { background: var(--grad-amber); color: #3b2c00; box-shadow: var(--shadow-amber); }
.btn-amber:hover { color: #3b2c00; transform: translateY(-3px); box-shadow: 0 18px 42px rgba(251, 191, 36, 0.5); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { color: #fff; background: var(--primary); transform: translateY(-3px); }
.btn-lg { padding: 17px 36px; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { color: #fff; background: #1fb457; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.4); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(30, 27, 75, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 30px; width: auto; }
.brand-fallback { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: #fff; }
.brand-fallback span { color: #22d3ee; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--text-on-dark); font-weight: 500; font-size: .97rem;
  padding: 9px 15px; border-radius: var(--radius-pill); transition: all .18s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(139, 92, 246, 0.28); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg-dark); padding: 16px 20px 26px;
    border-bottom: 1px solid var(--border-dark);
    transform: translateY(-140%); transition: transform .32s ease;
    box-shadow: var(--shadow-lg); max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav-cta .btn-desktop-only { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--grad-hero); color: #fff;
  padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 30px 30px; opacity: .5; pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; }
.hero-orb.a { width: 340px; height: 340px; background: #8b5cf6; top: -80px; right: -60px; }
.hero-orb.b { width: 300px; height: 300px; background: var(--secondary); bottom: -100px; left: -70px; opacity: .28; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .highlight-amber { display: inline-block; }
.hero p.lead { color: var(--text-on-dark-muted); max-width: 560px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: var(--text-on-dark-muted); font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--secondary); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(251, 191, 36, 0.12); border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--secondary); font-weight: 600; font-size: .9rem;
  padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 24px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 0 var(--secondary-glow); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 var(--secondary-glow);} 70%{box-shadow:0 0 0 12px rgba(251,191,36,0);} 100%{box-shadow:0 0 0 0 rgba(251,191,36,0);} }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-card-head h3 { color: #fff; font-size: 1.15rem; }
.hero-live { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; color: #fff; background: rgba(34,197,94,.2); padding: 5px 12px; border-radius: var(--radius-pill); }
.hero-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse-g 1.5s infinite; }
@keyframes pulse-g { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.hero-stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
.hero-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 16px; }
.hero-stat .num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--secondary); }
.hero-stat .lbl { font-size: .82rem; color: var(--text-on-dark-muted); }
.hero-mini-list { display: flex; flex-direction: column; gap: 10px; }
.hero-mini { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: 10px 14px; font-size: .92rem; color: var(--text-on-dark); }
.hero-mini img { width: 44px; height: 30px; object-fit: cover; border-radius: 6px; }
.hero-mini .tag { margin-left: auto; font-size: .74rem; color: var(--secondary); font-weight: 600; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
}

/* ---------- Wave / divider ---------- */
.wave-top { display: block; width: 100%; height: auto; margin-bottom: -6px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg-dark-2); padding: 22px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-grid .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--secondary); }
.trust-grid .lbl { font-size: .85rem; color: var(--text-on-dark-muted); }
@media (max-width: 620px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

/* ---------- Generic cards & grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary-lighter); }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--surface-alt); color: var(--primary); margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.amber { background: rgba(251,191,36,.15); color: var(--secondary-dark); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: .98rem; }

/* Feature list with checks */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .ico { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(34,197,94,.15); color: var(--success); display: grid; place-items: center; margin-top: 2px; }
.check-list .ico svg { width: 14px; height: 14px; }
.check-list strong { display: block; color: var(--text); }
.check-list span { color: var(--text-muted); font-size: .95rem; }

/* ---------- Games showcase ---------- */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .games-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.game-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.game-card img { width: 100%; aspect-ratio: 600/315; object-fit: cover; }
.game-card .game-body { padding: 18px 20px 22px; background: var(--surface); }
.game-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.game-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 14px; }
.game-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(30,27,75,.82); color: var(--secondary); backdrop-filter: blur(4px);
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
}

/* ---------- Steps / How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 780px){ .steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 16px;
  background: var(--grad-violet); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: .96rem; }

/* ============================================================
   INTERACTIVE TOOLS
   ============================================================ */
.tool {
  background: var(--grad-hero); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden; border: 1px solid var(--border-dark);
}
.tool::before {
  content:""; position:absolute; width:260px; height:260px; border-radius:50%;
  background: var(--primary-light); filter: blur(90px); opacity:.35; top:-90px; right:-60px; pointer-events:none;
}
.tool-inner { position: relative; z-index: 2; }
.tool-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.tool-head .badge { display:inline-flex; align-items:center; gap:7px; background: rgba(251,191,36,.14); color: var(--secondary); font-weight:700; font-size:.75rem; letter-spacing:.08em; text-transform:uppercase; padding:6px 13px; border-radius: var(--radius-pill); }
.tool h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.tool .tool-sub { color: var(--text-on-dark-muted); margin-bottom: 26px; max-width: 640px; }
.tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
@media (max-width: 820px){ .tool-grid { grid-template-columns: 1fr; gap: 24px; } }

.tool-panel { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 22px; }
.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field label { display: flex; justify-content: space-between; font-size: .9rem; color: var(--text-on-dark); margin-bottom: 8px; font-weight: 500; }
.field label .val { color: var(--secondary); font-weight: 700; font-family: var(--font-head); }
.field input[type="range"] { width: 100%; -webkit-appearance: none; appearance: none; height: 7px; border-radius: 5px; background: rgba(255,255,255,.18); outline: none; }
.field input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--secondary); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.35); border: 3px solid #fff; }
.field input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--secondary); cursor: pointer; border: 3px solid #fff; }
.field input[type="number"], .field input[type="text"], .field select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff;
}
.field input::placeholder { color: rgba(255,255,255,.4); }

/* Win Probability Visualizer */
.wpv-chart-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.wpv-donut { position: relative; width: 210px; height: 210px; }
.wpv-donut svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.wpv-center { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.wpv-center .big { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: #fff; line-height: 1; }
.wpv-center .small { font-size: .78rem; color: var(--text-on-dark-muted); }
.wpv-legend { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.wpv-legend span { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; color: var(--text-on-dark); }
.wpv-legend .sw { width: 13px; height: 13px; border-radius: 4px; }
.result-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 4px; }
.result-box { background: rgba(255,255,255,.06); border-radius: var(--radius-sm); padding: 14px; text-align: center; }
.result-box .rb-val { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; }
.result-box .rb-lbl { font-size: .78rem; color: var(--text-on-dark-muted); }
.rb-pos { color: var(--success); } .rb-neg { color: #fca5a5; }

/* Adda Chat Simulator */
.chat-window { background: rgba(15,12,45,.55); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; height: 380px; }
.chat-header { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.1); }
.chat-header .avatar-stack { display: flex; }
.chat-header .avatar-stack span { width: 26px; height: 26px; border-radius: 50%; margin-left: -8px; border: 2px solid var(--bg-dark); display: grid; place-items: center; font-size: .7rem; font-weight: 700; color: #fff; }
.chat-header .ch-title { font-weight: 600; font-size: .95rem; }
.chat-header .ch-online { margin-left: auto; font-size: .78rem; color: var(--success); display: inline-flex; align-items: center; gap: 6px; }
.chat-header .ch-online .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth; }
.chat-body::-webkit-scrollbar { width: 6px; }
.chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 3px; }
.chat-msg { display: flex; gap: 10px; align-items: flex-start; animation: msgIn .35s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg .av { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-weight: 700; font-size: .82rem; color: #fff; }
.chat-msg .bubble { background: rgba(255,255,255,.08); border-radius: 4px 14px 14px 14px; padding: 9px 13px; max-width: 78%; }
.chat-msg .bubble .name { font-size: .78rem; font-weight: 700; margin-bottom: 2px; }
.chat-msg .bubble .txt { font-size: .92rem; color: var(--text-on-dark); line-height: 1.4; }
.chat-msg.win .bubble { background: rgba(34,197,94,.16); }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); }
.chat-input input { flex: 1; }
.chat-input button { flex-shrink: 0; padding: 10px 18px; }

/* Streak Multiplier Game */
.streak-stage { text-align: center; }
.streak-multiplier { font-family: var(--font-head); font-weight: 700; font-size: clamp(3.4rem, 12vw, 5.5rem); line-height: 1; transition: color .2s, transform .2s; color: var(--secondary); text-shadow: 0 0 40px var(--secondary-glow); }
.streak-multiplier.crashed { color: var(--danger); text-shadow: 0 0 40px rgba(239,68,68,.5); animation: shake .4s; }
.streak-multiplier.cashed { color: var(--success); text-shadow: 0 0 40px rgba(34,197,94,.5); }
@keyframes shake { 0%,100%{transform:translateX(0);} 20%{transform:translateX(-10px);} 40%{transform:translateX(10px);} 60%{transform:translateX(-7px);} 80%{transform:translateX(7px);} }
.streak-status { min-height: 26px; color: var(--text-on-dark-muted); margin: 10px 0 22px; font-size: .98rem; }
.streak-status strong { color: var(--secondary); }
.streak-controls { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.streak-meta { display: flex; justify-content: center; gap: 30px; margin-top: 22px; }
.streak-meta div { text-align: center; }
.streak-meta .m-val { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: #fff; }
.streak-meta .m-lbl { font-size: .78rem; color: var(--text-on-dark-muted); }
.streak-bar-track { height: 8px; background: rgba(255,255,255,.12); border-radius: 5px; margin: 20px 0 6px; overflow: hidden; }
.streak-bar-fill { height: 100%; width: 0; background: var(--grad-amber); border-radius: 5px; transition: width .3s ease; }
.streak-hint { font-size: .82rem; color: var(--text-on-dark-muted); }

.tool-disclaimer { margin-top: 22px; font-size: .82rem; color: var(--text-on-dark-muted); text-align: center; opacity: .85; }

/* ---------- Split feature (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse .split-media { order: 0; } }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media.card-media { background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 10px; box-shadow: var(--shadow); }

/* ---------- Callout / CTA band ---------- */
.cta-band { background: var(--grad-violet); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(500px 200px at 50% 0%, rgba(251,191,36,.25), transparent 70%); pointer-events:none; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 620px; margin: 14px auto 26px; position: relative; font-size: 1.1rem; }
.cta-band .hero-cta { justify-content: center; position: relative; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--primary-lighter); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; padding: 20px 22px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.faq-q .icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--surface-alt); color: var(--primary); display: grid; place-items: center; transition: transform .28s ease, background .2s; font-size: 1.2rem; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--text-muted); }

/* ---------- Auth pages (login / signup) ---------- */
.auth-wrap { display: grid; grid-template-columns: 1.05fr .95fr; min-height: calc(100vh - var(--nav-h)); }
@media (max-width: 900px){ .auth-wrap { grid-template-columns: 1fr; } .auth-aside { display: none; } }
.auth-aside { background: var(--grad-hero); color: #fff; padding: clamp(40px, 6vw, 70px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.auth-aside::before { content:""; position:absolute; width:300px; height:300px; border-radius:50%; background: var(--primary-light); filter: blur(90px); opacity:.4; top:-70px; left:-40px; }
.auth-aside .inner { position: relative; z-index: 2; max-width: 440px; }
.auth-aside h2 { color: #fff; margin-bottom: 16px; }
.auth-aside p { color: var(--text-on-dark-muted); margin-bottom: 26px; }
.auth-form-side { display: flex; align-items: center; justify-content: center; padding: clamp(32px, 5vw, 60px) 20px; }
.auth-card { width: 100%; max-width: 440px; }
.auth-card h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 8px; }
.auth-card > p.sub { color: var(--text-muted); margin-bottom: 28px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: var(--text); }
.form-control {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; color: var(--text); transition: border-color .18s, box-shadow .18s;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(109,40,217,.12); }
.form-input-wrap { position: relative; }
.form-input-wrap .toggle-pass { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); padding: 4px; }
.form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: .9rem; flex-wrap: wrap; gap: 8px; }
.checkbox { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); cursor: pointer; }
.checkbox input { width: 17px; height: 17px; accent-color: var(--primary); }
.form-note { text-align: center; margin-top: 22px; color: var(--text-muted); font-size: .95rem; }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--text-muted); font-size: .85rem; }
.auth-divider::before, .auth-divider::after { content:""; flex:1; height:1px; background: var(--border); }
.form-msg { display:none; padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: .92rem; }
.form-msg.show { display: block; }
.form-msg.success { background: rgba(34,197,94,.12); color: #15803d; border: 1px solid rgba(34,197,94,.3); }
.field-error { color: var(--danger); font-size: .82rem; margin-top: 5px; display: none; }
.form-control.invalid { border-color: var(--danger); }

/* ---------- Content / legal pages ---------- */
.page-hero { background: var(--grad-hero); color: #fff; padding: clamp(46px, 7vw, 80px) 0 clamp(46px,7vw,72px); position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 30px 30px; opacity:.5; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: var(--text-on-dark-muted); max-width: 640px; margin-inline: auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: .88rem; color: var(--text-on-dark-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--secondary); }
.breadcrumb span { opacity: .6; }

.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { margin: 40px 0 14px; }
.prose h3 { margin: 28px 0 10px; }
.prose p { color: var(--text-soft); margin-bottom: 16px; }
.prose ul { margin: 0 0 18px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--text-soft); }
.prose ul li::before { content:""; position:absolute; left:6px; top:10px; width:8px; height:8px; border-radius:50%; background: var(--primary); }
.prose ol { margin: 0 0 18px; padding-left: 22px; color: var(--text-soft); }
.prose ol li { margin-bottom: 10px; padding-left: 6px; }
.prose a { color: var(--primary); font-weight: 600; text-decoration: underline; }
.prose strong { color: var(--text); }
.toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 34px; }
.toc h4 { font-family: var(--font-head); margin-bottom: 12px; }
.toc ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 20px; }
.toc ul li { padding-left: 0; }
.toc a { color: var(--text-soft); font-weight: 500; text-decoration: none; }
.toc a:hover { color: var(--primary); }
@media (max-width: 600px){ .toc ul { grid-template-columns: 1fr; } }

.info-card { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; margin: 24px 0; }
.info-card.warn { background: rgba(251,191,36,.1); border-color: rgba(251,191,36,.4); }
.info-card h4 { font-family: var(--font-head); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }

.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 30px 0; }
@media (max-width: 780px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-card { text-align: center; }
.contact-card .card-icon { margin-inline: auto; }

/* ---------- APK / download specifics ---------- */
.apk-box { background: var(--surface); border: 2px dashed var(--primary-lighter); border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 26px; align-items: center; flex-wrap: wrap; box-shadow: var(--shadow); }
.apk-box .apk-logo { width: 88px; height: 88px; border-radius: 20px; background: var(--grad-violet); display: grid; place-items: center; box-shadow: var(--shadow); flex-shrink: 0; }
.apk-box .apk-logo svg { width: 46px; height: 46px; color: #fff; }
.apk-box .apk-info { flex: 1; min-width: 220px; }
.apk-box .apk-info h3 { margin-bottom: 4px; }
.apk-box .apk-info .meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--text-muted); font-size: .88rem; margin-top: 8px; }
.apk-box .apk-info .meta span { display: inline-flex; align-items: center; gap: 6px; }
.apk-specs { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 28px 0; }
@media (max-width: 700px){ .apk-specs { grid-template-columns: repeat(2,1fr); } }
.apk-spec { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; }
.apk-spec .s-val { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--primary); }
.apk-spec .s-lbl { font-size: .8rem; color: var(--text-muted); }

/* ---------- Pro / pricing ---------- */
.pro-badge-hero { display:inline-flex; align-items:center; gap:8px; background: var(--grad-amber); color:#3b2c00; font-family: var(--font-head); font-weight:700; padding:8px 18px; border-radius: var(--radius-pill); margin-bottom: 20px; box-shadow: var(--shadow-amber); }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table thead th { background: var(--bg-dark); color: #fff; font-family: var(--font-head); }
.compare-table thead th.pro-col { background: var(--primary); }
.compare-table td.center, .compare-table th.center { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--surface-alt); }
.compare-table .yes { color: var(--success); font-weight: 700; }
.compare-table .no { color: var(--text-muted); }
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: var(--text-on-dark-muted); padding: 60px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border-dark); }
@media (max-width: 820px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: .95rem; max-width: 340px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--font-head); color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-on-dark-muted); font-size: .95rem; }
.footer-col a:hover { color: var(--secondary); }
.age-badge { display:inline-flex; align-items:center; gap:8px; background: rgba(239,68,68,.15); border:1px solid rgba(239,68,68,.35); color:#fca5a5; font-weight:700; padding:6px 14px; border-radius: var(--radius-pill); font-size:.85rem; margin-bottom: 14px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .88rem; }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-disclaimer { font-size: .82rem; opacity: .7; margin-top: 18px; line-height: 1.6; max-width: 100%; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.5); transition: transform .2s; animation: float 3s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes float { 0%,100%{transform: translateY(0);} 50%{transform: translateY(-7px);} }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-0{margin-bottom:0}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.hidden { display: none !important; }
.divider-line { height: 1px; background: var(--border); margin: 40px 0; }
