/* ═══════════════════════════════════════════════════════════════════════
   COMPARATORE NEON — Cyberpunk luxury, mobile-first conversion landing
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --bg-0: #050608;
  --bg-1: #0a0d14;
  --bg-2: #11151f;
  --bg-3: #1a2030;
  --line: rgba(120, 160, 220, 0.10);
  --line-2: rgba(120, 160, 220, 0.18);
  --line-glow: rgba(0, 229, 255, 0.35);

  --txt: #EAEEF7;
  --txt-2: #9AA5BC;
  --txt-3: #5F6A82;

  --cyan: #00E5FF;
  --cyan-soft: rgba(0, 229, 255, 0.5);
  --green: #00FF94;
  --violet: #A855F7;
  --gold: #FFB800;
  --red: #FF3D6E;

  --accent: var(--cyan);
  --accent-2: var(--violet);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-ui: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
html, body {
  background: var(--bg-0);
  color: var(--txt);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01", "cv11";
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button, a, .filter-pill, .chip { touch-action: manipulation; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer;
  user-select: none; }
.btn:active, .filter-pill:active {
  transform: scale(0.97); transition: transform 0.08s ease-out;
}
img { display: block; max-width: 100%; }

/* ═══ SCROLL PROGRESS BAR ═════════════════════════════════════════════ */
.scroll-prog {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 100; pointer-events: none;
  background: rgba(255,255,255,0.04);
}
.scroll-prog::after {
  content: ""; display: block; height: 100%; width: var(--p, 0%);
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--green));
  box-shadow: 0 0 12px var(--cyan-soft);
  transition: width 0.1s linear;
}

/* ═══ BACK TO TOP ═════════════════════════════════════════════════════ */
.back-top {
  position: fixed; bottom: calc(22px + env(safe-area-inset-bottom)); right: 18px;
  z-index: 35;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid var(--line-glow);
  color: var(--cyan); font-size: 20px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  opacity: 0; transform: translateY(20px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.back-top.is-on { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-top:active { transform: scale(0.9) !important; }

/* ═══ TRUST STRIP ═════════════════════════════════════════════════════ */
.trust-strip {
  margin: 18px 0 6px;
  padding: 14px 14px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.04), transparent 80%),
    rgba(255,255,255,0.02);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.trust-strip::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-soft), transparent);
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center; min-width: 0;
}
.trust-ic {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--line-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.15);
}
.trust-ic svg { display: block; }
.trust-t { font-size: 11.5px; font-weight: 700; color: var(--txt);
  letter-spacing: -0.005em; line-height: 1.15; }
.trust-s { font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.06em; color: var(--txt-3); text-transform: uppercase;
  line-height: 1.2; }

/* ═══ HERO SOCIAL PROOF ═══════════════════════════════════════════════ */
.hero-proof {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 7px 12px;
  background: rgba(255, 184, 0, 0.04);
  border: 1px solid rgba(255, 184, 0, 0.20);
  border-radius: 999px;
}
.hero-proof-stars {
  color: var(--gold); letter-spacing: 0.5px; font-size: 13px;
  text-shadow: 0 0 8px rgba(255, 184, 0, 0.5);
}
.hero-proof-text {
  font-size: 12px; color: var(--txt-2); font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.hero-proof-text b { color: var(--txt); font-weight: 600; }

/* ═══ CARD REVEAL ANIMATION ═══════════════════════════════════════════ */
@keyframes card-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cards .card { animation: card-reveal 0.7s cubic-bezier(.2,.7,.3,1) backwards; }
.cards .card:nth-child(1) { animation-delay: 60ms; }
.cards .card:nth-child(2) { animation-delay: 140ms; }
.cards .card:nth-child(3) { animation-delay: 220ms; }
.cards .card:nth-child(4) { animation-delay: 300ms; }
.cards .card:nth-child(5) { animation-delay: 380ms; }
.cards .card:nth-child(6) { animation-delay: 460ms; }
.calm .cards .card { animation: none; }

/* ═══ BACKGROUND ATMOSPHERE ═══════════════════════════════════════════ */
.bg-layer {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}

/* ─── Floating casino symbols ──────────────────────────────────────── */
.bg-symbols { position: absolute; inset: 0; overflow: hidden; }
.bg-symbols span {
  position: absolute;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--cyan-soft);
  text-shadow: 0 0 18px rgba(0, 229, 255, 0.18);
  opacity: 0.18;
  user-select: none;
  animation: drift 22s ease-in-out infinite alternate;
  will-change: transform;
}
.bg-symbols span:nth-child(odd) {
  -webkit-text-stroke-color: rgba(168, 85, 247, 0.45);
  text-shadow: 0 0 18px rgba(168, 85, 247, 0.18);
}
.bg-symbols span:nth-child(3n) {
  -webkit-text-stroke-color: rgba(0, 255, 148, 0.45);
  text-shadow: 0 0 18px rgba(0, 255, 148, 0.18);
}
@keyframes drift {
  0% { transform: translate(0, 0) rotate(-4deg); }
  100% { transform: translate(20px, -30px) rotate(8deg); }
}
.bg-aurora {
  position: absolute; inset: -30%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(0, 229, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(168, 85, 247, 0.22), transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 90%, rgba(0, 255, 148, 0.10), transparent 60%);
  filter: blur(40px);
  animation: aurora-drift 24s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-5%, 4%) rotate(8deg); }
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(120, 160, 220, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 160, 220, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 75%);
}
.bg-noise {
  position: absolute; inset: 0; opacity: 0.025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.particles { position: absolute; inset: 0; }
.particles span {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: var(--accent); opacity: 0;
  box-shadow: 0 0 8px var(--accent);
  animation: float-up 14s linear infinite;
}
@keyframes float-up {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-10vh) translateX(20px); opacity: 0; }
}

/* ═══ APP SHELL (mobile-first) ═══════════════════════════════════════ */
.app { position: relative; z-index: 1; max-width: 480px; margin: 0 auto;
  padding: 0 16px 120px; }
@media (min-width: 720px) { .app { max-width: 520px; padding: 0 20px 120px; } }

/* ═══ TOP BAR ═════════════════════════════════════════════════════════ */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px 18px; position: sticky; top: 0; z-index: 30;
  background: linear-gradient(180deg, var(--bg-0) 60%, transparent);
  backdrop-filter: blur(8px);
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em;
}
.brand-glyph {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  position: relative; box-shadow: 0 0 14px rgba(0, 229, 255, 0.5);
}
.brand-glyph::after {
  content: ""; position: absolute; inset: 4px; border-radius: 4px;
  background: var(--bg-0);
}
.brand-glyph::before {
  content: ""; position: absolute; inset: 9px; border-radius: 2px;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
}
.brand-name { font-size: 15px; }
.brand-name b { color: var(--cyan); text-shadow: 0 0 12px var(--cyan-soft); }
.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(0, 255, 148, 0.08);
  border: 1px solid rgba(0, 255, 148, 0.25);
  color: var(--green); letter-spacing: 0.08em; text-transform: uppercase;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ═══ HERO ════════════════════════════════════════════════════════════ */
.hero { padding: 8px 0 28px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line-glow);
  background: rgba(0, 229, 255, 0.06);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15), inset 0 0 12px rgba(0, 229, 255, 0.08);
}
.hero-tag .corner {
  width: 4px; height: 4px; background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}
.hero-h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(46px, 13vw, 60px); line-height: 0.96;
  letter-spacing: -0.04em; margin: 18px 0 14px;
  text-wrap: balance;
}
.hero-h1 .gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 60%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.3));
}
.hero-h1 .strike { position: relative; display: inline-block; }
.hero-h1 .strike::after {
  content: ""; position: absolute; left: -4%; right: -4%;
  top: 52%; height: 6px; background: var(--red);
  box-shadow: 0 0 12px var(--red); transform: rotate(-2deg);
}
.hero-sub {
  font-size: 17px; color: var(--txt-2); max-width: 420px;
  line-height: 1.4; text-wrap: pretty;
}
.hero-sub b { color: var(--txt); font-weight: 600; }

/* hero stats card */
.hero-stats {
  margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 16px 14px; gap: 8px;
  position: relative; overflow: hidden;
}
.hero-stats::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan-line 4s ease-in-out infinite;
}
@keyframes scan-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.hstat { display: flex; flex-direction: column; gap: 3px;
  border-right: 1px solid var(--line); padding-right: 8px; }
.hstat:last-child { border-right: 0; }
.hstat-num {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--cyan); text-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}
.hstat-lbl {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em;
  color: var(--txt-3); text-transform: uppercase; margin-top: 4px;
}

/* hero CTA */
.hero-cta {
  margin-top: 18px; display: flex; flex-direction: column; gap: 10px;
}

/* ═══ CTA BUTTONS ═════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 22px; border-radius: 14px; font-weight: 700; font-size: 16px;
  letter-spacing: 0.01em; position: relative; overflow: hidden;
  transition: transform 0.15s, box-shadow 0.2s;
  text-align: center; width: 100%;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #00B8D4 100%);
  color: #001019;
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.8) inset,
    0 0 30px rgba(0, 229, 255, 0.45),
    0 8px 28px rgba(0, 229, 255, 0.25);
}
.btn-primary::before {
  content: ""; position: absolute; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-200%) skewX(-20deg);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 60% { transform: translateX(-200%) skewX(-20deg); }
  100% { transform: translateX(300%) skewX(-20deg); }
}
.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 1) inset,
    0 0 40px rgba(0, 229, 255, 0.7),
    0 12px 36px rgba(0, 229, 255, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--txt);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn .arrow {
  display: inline-flex; align-items: center; gap: 2px;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ═══ SECTION HEADERS ═════════════════════════════════════════════════ */
.section-hd {
  padding: 32px 0 18px; display: flex; align-items: end;
  justify-content: space-between; gap: 12px;
}
.section-hd h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; line-height: 1.05; letter-spacing: -0.02em;
}
.section-hd h2 em { font-style: normal; color: var(--cyan);
  text-shadow: 0 0 16px var(--cyan-soft); }
.section-hd-meta {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--txt-3);
  white-space: nowrap;
}

/* ═══ FILTER PILLS ════════════════════════════════════════════════════ */
.filters {
  display: flex; gap: 8px; overflow-x: auto; padding: 0 4px 4px;
  scrollbar-width: none; margin: 0 -4px;
}
.filters::-webkit-scrollbar { display: none; }
.filter-pill {
  flex-shrink: 0; padding: 9px 14px; font-size: 13px; font-weight: 500;
  border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03); color: var(--txt-2);
  white-space: nowrap; transition: all 0.15s;
}
.filter-pill.is-on {
  background: var(--cyan); color: #001019;
  border-color: var(--cyan); font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

/* ═══ CASINO CARDS — HOLOGRAPHIC ═════════════════════════════════════ */
.cards { display: flex; flex-direction: column; gap: 18px; }

.card {
  position: relative; padding: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    var(--bg-1);
  border: 1px solid var(--line-2);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s, border-color 0.3s;
}
.card:hover { transform: translateY(-2px); border-color: var(--line-glow); }
.card-banner, .card-ribbon { /* full-bleed sections, no horizontal padding override */ }
.card > .card-bonus, .card > .perks, .card > .pay-row, .card > .urgency-strip,
.card > .card-cta, .card > .deposit-notice { margin-left: 18px; margin-right: 18px; }
.card > .card-cta { margin-bottom: 18px; }
.card > .card-bonus { margin-top: 16px; }
.card > .deposit-notice { margin-top: 8px; margin-bottom: 4px; }

/* override base bonus margin from .card-bonus */
.card-bonus { margin: 0 18px 16px; padding: 12px 0; }

/* Ribbon for #1 — full-width gradient strip */
.card-ribbon {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 16px; font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), #FF8B00 50%, var(--gold));
  background-size: 200% 100%;
  color: #1a0a00;
  animation: ribbon-shine 4s linear infinite;
  text-align: center;
}
.ribbon-trophy { font-size: 14px; filter: drop-shadow(0 0 4px rgba(255,184,0,0.8)); }
@keyframes ribbon-shine {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* Brand banner — large, prominent */
.card-banner {
  display: grid;
  grid-template-columns: auto 64px 1fr auto;
  gap: 12px; align-items: center;
  padding: 16px 18px 18px;
  position: relative;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.03), transparent 60%);
  border-bottom: 1px solid var(--line);
}
.rank-chip-lg {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--txt-3);
  font-variant-numeric: tabular-nums;
}
.card.rank-1 .rank-chip-lg { color: var(--gold); text-shadow: 0 0 12px rgba(255,184,0,0.4); }
.card.rank-2 .rank-chip-lg { color: var(--cyan); }
.card.rank-3 .rank-chip-lg { color: var(--violet); }

.brand-logo-xl {
  width: 64px !important; height: 64px !important;
  border-radius: 14px !important;
  font-size: 22px !important;
}
.brand-info-lg { min-width: 0; }
.brand-info-lg h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.05;
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
}
.verified {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cyan); flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--cyan-soft));
}
.brand-meta {
  display: flex; align-items: center; gap: 5px;
  margin-top: 5px; font-size: 12px; color: var(--txt-2);
}
.b-stars {
  color: var(--gold);
  text-shadow: 0 0 6px rgba(255, 184, 0, 0.4);
  letter-spacing: 1px; font-size: 13px;
}
.b-rating { color: var(--txt); font-weight: 700;
  font-variant-numeric: tabular-nums; }
.b-reviews { color: var(--txt-3); }

.badge-banner { align-self: start; }

/* holographic conic border */
.card::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--radius-lg);
  padding: 1px; z-index: -1;
  background: conic-gradient(from var(--ang, 0deg),
    transparent 0deg,
    var(--cyan) 60deg,
    var(--violet) 120deg,
    transparent 180deg,
    transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.6;
  animation: rotate-conic 6s linear infinite;
}
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes rotate-conic {
  0% { --ang: 0deg; }
  100% { --ang: 360deg; }
}

.card.rank-1::before { opacity: 1; animation-duration: 4s; }
.card.rank-1 {
  background:
    linear-gradient(180deg, rgba(0, 229, 255, 0.06), rgba(168, 85, 247, 0.04)),
    var(--bg-1);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.15), 0 0 80px rgba(168, 85, 247, 0.10);
}

/* card header row */
.card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.card-rank-wrap { display: flex; align-items: center; gap: 12px; }
.rank-chip {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  background: rgba(255,255,255,0.06); color: var(--txt);
  border: 1px solid var(--line-2);
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.card.rank-1 .rank-chip {
  background: linear-gradient(135deg, var(--gold), #FF8B00);
  color: #1a0a00; border-color: var(--gold);
  box-shadow: 0 0 16px rgba(255, 184, 0, 0.45);
}
.card.rank-2 .rank-chip { color: var(--cyan); border-color: var(--cyan-soft); }
.card.rank-3 .rank-chip { color: var(--violet); border-color: rgba(168, 85, 247, 0.4); }

.card-brand {
  display: flex; align-items: center; gap: 11px;
}
.brand-logo {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  letter-spacing: 0.02em; position: relative; overflow: hidden;
  flex-shrink: 0;
}
.brand-logo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
}
.brand-logo[data-mono="AB"] { background: linear-gradient(135deg, #00E5FF, #0088CC); color: #001019; }
.brand-logo[data-mono="VC"] { background: linear-gradient(135deg, #A855F7, #5B21B6); color: #fff; }
.brand-logo[data-mono="DG"] { background: linear-gradient(135deg, #00FF94, #00875A); color: #001a0d; }
.brand-logo[data-mono="LX"] { background: linear-gradient(135deg, #FFB800, #FF6B00); color: #1a0f00; }
.brand-logo[data-mono="CR"] { background: linear-gradient(135deg, #FF3D6E, #B91C1C); color: #fff; }
.brand-logo[data-mono="NT"] { background: linear-gradient(135deg, #6366F1, #1E1B4B); color: #fff; }
.brand-logo[data-mono="BG"] { background: linear-gradient(135deg, #F472B6, #BE185D); color: #fff; }
.brand-logo[data-mono="SR"] { background: linear-gradient(135deg, #22D3EE, #0E7490); color: #001a1f; }

/* image-slot overlay for casino logos */
.brand-logo-mono {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: inherit;
  letter-spacing: 0.02em;
}
.brand-logo-slot {
  position: absolute !important;
  inset: 0; width: 100% !important; height: 100% !important;
  z-index: 1; display: block;
}
.brand-logo-slot::part(frame) {
  background: transparent;
  border-radius: inherit;
}
.brand-logo-slot::part(ring) {
  border: 1px dashed transparent;
  transition: border-color 0.18s, background 0.18s;
}
.brand-logo:hover .brand-logo-slot::part(ring) {
  border-color: rgba(255, 255, 255, 0.4);
}
.brand-logo-slot::part(empty) {
  background: transparent;
  color: rgba(255, 255, 255, 0.0);
  transition: background 0.18s, color 0.18s;
}
.brand-logo:hover .brand-logo-slot::part(empty) {
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.9);
}
/* When filled, hide fallback monogram letter */
.brand-logo:has(.brand-logo-slot[data-filled]) .brand-logo-mono {
  display: none;
}
.brand-logo:has(.brand-logo-slot[data-filled])::after {
  display: none;
}

.brand-info h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.1;
}
.brand-info .lic {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
  color: var(--green); margin-top: 3px; text-transform: uppercase;
}
.brand-info .lic::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
}

.badge {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
  padding: 5px 10px; border-radius: 6px;
  border: 1px solid currentColor;
}
.badge-hot { color: var(--red); background: rgba(255, 61, 110, 0.08);
  animation: badge-pulse 1.6s ease-in-out infinite; }
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 61, 110, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255, 61, 110, 0); }
}
.badge-top { color: var(--gold); background: rgba(255, 184, 0, 0.08); }
.badge-mob { color: var(--cyan); background: rgba(0, 229, 255, 0.06); }
.badge-prem { color: var(--violet); background: rgba(168, 85, 247, 0.08); }
.badge-fast { color: var(--green); background: rgba(0, 255, 148, 0.06); }

/* card bonus */
.card-bonus {
  margin: 6px 0 16px;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.bonus-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  color: var(--txt-3); text-transform: uppercase; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: space-between;
}
.bonus-amt {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -0.04em; line-height: 0.95;
}
.bonus-amt .cur { font-size: 26px; color: var(--cyan);
  text-shadow: 0 0 14px var(--cyan-soft); }
.bonus-amt .num { font-size: 54px;
  color: #fff;
  text-shadow:
    0 0 12px rgba(0, 229, 255, 0.6),
    0 0 28px rgba(0, 229, 255, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.2);
  font-variant-numeric: tabular-nums;
}
.bonus-amt .plus {
  font-size: 14px; color: var(--txt-2); font-weight: 500;
  margin-left: 4px; letter-spacing: 0;
}
.bonus-fs {
  margin-top: 4px; font-size: 13px; color: var(--green);
  display: flex; align-items: center; gap: 6px;
}
.bonus-fs::before {
  content: "◈"; color: var(--green); text-shadow: 0 0 8px var(--green);
}

/* card perks */
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-bottom: 14px; }
.perk {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 8px; border-radius: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
}
.perk-icon {
  width: 18px; height: 18px; border-radius: 5px;
  background: rgba(0, 229, 255, 0.1); border: 1px solid var(--line-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--cyan);
}
.perk-val {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.perk-lbl {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.08em;
  color: var(--txt-3); text-transform: uppercase; line-height: 1.2;
}

/* progress bar / rating */
.card-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rating-meter {
  flex: 1; display: flex; align-items: center; gap: 8px;
}
.rating-meter-lbl { color: var(--txt-3); }
.rating-bar {
  flex: 1; height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden; position: relative;
}
.rating-fill {
  height: 100%; background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: 2px; box-shadow: 0 0 8px var(--cyan-soft);
  transform-origin: left; animation: fill-in 0.8s ease-out;
}
@keyframes fill-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.rating-val {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--txt);
  font-variant-numeric: tabular-nums;
}
.viewers {
  display: flex; align-items: center; gap: 5px;
  color: var(--green); font-weight: 500;
}
.viewers::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}

/* card cta */
.card-cta {
  display: flex; flex-direction: column; gap: 8px;
}
.code-strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-radius: 9px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px dashed var(--line-glow);
  font-family: var(--font-mono); font-size: 11px;
}
.code-strip .code-lbl { color: var(--txt-3); letter-spacing: 0.08em;
  text-transform: uppercase; }
.code-strip code {
  color: var(--cyan); font-weight: 600; letter-spacing: 0.08em;
  text-shadow: 0 0 8px var(--cyan-soft);
}

/* ═══ FOMO TICKER ════════════════════════════════════════════════════ */
.ticker {
  margin: 20px 0; padding: 12px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px;
  position: relative; overflow: hidden;
}
.ticker-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0, 255, 148, 0.1);
  border: 1px solid rgba(0, 255, 148, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 11px; flex-shrink: 0;
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 148, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0, 255, 148, 0); }
}
.ticker-text { flex: 1; color: var(--txt-2); }
.ticker-text b { color: var(--txt); font-weight: 600; }
.ticker-text .ticker-name { color: var(--cyan); }
.ticker-time { color: var(--txt-3); font-size: 10px; white-space: nowrap; }

/* ═══ COMPARE BAR (sticky bottom) ════════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(5,6,8,0.95) 30%);
  pointer-events: none;
}
.sticky-cta-inner {
  max-width: 480px; margin: 0 auto; pointer-events: auto;
  padding: 12px; border-radius: 16px;
  background: rgba(11, 14, 20, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--line-glow);
  box-shadow: 0 -8px 40px rgba(0, 229, 255, 0.15);
  display: flex; gap: 10px; align-items: center;
}
.sticky-mini {
  display: flex; flex-direction: column; gap: 1px; padding: 0 4px;
}
.sticky-mini .label { font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.08em; color: var(--txt-3); text-transform: uppercase; }
.sticky-mini .val { font-family: var(--font-display); font-size: 14px;
  font-weight: 700; color: var(--cyan); letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums; }
.sticky-cta-inner .btn { flex: 1; padding: 14px 16px; font-size: 14px; }

/* ═══ FINAL CTA SECTION ═══════════════════════════════════════════════ */
.final-cta {
  margin-top: 24px; padding: 28px 22px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 0%, rgba(0, 229, 255, 0.2), transparent 60%),
    radial-gradient(circle at 70% 100%, rgba(168, 85, 247, 0.2), transparent 60%),
    var(--bg-1);
  border: 1px solid var(--line-glow);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  mask: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  -webkit-mask: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta .eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 12px;
}
.final-cta h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.final-cta h3 em { font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; }
.final-cta p { color: var(--txt-2); font-size: 14px; margin-bottom: 18px; }

/* ═══ COMPLIANCE FOOTER ═══════════════════════════════════════════════ */
.compliance {
  margin-top: 36px; padding: 18px 0 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 10px; line-height: 1.5;
  color: var(--txt-3); letter-spacing: 0.02em;
}
.compliance-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
  flex-wrap: wrap;
}
.comp-badge {
  padding: 4px 8px; border-radius: 4px; border: 1px solid var(--line-2);
  font-weight: 600; letter-spacing: 0.08em; color: var(--txt-2);
  text-transform: uppercase;
}
.comp-badge.age { background: rgba(255, 61, 110, 0.08);
  color: var(--red); border-color: rgba(255, 61, 110, 0.3); }
.comp-badge.adm { color: var(--green); border-color: rgba(0, 255, 148, 0.3); }
.compliance a { color: var(--cyan); }

/* ═══ TWEAK-DRIVEN VARIANTS ══════════════════════════════════════════ */
.accent-green { --accent: var(--green); --line-glow: rgba(0, 255, 148, 0.35); }
.accent-green .hstat-num, .accent-green .bonus-amt .cur,
.accent-green .hero-tag, .accent-green .section-hd h2 em,
.accent-green .code-strip code, .accent-green .sticky-mini .val,
.accent-green .final-cta .eyebrow { color: var(--green); }
.accent-green .btn-primary {
  background: linear-gradient(135deg, var(--green), #00B36B); color: #001a0d;
  box-shadow: 0 0 0 1px rgba(0, 255, 148, 0.8) inset,
    0 0 30px rgba(0, 255, 148, 0.45), 0 8px 28px rgba(0, 255, 148, 0.25);
}

.accent-violet { --accent: var(--violet); --line-glow: rgba(168, 85, 247, 0.4); }
.accent-violet .hstat-num, .accent-violet .bonus-amt .cur,
.accent-violet .hero-tag, .accent-violet .section-hd h2 em,
.accent-violet .code-strip code, .accent-violet .sticky-mini .val,
.accent-violet .final-cta .eyebrow { color: var(--violet); }
.accent-violet .btn-primary {
  background: linear-gradient(135deg, var(--violet), #6D28D9); color: #fff;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.8) inset,
    0 0 30px rgba(168, 85, 247, 0.45), 0 8px 28px rgba(168, 85, 247, 0.25);
}

.accent-gold { --accent: var(--gold); --line-glow: rgba(255, 184, 0, 0.4); }
.accent-gold .hstat-num, .accent-gold .bonus-amt .cur,
.accent-gold .hero-tag, .accent-gold .section-hd h2 em,
.accent-gold .code-strip code, .accent-gold .sticky-mini .val,
.accent-gold .final-cta .eyebrow { color: var(--gold); }
.accent-gold .btn-primary {
  background: linear-gradient(135deg, var(--gold), #FF8B00); color: #1a0f00;
  box-shadow: 0 0 0 1px rgba(255, 184, 0, 0.8) inset,
    0 0 30px rgba(255, 184, 0, 0.45), 0 8px 28px rgba(255, 184, 0, 0.25);
}

.calm .bg-aurora { animation-duration: 60s; opacity: 0.6; }
.calm .particles { display: none; }
.calm .card::before { animation: none; opacity: 0.3; }
.calm .btn-primary::before { animation: none; opacity: 0; }
.calm .badge-hot { animation: none; }

/* ═══ TYPE-SCALE / DENSITY ════════════════════════════════════════════ */
.density-compact .card { padding: 16px; }
.density-compact .bonus-amt .num { font-size: 44px; }
.density-compact .perks { gap: 4px; }

/* ═══ MISC ═════════════════════════════════════════════════════════════ */
.spacer-lg { height: 24px; }

/* "έως" prefix in the bonus slot frame */
.bonus-amt .cur-pre {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--txt-3); letter-spacing: 0.05em;
  margin-right: 4px; text-transform: lowercase;
  font-weight: 500;
}
.bonus-amt .cur {
  font-size: 32px !important; color: var(--cyan);
  text-shadow: 0 0 14px var(--cyan-soft);
  margin-left: 4px; margin-right: 0;
}

/* Percent eyebrow */
.bonus-amt .cur-pre {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--txt-3); letter-spacing: 0.05em;
  margin-right: 4px;
  font-weight: 500;
  align-self: center;
}
.bonus-amt .cur {
  font-size: 32px !important; color: var(--cyan);
  text-shadow: 0 0 14px var(--cyan-soft);
}
.bonus-amt.slot-frame { padding: 8px 22px 8px 26px; }

.bonus-percent {
  color: var(--txt); font-weight: 700;
  letter-spacing: 0.05em;
}
.bonus-percent b {
  background: linear-gradient(90deg, var(--cyan), var(--green));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display); font-size: 17px;
  letter-spacing: -0.01em; padding-right: 2px;
  filter: drop-shadow(0 0 4px rgba(0,229,255,0.5));
}

/* Bonus extras */
.bonus-extras {
  margin-top: 6px; display: flex; flex-direction: column; gap: 3px;
}
.bonus-extra {
  font-size: 13px; color: var(--txt-2);
  display: flex; align-items: center; gap: 2px;
  font-weight: 500;
}
.bonus-extra::before {
  content: ""; display: none;
}
.brand-logo-img-wrap {
  background: rgba(255,255,255,0.06) !important;
  padding: 0 !important;
  overflow: hidden;
}
.brand-logo-img-wrap::after { display: none !important; }
.brand-logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}

/* ═══ NEW LOGO STRIP (full-width white panel) ═════════════════════════ */
.card-logo-strip {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 28px 18px;
  min-height: 200px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    var(--bg-1);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.card-logo-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 100%, rgba(0, 229, 255, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 0%, rgba(168, 85, 247, 0.10), transparent 70%);
  pointer-events: none;
}
.card-logo-big {
  position: relative; z-index: 1;
  max-height: 156px; max-width: 92%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 22px rgba(0, 229, 255, 0.25)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
.rank-overlay {
  position: absolute; top: 12px; left: 14px; z-index: 2;
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
  color: var(--txt);
  padding: 4px 10px;
  background: rgba(11, 14, 20, 0.7);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.card.rank-1 .rank-overlay {
  background: linear-gradient(135deg, var(--gold), #FF8B00);
  color: #1a0a00;
  border-color: var(--gold);
  box-shadow: 0 2px 16px rgba(255, 184, 0, 0.5);
}
.card.rank-2 .rank-overlay { color: var(--cyan); border-color: var(--line-glow); }
.card.rank-3 .rank-overlay { color: var(--violet); border-color: rgba(168, 85, 247, 0.4); }

.badge-overlay {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 700;
  padding: 4px 9px; border-radius: 6px;
  background: rgba(11, 14, 20, 0.75);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
}
.badge-overlay.badge-hot { color: var(--red); background: rgba(80, 12, 30, 0.7); border-color: rgba(255, 61, 110, 0.4); }
.badge-overlay.badge-top { color: var(--gold); background: rgba(60, 40, 0, 0.7); border-color: rgba(255, 184, 0, 0.4); }
.badge-overlay.badge-prem { color: var(--violet); background: rgba(45, 20, 70, 0.7); border-color: rgba(168, 85, 247, 0.4); }
.badge-overlay.badge-fast { color: var(--green); background: rgba(0, 50, 30, 0.7); border-color: rgba(0, 255, 148, 0.4); }
.badge-overlay.badge-mob { color: var(--cyan); background: rgba(0, 40, 55, 0.7); border-color: var(--line-glow); }

.card-brand-row {
  padding: 14px 18px 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  text-align: center;
}
.card-brand-name {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.05;
  display: inline-flex; align-items: center; gap: 7px;
  justify-content: center;
}
.card-brand-name .verified {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan-soft));
}
.card-brand-row .brand-meta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--txt-2);
  justify-content: center; flex-wrap: wrap;
}

/* Center bonus block */
.card-bonus { text-align: center; }
.bonus-eyebrow { justify-content: center; gap: 14px; }
.bonus-amt.slot-frame { margin: 0 auto; }
.bonus-fs { display: inline-flex; justify-content: center;
  margin-left: auto; margin-right: auto; }
.bonus-extras { align-items: center; }
.bonus-extra { justify-content: center; }

/* Center pay row */
.pay-row { justify-content: center; }

/* Clickable logo */
.card-logo-link {
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  border-radius: 8px;
  transition: transform 0.18s;
  cursor: pointer;
}
.card-logo-link:active { transform: scale(0.97); }
.card-logo-link:hover .card-logo-big {
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
}

/* ═══ DEPOSIT NOTICE ══════════════════════════════════════════════════ */
.deposit-notice {
  padding: 10px 12px;
  display: flex; align-items: center; gap: 9px;
  background: rgba(255, 184, 0, 0.06);
  border: 1px solid rgba(255, 184, 0, 0.22);
  border-radius: 9px;
  font-size: 12.5px; color: var(--txt-2);
  line-height: 1.35;
}
.deposit-notice b {
  color: var(--gold); font-weight: 700;
  font-variant-numeric: tabular-nums;
}
/* Center deposit notice text */
.deposit-notice { justify-content: center; text-align: left; }
.dn-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid rgba(255, 184, 0, 0.4);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}

/* ═══ DESKTOP LOADER (visible only on >=820px screens) ════════════════ */
.desktop-loader { display: none; }
@media (min-width: 820px) {
  body > .desktop-loader {
    display: flex;
    position: fixed; inset: 0; z-index: 999999;
    background: #050608;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 28px;
  }
  body > #root,
  body > .bg-layer,
  body > .scroll-prog,
  body > .back-top,
  body > .sticky-cta,
  body > .twk-panel,
  #root, .bg-layer, .scroll-prog, .back-top, .sticky-cta { display: none !important; }
  body { overflow: hidden; }
}
.dl-spinner {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: rgba(255,255,255,0.5);
  animation: dl-spin 0.9s linear infinite;
}
@keyframes dl-spin {
  to { transform: rotate(360deg); }
}
.dl-dots {
  display: flex; gap: 6px;
}
.dl-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: dl-dot 1.2s ease-in-out infinite;
}
.dl-dots span:nth-child(2) { animation-delay: 0.15s; }
.dl-dots span:nth-child(3) { animation-delay: 0.30s; }
@keyframes dl-dot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

/* ═══ SLOT REEL DIGITS ═════════════════════════════════════════════════ */
.reel { display: inline-flex; align-items: baseline; vertical-align: baseline;
  font-variant-numeric: tabular-nums; }
.reel-digit { display: inline-block; height: 1em; overflow: hidden;
  vertical-align: top; line-height: 1; }
.reel-strip { display: flex; flex-direction: column;
  transition: transform 1.4s cubic-bezier(.18, .85, .25, 1); }
.reel-strip > span { display: block; height: 1em; line-height: 1; }
.reel-static { display: inline-block; }

/* ═══ JACKPOT MEGA COUNTER ═════════════════════════════════════════════ */
.jackpot {
  margin: 26px 0 8px; padding: 22px 18px;
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.20), transparent 55%),
    linear-gradient(180deg, #0a0d18, #050608);
  border: 1px solid var(--line-glow);
  box-shadow: 0 0 60px rgba(0, 229, 255, 0.15), inset 0 0 0 1px rgba(255,255,255,0.02);
  text-align: center;
}
.jackpot::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask: radial-gradient(ellipse 75% 60% at 50% 50%, black, transparent);
  -webkit-mask: radial-gradient(ellipse 75% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}
.jackpot::after {
  content: ""; position: absolute; top: 0; left: -100%; height: 100%; width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: jackpot-shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes jackpot-shine {
  0%, 100% { left: -100%; }
  60%, 100% { left: 100%; }
}
.jackpot-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.jackpot-eyebrow::before, .jackpot-eyebrow::after {
  content: ""; width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}
.jackpot-eyebrow::after {
  background: linear-gradient(-90deg, transparent, var(--cyan));
}
.jackpot-suits {
  position: relative; z-index: 1;
  display: flex; gap: 12px; justify-content: center; margin-bottom: 8px;
  font-size: 14px; color: var(--cyan-soft);
}
.jackpot-suits span { animation: suit-blink 2s ease-in-out infinite; }
.jackpot-suits span:nth-child(2) { animation-delay: 0.3s; color: var(--violet); }
.jackpot-suits span:nth-child(3) { animation-delay: 0.6s; color: var(--green); }
.jackpot-suits span:nth-child(4) { animation-delay: 0.9s; color: var(--gold); }
@keyframes suit-blink {
  0%, 90%, 100% { opacity: 0.5; }
  10% { opacity: 1; filter: drop-shadow(0 0 8px currentColor); }
}
.jackpot-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(54px, 16vw, 76px); line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow:
    0 0 14px rgba(0, 229, 255, 0.7),
    0 0 36px rgba(0, 229, 255, 0.45),
    0 0 60px rgba(168, 85, 247, 0.35);
  position: relative; z-index: 1;
  font-variant-numeric: tabular-nums;
}
.jackpot-num .cur {
  font-size: 0.45em; color: var(--cyan);
  text-shadow: 0 0 18px var(--cyan-soft);
  vertical-align: 0.4em; margin-right: 6px;
}
.jackpot-lbl {
  margin-top: 8px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--txt-3); text-transform: uppercase;
  position: relative; z-index: 1;
}
.jackpot-lbl b { color: var(--green); }
.jackpot-bulbs {
  position: absolute; left: 0; right: 0; pointer-events: none;
  display: flex; justify-content: space-between; padding: 0 18px;
}
.jackpot-bulbs.top { top: 8px; }
.jackpot-bulbs.bot { bottom: 8px; }
.jackpot-bulbs i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 6px var(--cyan);
  animation: bulb-chase 1.2s steps(1) infinite;
}
.jackpot-bulbs i:nth-child(2) { animation-delay: 0.15s; }
.jackpot-bulbs i:nth-child(3) { animation-delay: 0.30s; }
.jackpot-bulbs i:nth-child(4) { animation-delay: 0.45s; }
.jackpot-bulbs i:nth-child(5) { animation-delay: 0.60s; }
.jackpot-bulbs i:nth-child(6) { animation-delay: 0.75s; }
.jackpot-bulbs i:nth-child(7) { animation-delay: 0.90s; }
.jackpot-bulbs i:nth-child(8) { animation-delay: 1.05s; }
@keyframes bulb-chase {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0.2; }
}

/* ═══ MARQUEE WINS ═════════════════════════════════════════════════════ */
.marquee {
  margin: 14px -16px 0; padding: 10px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
  mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex; gap: 32px; animation: marquee-scroll 28s linear infinite;
  white-space: nowrap; width: max-content;
  font-family: var(--font-mono); font-size: 12px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--txt-2);
}
.marquee-item .m-icon {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  color: #001a0d; display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.marquee-item b { color: var(--cyan); }
.marquee-item .m-amt {
  color: var(--gold); font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 184, 0, 0.4);
}

/* ═══ CASINO ACCENTS ON CARDS ═════════════════════════════════════════ */
.card { position: relative; }
.card-suit {
  position: absolute; top: 16px; right: 16px;
  font-size: 16px; opacity: 0.35;
  font-family: serif;
}
.card-suit.s-spade { color: var(--cyan); }
.card-suit.s-heart { color: var(--red); }
.card-suit.s-diamond { color: var(--violet); }
.card-suit.s-club { color: var(--green); }
.card-suit.s-seven { color: var(--gold); font-family: var(--font-display);
  font-weight: 800; font-size: 22px; }

/* Bonus reel highlight */
.bonus-amt .reel { display: inline-flex; }

/* Chip decoration above card cta */
.chip-stack {
  position: absolute; bottom: 18px; right: 18px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0.5; pointer-events: none;
}
.chip-stack i {
  width: 28px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.4);
}
.chip-stack i:nth-child(2) { width: 22px; opacity: 0.7; }
.chip-stack i:nth-child(3) { width: 18px; opacity: 0.5; }

/* Slot reel container with frame style */
.bonus-amt.slot-frame {
  padding: 8px 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  border-radius: 10px;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: baseline; gap: 6px;
  position: relative;
}
.bonus-amt.slot-frame::before, .bonus-amt.slot-frame::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan); animation: pulse 1.6s ease-in-out infinite;
}
.bonus-amt.slot-frame::before { left: 8px; }
.bonus-amt.slot-frame::after { right: 8px; }

/* ═══ PAY ROW (trust signal) ══════════════════════════════════════════ */
.pay-row {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding: 10px 12px; margin-bottom: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.pay-lbl {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
  color: var(--txt-3); text-transform: uppercase; margin-right: 4px;
}
.pay-pill {
  font-size: 11px; padding: 3px 9px; border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-2);
  color: var(--txt-2); font-weight: 500;
}
.pay-pill-more {
  background: rgba(0,229,255,0.08);
  color: var(--cyan); border-color: var(--line-glow);
  font-weight: 600;
}

/* ═══ URGENCY STRIP ═══════════════════════════════════════════════════ */
.urgency-strip {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 12px; margin-bottom: 10px;
  background: linear-gradient(90deg,
    rgba(255, 61, 110, 0.06),
    rgba(255, 184, 0, 0.08),
    rgba(255, 61, 110, 0.06));
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--gold); letter-spacing: 0.04em;
  font-weight: 600;
}
.urgency-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px var(--red);
  animation: pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ═══ MEGA CTA ═════════════════════════════════════════════════════════ */
.btn-mega {
  padding: 20px 22px;
  font-size: 17px; gap: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: flex; flex-wrap: nowrap;
}
.btn-mega-pre { font-weight: 600; opacity: 0.85; }
.btn-mega-amt {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-transform: none;
}
.btn-mega .arrow {
  font-size: 22px;
  animation: arrow-nudge 1.6s ease-in-out infinite;
}
@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ═══ TRUST LINE under CTA ══════════════════════════════════════════════ */
.trust-line {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 10px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--txt-3); letter-spacing: 0.04em;
}
.trust-line span { display: inline-flex; align-items: center; gap: 4px; }

/* ═══ VIEWERS bottom (social proof) ═══════════════════════════════════ */
.viewers-bottom {
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--txt-2); letter-spacing: 0.02em;
}
.viewers-bottom b { color: var(--green); font-weight: 600;
  text-shadow: 0 0 6px rgba(0,255,148,0.4); }
.viewers-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}


/* ─── LIVE RENDERING FIX ──────────────────────────────────────────────
   Override block: forces .card-logo-strip to match the surrounding
   card background exactly, removing artifacts (drop-shadow halo,
   radial gradients, tinted overlays, backdrop-filter composites) that
   live browsers render brighter than the design-preview snapshot. */

.card-logo-strip {
  background: transparent !important;
  border-bottom: 1px solid var(--line) !important;
}
.card-logo-strip::before {
  display: none !important;
  background: none !important;
}
.card-logo-big {
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5)) !important;
}
.rank-overlay,
.badge-overlay {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
