/* =============================================
   PLATIN CASINO ONLINE — Master Stylesheet
   Brand: Dark Navy #09152a | Gold #c8960c
   ============================================= */

/* 1. ROOT VARIABLES */
:root {
  --bg-deep:      #040d1a;
  --bg-primary:   #09152a;
  --bg-secondary: #0f1f3d;
  --bg-card:      #142445;
  --bg-glass:     rgba(14, 28, 60, 0.75);
  --gold:         #c8960c;
  --gold-mid:     #e5aa18;
  --gold-light:   #f5c842;
  --gold-pale:    rgba(200, 150, 12, 0.12);
  --gold-border:  rgba(200, 150, 12, 0.35);
  --white:        #ffffff;
  --white-90:     rgba(255,255,255,0.9);
  --white-70:     rgba(255,255,255,0.7);
  --white-40:     rgba(255,255,255,0.4);
  --text-muted:   #7fa3c8;
  --border:       rgba(255,255,255,0.07);
  --success:      #22c55e;
  --warning:      #f59e0b;
  --danger:       #ef4444;
  --rad-xs:  4px;
  --rad-sm:  8px;
  --rad-md:  14px;
  --rad-lg:  22px;
  --rad-xl:  32px;
  --shadow-gold: 0 0 40px rgba(200,150,12,0.18);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 3. TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--white-90); }
.text-gold { color: var(--gold-light); }
.text-muted { color: var(--text-muted); font-size: 0.9rem; }
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 4. LAYOUT */
.container { width: min(1200px, 94vw); margin: 0 auto; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }

/* 5. SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-label {
  display: inline-block;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* 6. NAVIGATION */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4,13,26,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 46px;
  height: 46px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text span:first-child {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.nav-logo-text span:last-child {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--white-70);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--rad-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: var(--gold-pale);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-login {
  color: var(--white-70);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  transition: var(--transition);
}
.nav-login:hover { color: var(--white); border-color: var(--gold-border); }
.btn-play {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep) !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--rad-sm);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(200,150,12,0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200,150,12,0.5);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  background: rgba(4,13,26,0.98);
  border-top: 1px solid var(--gold-border);
  padding: 20px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--white-70);
  padding: 12px 24px;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold-light); background: var(--gold-pale); }
.mobile-menu .btn-play {
  display: block;
  margin: 16px 24px;
  text-align: center;
  padding: 14px;
  font-size: 1rem;
}
.mobile-top-cta {
  display: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: 0.04em;
}

/* 7. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--rad-md);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(200,150,12,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200,150,12,0.55);
  color: var(--bg-deep);
}
.btn-secondary {
  background: var(--gold-pale);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}
.btn-secondary:hover {
  background: rgba(200,150,12,0.2);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold-border); color: var(--gold-light); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; border-radius: var(--rad-lg); }
.btn-sm { padding: 8px 18px; font-size: 0.88rem; border-radius: var(--rad-sm); }

/* 8. CARDS */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200,150,12,0.2);
  border-radius: var(--rad-lg);
}
.card-body { padding: 24px; }
.card-body-lg { padding: 32px; }

/* 9. BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-gold  { background: var(--gold-pale); color: var(--gold-light); border: 1px solid var(--gold-border); }
.badge-green { background: rgba(34,197,94,0.12); color: var(--success); }
.badge-red   { background: rgba(239,68,68,0.12); color: var(--danger); }
.badge-blue  { background: rgba(59,130,246,0.12); color: #60a5fa; }

/* 10. TABLES */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--rad-md); }
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 0.95rem;
}
.data-table thead th {
  background: rgba(200,150,12,0.12);
  color: var(--gold-light);
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--gold-border);
  white-space: nowrap;
}
.data-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--white-90);
  white-space: nowrap;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.82rem;
}
.rank-1 { background: linear-gradient(135deg,#ffd700,#ffab00); color: #000; }
.rank-2 { background: linear-gradient(135deg,#c0c0c0,#a8a8a8); color: #000; }
.rank-3 { background: linear-gradient(135deg,#cd7f32,#b06820); color: #fff; }
.rank-n { background: var(--border); color: var(--text-muted); }

/* 11. CHARTS — CSS/SVG */
/* Bar Chart */
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-item { display: flex; flex-direction: column; gap: 6px; }
.bar-header { display: flex; justify-content: space-between; align-items: center; }
.bar-label { font-size: 0.88rem; color: var(--white-90); }
.bar-value { font-size: 0.88rem; font-weight: 700; color: var(--gold-light); }
.bar-track {
  height: 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.bar-fill.blue  { background: linear-gradient(90deg,#3b82f6,#60a5fa); }
.bar-fill.green { background: linear-gradient(90deg,#22c55e,#4ade80); }
.bar-fill.red   { background: linear-gradient(90deg,#ef4444,#f87171); }
.bar-fill.purple{ background: linear-gradient(90deg,#8b5cf6,#a78bfa); }

/* Horizontal comparison (named progress bars) */
.hbar-chart { display: flex; flex-direction: column; gap: 18px; }
.hbar-item {}
.hbar-meta { display: flex; justify-content: space-between; margin-bottom: 6px; }
.hbar-name { font-size: 0.9rem; color: var(--white-90); font-weight: 600; }
.hbar-num  { font-size: 0.9rem; color: var(--gold-light); font-weight: 700; }
.hbar-track { height: 14px; background: rgba(255,255,255,0.07); border-radius: 14px; overflow: hidden; }
.hbar-fill  { height: 100%; border-radius: 14px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); }

/* Donut Chart */
.donut-wrap { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.donut-svg  { flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 12px; }
.donut-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--white-90);
}
.donut-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Stat counters */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-radius: var(--rad-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.stat-number {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold),var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* Rating Stars */
.star-row { display: flex; gap: 4px; }
.star { color: var(--gold); font-size: 1rem; }
.star.empty { color: var(--border); }

/* 12. HERO SECTIONS */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,150,12,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(59,130,246,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-secondary) 100%);
}
.hero-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8960c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content p  { font-size: 1.1rem; color: var(--white-70); margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white-70);
}
.hero-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* 13. SLOT CARDS */
.slot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 30px rgba(200,150,12,0.2);
  transform: translateY(-5px);
}
.slot-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.slot-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.slot-card:hover .slot-thumb-img { transform: scale(1.06); }
.slot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,13,26,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: var(--transition);
}
.slot-card:hover .slot-overlay { opacity: 1; }
.slot-info { padding: 16px; }
.slot-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.slot-provider { font-size: 0.8rem; color: var(--text-muted); }
.slot-rtp {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
}
.slot-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }

/* 14. BONUS CARDS */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.bonus-card.featured { border-color: var(--gold-border); }
.bonus-card.featured::before { height: 4px; }
.bonus-amount {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 12px 0;
  line-height: 1;
}
.bonus-tag { font-size: 0.78rem; color: var(--text-muted); }
.bonus-features { margin-top: 16px; }
.bonus-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--white-90);
}
.bonus-feature:last-child { border-bottom: none; }
.check-icon { color: var(--success); font-size: 0.75rem; flex-shrink: 0; }
.x-icon { color: var(--danger); font-size: 0.75rem; flex-shrink: 0; }

/* 15. TRUST BAR */
.trust-bar {
  background: rgba(200,150,12,0.06);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white-70);
  font-weight: 500;
}
.trust-icon {
  width: 28px;
  height: 28px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* 16. PAYMENT ICONS */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.payment-icon-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 48px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white-70);
  transition: var(--transition);
}
.payment-icon-box:hover { border-color: var(--gold-border); color: var(--white); }

/* 17. STEPS / PROCESS */
.steps-row { display: flex; align-items: flex-start; gap: 0; position: relative; }
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
  z-index: 0;
}
.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bg-deep);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200,150,12,0.4);
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); }

/* 18. ACCORDION/FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold-border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 12px;
}
.faq-arrow {
  width: 24px;
  height: 24px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.7;
}

/* 19. AUTHOR CARD */
.author-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--rad-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.author-avatar {
  width: 120px;
  height: 150px;
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 3px solid var(--gold-border);
  flex-shrink: 0;
}
.author-name {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.author-title {
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.author-bio { font-size: 0.95rem; color: var(--white-70); line-height: 1.8; }
.author-stats { display: flex; gap: 24px; margin-top: 20px; }
.author-stat { text-align: center; }
.author-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.author-stat-lbl { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* 20. FOOTER */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-border);
  padding-top: 60px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--gold-border); color: var(--gold-light); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-border);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal a { color: var(--text-muted); text-decoration: underline; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pay-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--rad-xs);
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}
.responsible-bar {
  background: rgba(239,68,68,0.07);
  border-top: 1px solid rgba(239,68,68,0.2);
  padding: 14px 0;
  text-align: center;
}
.responsible-bar p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
.responsible-bar a { color: var(--danger); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--danger);
}

/* 21. SEO TEXT SECTION */
.seo-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.seo-content {
  max-width: 900px;
  margin: 0 auto;
}
.seo-content h2 {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin: 36px 0 14px;
}
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin: 24px 0 10px;
}
.seo-content p {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 16px;
}
.seo-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.seo-content ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.7;
}
.seo-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 12px;
}
.seo-content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.seo-content a:hover { color: var(--white); }

/* 22. FORM STYLES */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white-90);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--rad-md);
  padding: 13px 18px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.12);
}
.form-control::placeholder { color: var(--text-muted); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.form-check label { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.form-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
}
.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.form-divider span {
  position: relative;
  background: var(--bg-card);
  padding: 0 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-error { font-size: 0.82rem; color: var(--danger); margin-top: 6px; }
.form-success { font-size: 0.82rem; color: var(--success); margin-top: 6px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .form-control { padding-left: 44px; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

/* 23. TABS */
.tabs { display: flex; gap: 4px; background: var(--bg-secondary); border-radius: var(--rad-md); padding: 4px; margin-bottom: 28px; }
.tab-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--rad-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
}
.tab-btn:hover:not(.active) { color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* 24. TICKER / LIVE */
.ticker-bar {
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-secondary));
  border-bottom: 1px solid var(--gold-border);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-70);
}
.ticker-item strong { color: var(--gold-light); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 25. JACKPOT COUNTER */
.jackpot-counter {
  font-family: 'Courier New', monospace;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 0 60px rgba(245,200,66,0.5);
  letter-spacing: 0.08em;
  line-height: 1;
}

/* 26. RATING */
.rating-bar { display: flex; flex-direction: column; gap: 8px; }
.rating-row { display: flex; align-items: center; gap: 12px; }
.rating-label { font-size: 0.85rem; color: var(--white-90); min-width: 120px; }
.rating-track { flex: 1; height: 8px; background: rgba(255,255,255,0.07); border-radius: 8px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 8px; }
.rating-score { font-size: 0.85rem; font-weight: 700; color: var(--gold-light); min-width: 36px; text-align: right; }

/* 27. MISC */
.highlight-box {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--rad-sm);
  padding: 16px 20px;
  margin: 20px 0;
}
.highlight-box p { margin: 0; font-size: 0.9rem; color: var(--white-90); }
.tag-group { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.78rem;
  color: var(--white-70);
  transition: var(--transition);
}
.tag:hover { border-color: var(--gold-border); color: var(--gold-light); }
.icon-box {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--text-muted); }
/* Notification */
.notification-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-deep);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}
.notification-strip a { color: var(--bg-deep); text-decoration: underline; }

/* =============================================
   RESPONSIVE — MOBILE FIRST
   ============================================= */
@media (max-width: 1024px) {
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-login { display: none; }
  .hamburger { display: flex; }
  .mobile-top-cta { display: block; }
  .section { padding: 50px 0; }
  .section-lg { padding: 60px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { flex-direction: column; gap: 24px; }
  .steps-row::before { display: none; }
  .hero { min-height: 460px; }
  .author-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .author-stats { justify-content: center; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .donut-wrap { flex-direction: column; align-items: center; }
  .trust-items { gap: 16px; }
  .table-wrap { margin-left: -20px; margin-right: -20px; border-radius: 0; }
  .data-table { min-width: 520px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 1.8rem; }
  .hero { min-height: 380px; }
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; text-align: center; }
  .tabs { flex-direction: column; }
  .author-avatar { width: 100px; height: 125px; }
  .nav-inner { height: 60px; }
  .nav-logo-img { width: 38px; height: 38px; }
}

/* =============================================
   ACCESSIBILITY — FOCUS & SKIP LINK
   ============================================= */
/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gold-light);
  color: var(--bg-deep);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 0 var(--rad-sm) var(--rad-sm);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Global focus ring using :focus-visible (keyboard only) */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Remove outline for mouse users */
:focus:not(:focus-visible) { outline: none; }

/* Interactive element minimum touch target: 44×44px */
.btn, .btn-play, .nav-login, .hamburger, .tab-btn, .faq-question {
  min-height: 44px;
}
.hamburger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

/* Check / cross / partial for comparison tables */
.check   { color: var(--success); font-weight: 600; }
.cross   { color: var(--danger);  font-weight: 600; }
.partial { color: var(--warning); font-weight: 600; }

/* Anonymous player name in tables */
.anonymous-player { color: var(--white-70); }

/* Column chart animation */
.col-bar { transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; position: relative; border-radius: 6px 6px 0 0; }
.col-item { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: stretch; gap: 8px; }
.col-label { font-size: 0.7rem; color: var(--text-muted); text-align: center; word-break: break-word; line-height: 1.3; }
.column-chart { display: flex; gap: 8px; align-items: flex-end; }
.col-chart-wrap .column-chart { height: 200px; }

/* =============================================
   PERFORMANCE — REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .ticker-inner { animation: none; }
}


/* AI Image Overrides */
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25; /* Navy dark blend mode effect */
    z-index: 0;
    mix-blend-mode: luminosity;
}
.hero-bg svg {
    display: none !important;
}
.hero-bg::after {
    background: linear-gradient(135deg, rgba(4,13,26,0.95) 0%, rgba(9,21,42,0.8) 100%);
    opacity: 0.8 !important;
}
.slot-thumb svg {
    display: none !important;
}

/* Phase 2 Overrides */
.jc-image svg { display: none !important; }
.jc-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.jc-image {
    background: #040d1a !important; /* fallback */
}
/* Ensure generic hero sections with inline bounds get image overlays */
.hero-generic-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    mix-blend-mode: luminosity;
    z-index: 0;
    pointer-events: none;
}
