/* === 888starz — кастомный CSS (без Tailwind) === */
/* Тёмная премиум-палитра: чёрный + красный бренд + зелёный CTA + золотой акцент */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #1a1d24;
  color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:root {
  --bg: #1a1d24;
  --surface: #252a33;
  --surface-elevated: #2f353e;
  --border: #3b414c;
  --brand-red: #b80000;
  --brand-red-dark: #8b0000;
  --brand-red-light: #cc0000;
  --cta: #28a745;
  --cta-hover: #16a34a;
  --gold: #ffc107;
  --alert: #ef4444;
  --live: #22c55e;
  --muted: #9ca3af;
  --muted-2: #6b7280;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-card: 0 2px 8px -2px rgba(0,0,0,0.4);
  --shadow-card-hover: 0 6px 20px -6px rgba(0,0,0,0.5);
  --shadow-cta: 0 4px 14px -3px rgba(40,167,69,0.55);
}

/* === Layout === */
.site-wrap { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(135deg, var(--brand-red-light) 0%, var(--brand-red) 50%, var(--brand-red-dark) 100%);
  box-shadow: 0 4px 16px -8px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 16px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
@media (min-width: 640px) { .header-inner { padding: 0 24px; } }
@media (min-width: 1024px) { .header-inner { padding: 0 32px; } }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-badge {
  width: 36px; height: 36px; border-radius: 6px;
  background: #fff; color: var(--brand-red);
  font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.logo-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.7); }

.nav-desktop { display: none; gap: 2px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link {
  padding: 8px 12px; border-radius: 4px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active { background: rgba(255,255,255,0.2); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-cta {
  display: none; align-items: center; gap: 6px;
  background: var(--cta); color: #fff; font-weight: 600;
  padding: 8px 14px; border-radius: 6px; font-size: 14px;
  box-shadow: var(--shadow-cta);
  transition: background 0.15s;
}
.btn-cta:hover { background: var(--cta-hover); }
@media (min-width: 640px) { .btn-cta { display: inline-flex; } }

/* Mobile menu toggle */
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: none; background: transparent;
  color: #fff; cursor: pointer; border-radius: 4px;
}
.menu-toggle:hover { background: rgba(255,255,255,0.1); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile tab strip */
.tab-strip {
  border-top: 1px solid rgba(255,255,255,0.15);
  background: rgba(139,0,0,0.3);
  backdrop-filter: blur(8px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.tab-strip::-webkit-scrollbar { height: 4px; }
.tab-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.tab-strip-inner {
  display: flex; gap: 4px; padding: 8px 16px;
  min-width: max-content;
}
@media (min-width: 1024px) { .tab-strip { display: none; } }
.tab-strip-link {
  padding: 6px 12px; border-radius: 4px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.8);
  white-space: nowrap; transition: background 0.15s, color 0.15s;
}
.tab-strip-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.tab-strip-link.active { background: rgba(255,255,255,0.2); color: #fff; }

/* Mobile drawer */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 288px;
  background: var(--surface); z-index: 100;
  transform: translateX(100%); transition: transform 0.25s;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 99;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer-header {
  background: linear-gradient(135deg, var(--brand-red-light) 0%, var(--brand-red) 50%, var(--brand-red-dark) 100%);
  padding: 16px 20px; margin: -24px -24px 16px 0;
}
.drawer-title { font-size: 18px; font-weight: 700; color: #fff; }
.drawer-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.drawer-nav { padding: 0 12px; }
.drawer-link {
  display: block; padding: 10px 12px; border-radius: 4px;
  font-size: 14px; color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.drawer-link:hover { color: #fff; background: var(--surface-elevated); }
.drawer-link.active { background: rgba(40,167,69,0.15); color: var(--cta); font-weight: 500; }
.drawer-link-meta { display: block; font-size: 10px; color: var(--muted-2); margin-top: 2px; }
.drawer-info {
  margin: 24px 12px; padding: 16px; border-radius: 8px;
  background: var(--surface-elevated); border: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
}
.drawer-info p { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
@media (min-width: 1024px) { .drawer, .drawer-backdrop { display: none; } }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: 6px; font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; transition: all 0.15s;
  text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 12px 24px; font-size: 16px; min-height: 48px; }
.btn-block { width: 100%; }
.btn-cta-solid {
  background: var(--cta); color: #fff; box-shadow: var(--shadow-cta);
}
.btn-cta-solid:hover { background: var(--cta-hover); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(255,193,7,0.4);
}
.btn-outline-gold:hover { background: rgba(255,193,7,0.1); }

/* === Badges === */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  border: 1px solid transparent;
}
.badge-red { background: var(--brand-red); color: #fff; }
.badge-cta { background: var(--cta); color: #fff; }
.badge-gold { background: var(--gold); color: #000; }
.badge-alert { background: var(--alert); color: #fff; }
.badge-muted { background: var(--surface); color: var(--muted); border-color: var(--border); }
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: pulse-live 1.8s ease-in-out infinite;
}
@keyframes pulse-live { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

/* === Hero === */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(50% 40% at 50% 0%, rgba(184,0,0,0.18) 0%, transparent 70%),
    radial-gradient(35% 30% at 90% 15%, rgba(40,167,69,0.10) 0%, transparent 70%),
    radial-gradient(30% 25% at 10% 25%, rgba(255,193,7,0.06) 0%, transparent 70%),
    var(--bg);
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 48px 16px 64px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) {
  .hero-inner { padding: 64px 24px 96px; grid-template-columns: 7fr 5fr; gap: 32px; align-items: start; }
}
@media (min-width: 1024px) { .hero-inner { padding: 64px 32px 96px; } }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.hero-h1 {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
  color: #fff; margin: 0;
}
@media (min-width: 640px) { .hero-h1 { font-size: 36px; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 48px; } }

.hero-text p {
  font-size: 16px; line-height: 1.7; color: var(--muted); margin-top: 16px;
}
@media (min-width: 640px) { .hero-text p { font-size: 18px; } }

.hero-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }

/* Trust row */
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px; box-shadow: var(--shadow-card);
}
.trust-item-icon { width: 20px; height: 20px; color: var(--cta); flex-shrink: 0; }
.trust-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.trust-item-value { font-size: 14px; font-weight: 600; color: #fff; }

/* === Sections === */
.section { padding: 64px 0; }
.section-alt { background: rgba(37,42,51,0.5); }
.section-header { max-width: 768px; margin-bottom: 40px; }
.section-h2 {
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: #fff; margin-top: 12px;
}
@media (min-width: 640px) { .section-h2 { font-size: 30px; } }
.section-desc { margin-top: 16px; color: var(--muted); line-height: 1.7; }

/* === Cards === */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: var(--shadow-card); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card-hover:hover { border-color: rgba(40,167,69,0.5); transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.card-body { padding: 20px; }
@media (min-width: 640px) { .card-body { padding: 24px; } }
.card-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--muted); }

/* Card grid */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* === Step cards === */
.step-card { padding: 20px; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--cta); color: #fff; font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-cta); flex-shrink: 0;
}
.step-title { font-size: 14px; font-weight: 600; color: #fff; }
.step-body { font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.step-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

/* === Spec items === */
.spec-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; }
.spec-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(40,167,69,0.15); color: var(--cta); flex-shrink: 0;
}
.spec-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.spec-value { font-size: 14px; font-weight: 600; color: #fff; margin-top: 2px; }
.spec-hint { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* === Tables === */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table {
  width: 100%; border-collapse: collapse; font-size: 13px;
}
.table th {
  text-align: left; padding: 12px 16px;
  color: var(--muted); font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
}
.table td.primary { color: #fff; font-weight: 500; }
.table td.cta-text { color: var(--cta); font-weight: 600; }
.table tr:last-child td { border-bottom: none; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(40,167,69,0.5); }
.faq-summary {
  padding: 16px 20px; cursor: pointer; font-weight: 500; font-size: 15px; color: #fff;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: "+"; font-size: 22px; font-weight: 300; color: var(--muted); transition: transform 0.2s;
}
.faq-item[open] .faq-summary::after { transform: rotate(45deg); color: var(--cta); }
.faq-answer { padding: 0 20px 16px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* === Disclaimer (18+) === */
.disclaimer-card {
  background: var(--surface); border: 1px solid rgba(239,68,68,0.4);
  border-radius: 12px; overflow: hidden;
}
.disclaimer-header {
  background: linear-gradient(90deg, rgba(239,68,68,0.15), rgba(239,68,68,0.05), transparent);
  padding: 20px 28px; border-bottom: 1px solid rgba(239,68,68,0.2);
  display: flex; align-items: center; gap: 16px;
}
.disclaimer-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(239,68,68,0.15); color: var(--alert); flex-shrink: 0;
}
.disclaimer-age { font-size: 24px; font-weight: 800; color: #fff; }
.disclaimer-sub { font-size: 12px; color: var(--muted); }
.disclaimer-body { padding: 20px 28px 28px; }
.disclaimer-body h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.disclaimer-body h3 .icon-alert { color: var(--alert); }
.disclaimer-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.disclaimer-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.disclaimer-list li { display: flex; gap: 10px; font-size: 14px; color: var(--muted); }
.disclaimer-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(40,167,69,0.15); color: var(--cta);
  font-size: 10px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.disclaimer-help {
  background: var(--surface-elevated); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px;
}
.disclaimer-help strong { color: #fff; }

/* === Footer === */
.site-footer {
  background: var(--surface); border-top: 1px solid var(--border); margin-top: auto;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto; padding: 40px 16px;
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; padding: 40px 24px; } }
@media (min-width: 1024px) { .footer-grid { padding: 40px 32px; } }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand-name { font-size: 16px; font-weight: 700; color: #fff; }
.footer-brand-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 448px; }
.footer-col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { font-size: 14px; color: var(--muted); transition: color 0.15s; }
.footer-link:hover { color: var(--cta); }
.footer-link.alert-link { color: var(--alert); }
.footer-link.alert-link:hover { color: rgba(239,68,68,0.8); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 24px 16px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  font-size: 12px; color: rgba(156,163,175,0.8);
}
@media (min-width: 640px) {
  .footer-bottom { padding: 24px; flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 1024px) { .footer-bottom { padding: 24px 32px; } }
.footer-license { display: flex; align-items: center; gap: 6px; }
.footer-license-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cta); }

/* === Bonus cards === */
.bonus-card { position: relative; overflow: hidden; padding: 20px; }
.bonus-tag {
  position: absolute; top: 0; right: 0;
  background: rgba(40,167,69,0.1); padding: 4px 12px;
  border-bottom-left-radius: 8px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--cta); font-weight: 600;
}
.bonus-header { display: flex; align-items: center; gap: 10px; }
.bonus-icon-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--cta); color: #fff; box-shadow: var(--shadow-cta);
}
.bonus-name { font-size: 14px; font-weight: 600; color: #fff; }
.bonus-wager { font-size: 12px; color: var(--muted); }
.bonus-sum { font-size: 24px; font-weight: 800; color: var(--cta); margin-top: 16px; font-variant-numeric: tabular-nums; }
.bonus-desc { font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.6; }

/* === Pros/cons === */
.pros-cons-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .pros-cons-grid { grid-template-columns: 1fr 1fr; } }
.pros-card { border-color: rgba(40,167,69,0.3); }
.cons-card { border-color: rgba(239,68,68,0.3); }
.pros-cons-list { display: flex; flex-direction: column; gap: 8px; padding: 0; }
.pros-cons-list li { display: flex; gap: 8px; font-size: 14px; color: var(--muted); }
.pros-mark { color: var(--cta); }
.cons-mark { color: var(--alert); }

/* === Callout === */
.callout {
  border-radius: 12px; padding: 24px;
  display: flex; align-items: center; gap: 16px;
}
.callout-cta {
  background: linear-gradient(90deg, rgba(40,167,69,0.12), rgba(40,167,69,0.04), transparent);
  border: 1px solid rgba(40,167,69,0.3);
}
.callout-red {
  background: linear-gradient(90deg, rgba(184,0,0,0.15), rgba(184,0,0,0.04), transparent);
  border: 1px solid rgba(184,0,0,0.3);
}
.callout-alert {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
}
.callout-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
}
.callout-icon.cta { background: var(--cta); color: #fff; box-shadow: var(--shadow-cta); }
.callout-icon.red { background: var(--brand-red); color: #fff; }
.callout-icon.alert { background: var(--alert); color: #fff; }
.callout-title { font-size: 16px; font-weight: 600; color: #fff; }
.callout-body { font-size: 14px; color: var(--muted); margin-top: 4px; line-height: 1.7; }

/* === Phone mockup (Hero) === */
.phone-mockup { position: relative; max-width: 320px; margin: 0 auto; }
@media (min-width: 768px) { .phone-mockup { max-width: 384px; } }
.phone-frame {
  position: relative; border-radius: 40px;
  border: 4px solid #0f1116; background: var(--surface);
  padding: 12px; box-shadow: 0 25px 80px -20px rgba(0,0,0,0.8);
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 6px; border-radius: 4px; background: rgba(0,0,0,0.4); z-index: 10;
}
.phone-screen {
  border-radius: 32px; background: var(--bg); overflow: hidden;
  aspect-ratio: 9/18; display: flex; flex-direction: column;
}
.phone-header {
  background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red), var(--brand-red-dark));
  padding: 32px 16px 16px; position: relative;
}
.phone-status { display: flex; justify-content: space-between; color: rgba(255,255,255,0.9); font-size: 10px; font-weight: 600; }
.phone-bonus-label { font-size: 10px; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 12px; }
.phone-bonus-sum { color: #fff; font-weight: 800; font-size: 24px; margin-top: 2px; font-variant-numeric: tabular-nums; }
.phone-bonus-sub { font-size: 10px; color: rgba(255,255,255,0.8); margin-top: 2px; }
.phone-live-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--live); padding: 2px 6px; border-radius: 4px;
  font-size: 9px; font-weight: 700; color: #fff;
}
.phone-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse-live 1.8s ease-in-out infinite; }
.phone-tabs {
  background: var(--surface-elevated); border-bottom: 1px solid var(--border);
  padding: 8px 12px; display: flex; gap: 4px; font-size: 10px;
}
.phone-tab { padding: 4px 8px; border-radius: 4px; color: var(--muted); }
.phone-tab.active { background: rgba(40,167,69,0.2); color: var(--cta); font-weight: 600; }
.phone-list { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.phone-list-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px 10px;
}
.phone-list-emoji { font-size: 16px; flex-shrink: 0; }
.phone-list-title { font-size: 11px; font-weight: 600; color: #fff; }
.phone-list-meta { font-size: 10px; color: var(--muted); }
.phone-list-arrow { color: var(--muted); flex-shrink: 0; }
.phone-bottom { padding: 12px; background: var(--surface); border-top: 1px solid var(--border); }
.phone-cta {
  background: var(--cta); color: #fff; text-align: center; font-weight: 700;
  padding: 10px; border-radius: 6px; box-shadow: var(--shadow-cta);
  display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 14px;
}
.phone-version { text-align: center; font-size: 10px; color: var(--muted); margin-top: 6px; }

/* Floating cards (only desktop) */
.phone-floating {
  position: absolute; display: none;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px; box-shadow: 0 12px 36px -8px rgba(0,0,0,0.7);
}
@media (min-width: 768px) { .phone-floating { display: block; } }
.phone-floating.license { bottom: -24px; left: -24px; width: 192px; }
.phone-floating.bonus {
  top: -16px; right: -16px; width: 112px;
  background: var(--gold); color: #000;
  text-align: center; padding: 12px;
  box-shadow: 0 12px 36px -8px rgba(255,193,7,0.55);
}
.phone-floating-license-icon { color: var(--cta); }
.phone-floating-license-label { font-size: 10px; text-transform: uppercase; color: var(--muted); }
.phone-floating-license-value { font-size: 11px; font-weight: 600; color: #fff; }
.phone-floating-license-sub { font-size: 10px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.phone-floating-bonus-sum { font-size: 18px; font-weight: 800; margin-top: 2px; font-variant-numeric: tabular-nums; }
.phone-floating-bonus-sub { font-size: 12px; opacity: 0.8; }

/* === Providers === */
.providers-list { display: flex; flex-wrap: wrap; gap: 8px; }
.provider-badge {
  background: var(--surface-elevated); border: 1px solid var(--border);
  border-radius: 4px; padding: 6px 12px;
  font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 400;
}
.provider-badge.more { background: rgba(40,167,69,0.1); border-color: rgba(40,167,69,0.3); color: var(--cta); }

/* === Two-column (for sections with table on side) === */
.two-col { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 768px) { .two-col { grid-template-columns: 3fr 2fr; } }

/* === Comparison cards === */
.compare-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .compare-grid { grid-template-columns: 1fr 1fr; } }
.compare-card-bet { border-color: rgba(40,167,69,0.4); box-shadow: 0 0 0 1px rgba(40,167,69,0.25); }
.compare-card-header { border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.compare-card-title-row { display: flex; align-items: center; justify-content: space-between; }
.compare-card-title { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 700; color: #fff; }
.compare-card-desc { font-size: 14px; color: var(--muted); margin-top: 4px; }
.compare-card-list { display: flex; flex-direction: column; gap: 12px; padding: 20px 0 0; }
.compare-card-list li { display: flex; gap: 10px; font-size: 14px; color: var(--muted); }
.compare-mark { color: var(--cta); flex-shrink: 0; margin-top: 2px; }
.compare-card-note { padding-top: 8px; font-size: 12px; color: rgba(156,163,175,0.8); }

/* === Stats card (mirror tab) === */
.stats-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-card); overflow: hidden; }
.stats-card-header { border-bottom: 1px solid var(--border); padding: 16px 20px; }
.stats-card-title { font-size: 16px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; }
.stats-card-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 12px 20px; border-bottom: 1px solid var(--border); }
.stats-card-row:last-child { border-bottom: none; }
.stats-card-label { font-size: 12px; color: var(--muted); }
.stats-card-value { font-size: 12px; font-weight: 500; color: #fff; text-align: right; }

/* === Sources list (mirror tab) === */
.sources-card { background: var(--surface-elevated); border: 1px solid var(--border); border-radius: 8px; padding: 16px; margin-top: 16px; }
.sources-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.sources-list { display: flex; flex-direction: column; gap: 6px; list-style: none; padding: 0; }
.sources-list li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.sources-list .ok { color: var(--cta); }
.sources-list .no { color: var(--alert); }

/* === Phishing checklist === */
.phishing-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .phishing-grid { grid-template-columns: 1fr 1fr; } }
.phishing-item {
  background: var(--surface); border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px; padding: 16px;
  transition: border-color 0.2s;
}
.phishing-item:hover { border-color: rgba(239,68,68,0.6); }
.phishing-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(239,68,68,0.15); color: var(--alert);
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.phishing-text { font-size: 14px; color: var(--muted); }

/* === Slots table rtp === */
.rtp-cell { color: var(--cta); font-weight: 600; font-variant-numeric: tabular-nums; }

/* === Misc === */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-3 { margin-bottom: 12px; }
.flex-items-center { display: flex; align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
