/* ========================================
   Casea Casino — Design System & Styles
   ======================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* --- Custom Properties --- Casea palette: deep navy + steel-blue + gold --- */
:root {
  --color-bg-primary: #0f2a44;          /* deepest navy */
  --color-bg-secondary: #17354f;        /* deep navy */
  --color-bg-card: #1b405f;             /* mid navy (matches casea1.com body) */
  --color-bg-card-hover: #27547c;       /* lighter navy on hover */
  --color-surface: rgba(141, 187, 226, 0.04);
  --color-gold: #e6b853;                /* Casea logo gold */
  --color-gold-light: #f4d588;
  --color-gold-dark: #b8903f;
  --color-accent: #8dbbe2;              /* Casea steel-blue accent */
  --color-purple: #27547c;              /* legacy-alias → mid navy */
  --color-purple-light: #8dbbe2;        /* legacy-alias → steel-blue */
  --color-blue-glow: #8dbbe2;
  --color-text-primary: #ffffff;
  --color-text-secondary: #c8d8e8;
  --color-text-muted: #8dbbe2;
  --color-success: #7dd3a0;
  --color-danger: #e86a6a;
  --color-warning: #e6b853;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 1rem);
  --text-base: clamp(0.9375rem, 0.875rem + 0.35vw, 1.125rem);
  --text-lg: clamp(1rem, 0.925rem + 0.5vw, 1.375rem);
  --text-xl: clamp(1.2rem, 1.05rem + 0.8vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  --text-3xl: clamp(1.75rem, 1.4rem + 1.75vw, 3.25rem);
  --text-hero: clamp(1.65rem, 1.3rem + 2.5vw, 4.5rem);
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-section: clamp(3rem, 2rem + 5vw, 6rem);
  --max-width: 1280px;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --glass-bg: rgba(27, 64, 95, 0.55);
  --glass-border: rgba(141, 187, 226, 0.15);
  --glass-blur: blur(16px);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-glow-gold: 0 0 20px rgba(230, 184, 83, 0.4);
  --shadow-glow-purple: 0 0 20px rgba(141, 187, 226, 0.35);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* --- Base --- */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background:
    radial-gradient(ellipse at top left, rgba(141, 187, 226, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(230, 184, 83, 0.05), transparent 60%),
    linear-gradient(180deg, #17354f 0%, #0f2a44 100%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text-primary);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); margin-bottom: var(--space-lg); }
h3 { font-size: var(--text-2xl); margin-bottom: var(--space-md); }
h4 { font-size: var(--text-xl); margin-bottom: var(--space-sm); }

p { margin-bottom: var(--space-md); color: var(--color-text-secondary); }

/* --- Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-lg); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-gradient {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-success { color: var(--color-success); }
.text-danger { color: var(--color-danger); }
.text-muted { color: var(--color-text-muted); }
.text-sm { font-size: var(--text-sm); }
.text-xs { font-size: var(--text-xs); }
.text-lg { font-size: var(--text-lg); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-3xl); }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* --- Section --- */
.section {
  padding: var(--space-section) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
  border-radius: 2px;
  transition: width 0.6s ease;
}

.section-header:hover h2::after,
.section-header h2.visible::after {
  width: 60px;
}

.section-header p {
  max-width: 600px;
  margin: var(--space-md) auto 0;
  font-size: var(--text-lg);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
  margin: var(--space-md) auto;
  border-radius: 2px;
  animation: divider-pulse 3s ease-in-out infinite;
}

@keyframes divider-pulse {
  0%, 100% { width: 60px; opacity: 1; }
  50% { width: 80px; opacity: 0.8; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: #0a0e1a;
  box-shadow: var(--shadow-glow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(232, 185, 78, 0.5);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: #0a0e1a;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--text-base);
}

/* --- Glass Card --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.glass-card:hover {
  border-color: rgba(232, 185, 78, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 185, 78, 0.1);
  background: linear-gradient(135deg, rgba(26, 34, 53, 0.7), rgba(28, 38, 64, 0.7));
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #0a0e1a;
}

.badge-purple {
  background: var(--color-purple);
  color: white;
}

.badge-success {
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-success);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-live {
  background: var(--color-danger);
  color: white;
  animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: var(--space-xs) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.logo-img {
  height: 26px;
  width: auto;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.nav-main {
  display: none;
}

.nav-main a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-sm);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--color-gold);
}

.header-actions {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

.header-cta {
  white-space: nowrap;
}

.header-login {
  border-width: 1px;
  padding: 0.5rem 1rem !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-bg-secondary);
  z-index: 999;
  padding: 5rem var(--space-xl) var(--space-xl);
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  display: block;
  padding: var(--space-md);
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-gold);
  background: rgba(232, 185, 78, 0.1);
}

.mobile-nav .btn {
  margin-top: var(--space-md);
  width: 100%;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.nav-overlay.active { display: block; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.breadcrumbs a { color: var(--color-text-secondary); transition: color var(--transition-fast); }
.breadcrumbs a:hover { color: var(--color-gold); }
.breadcrumbs span { margin: 0 var(--space-sm); }

/* --- Hero Section --- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .site-header {
    padding: var(--space-xs) 0;
  }
  .site-header.scrolled {
    padding: var(--space-xs) 0;
  }
  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: var(--space-xl);
  }
  .hero-content {
    padding: var(--space-md) var(--space-sm);
  }
  .hero-badge {
    font-size: var(--text-xs);
    padding: 0.25rem var(--space-sm);
    margin-bottom: var(--space-md);
  }
  .hero h1 {
    margin-bottom: var(--space-sm);
    line-height: 1.15;
  }
  .hero-amount {
    font-size: var(--text-hero);
  }
  .hero-subtitle {
    font-size: var(--text-xs);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
  }
  .hero-ctas {
    margin-bottom: var(--space-lg);
    gap: var(--space-sm);
  }
  .hero-ctas .btn {
    width: 100%;
    padding: 0.7rem 1.25rem;
    font-size: var(--text-xs);
  }
  .hero-trust {
    gap: var(--space-sm) var(--space-md);
  }
  .trust-item {
    font-size: var(--text-xs);
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 185, 78, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 212, 170, 0.08) 0%, transparent 50%);
  z-index: 0;
}

.hero-bg-overlay,
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.85) 0%, rgba(10,14,26,0.6) 50%, rgba(10,14,26,0.85) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: none;
  margin: 0 auto;
  padding: var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(232, 185, 78, 0.1);
  border: 1px solid rgba(232, 185, 78, 0.3);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 50px;
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-bottom: var(--space-xl);
}

.hero h1 {
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-amount {
  display: block;
  font-size: calc(var(--text-hero) * 1.15);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(232, 185, 78, 0.4)) drop-shadow(0 0 60px rgba(232, 185, 78, 0.2));
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(232, 185, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 6s; }
.particle:nth-child(3) { left: 35%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 50%; animation-delay: 0.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 65%; animation-delay: 1.5s; animation-duration: 6.5s; }
.particle:nth-child(6) { left: 75%; animation-delay: 3s; animation-duration: 8s; }
.particle:nth-child(7) { left: 85%; animation-delay: 2.5s; animation-duration: 7.5s; }
.particle:nth-child(8) { left: 92%; animation-delay: 0.8s; animation-duration: 6s; }

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* --- Stats Counter Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: calc(var(--space-section) * -0.5);
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
  display: block;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* --- Game Grid --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.games-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}

.game-card {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
}

.game-card > a.game-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(232, 185, 78, 0.15);
  border-color: rgba(232, 185, 78, 0.3);
}

.game-thumb {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-bg-card), transparent 50%);
  transition: background var(--transition-base);
}

.game-card:hover .game-thumb::after {
  background: linear-gradient(to top, var(--color-bg-card) 5%, rgba(232, 185, 78, 0.08) 50%, transparent 100%);
}

.game-card-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 2;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.game-card:hover .game-overlay { opacity: 1; }

.game-info {
  padding: var(--space-md);
}

.game-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.game-provider {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.game-rtp {
  font-size: var(--text-xs);
  color: var(--color-success);
  margin-top: 2px;
}

/* --- Promo Banners --- */
.promo-banners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.promo-banner {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base);
}

.promo-banner:hover {
  transform: scale(1.03);
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Promo Banners Scroll (Carousel) --- */
.promo-banners-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.promo-banners-scroll {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-dark) transparent;
}

.promo-banners-scroll::-webkit-scrollbar {
  height: 6px;
}

.promo-banners-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.promo-banners-scroll::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 3px;
}

.promo-banner-card {
  flex: 0 0 min(400px, 80vw);
  scroll-snap-align: start;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.promo-banner-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(232, 185, 78, 0.15);
}

.promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Game Thumb Image --- */
.game-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* --- Winners Table --- */
.winners-section {
  background: var(--color-bg-secondary);
}

.winners-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.winners-table {
  min-width: 500px;
}

.winners-table th {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.winners-table td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.winners-table tr {
  transition: background var(--transition-fast);
}

.winners-table tbody tr:hover {
  background: rgba(232, 185, 78, 0.05);
}

.winner-amount {
  font-weight: 700;
  font-family: var(--font-heading);
}

.winner-new {
  animation: slideInWinner 0.5s ease-out;
}

@keyframes slideInWinner {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Bonus Cards --- */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.bonus-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
}

.bonus-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.bonus-amount {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.bonus-desc {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.feature-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
}

.feature-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* --- Community highlights (replaces review testimonials) --- */
.community-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.community-card {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.community-card .community-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  color: white;
  flex-shrink: 0;
}

.community-card h3 {
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  font-size: var(--text-lg);
}

.community-card p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.community-card .community-meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* --- Providers --- */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.provider-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-base);
}

.provider-card:hover {
  border-color: rgba(232, 185, 78, 0.3);
  transform: translateY(-2px);
}

.provider-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.provider-logo {
  width: auto;
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  margin: 0 auto var(--space-sm);
  filter: brightness(0.9);
  transition: filter var(--transition-base);
}

.provider-card:hover .provider-logo {
  filter: brightness(1.1);
}

.provider-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.provider-count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  background: var(--color-bg-card);
  transition: border-color var(--transition-base);
}

.faq-item.active {
  border-color: rgba(232, 185, 78, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: var(--text-base);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--color-gold); }

.faq-icon {
  font-size: var(--text-lg);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-gold);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
/* Native <details> support */
details.faq-item > .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
details.faq-item[open] > .faq-answer { max-height: 800px; }
details.faq-item > summary.faq-question { list-style: none; }
details.faq-item > summary.faq-question::-webkit-details-marker { display: none; }
details.faq-item > summary.faq-question::after {
  content: "+";
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  line-height: 1;
  margin-left: auto;
}
details.faq-item[open] > summary.faq-question::after { transform: rotate(45deg); }
details.faq-item[open] { border-color: rgba(232, 185, 78, 0.4); }
details.faq-item > .faq-answer > p {
  padding: 0 var(--space-xl) var(--space-lg);
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.75;
}
details.faq-item > .faq-answer > p:first-child { padding-top: 0; }
details.faq-item .faq-answer a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 2px; }

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* --- Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
  counter-increment: step;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #0a0e1a;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.step-card h4 { font-family: var(--font-body); font-weight: 600; }
.step-card p { font-size: var(--text-sm); margin-bottom: 0; }

/* --- Rating Stars --- */
/* review stars removed — operator site, no ratings */

/* --- Tables (payment, specs, etc.) --- */
.data-table {
  width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.data-table thead {
  background: var(--color-bg-card);
}

.data-table th {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  text-align: left;
  font-weight: 600;
}

.data-table td {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.data-table tbody tr:hover {
  background: rgba(232, 185, 78, 0.03);
}

.data-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* pros/cons removed — operator presentation, not a review */

/* --- Trust strip (5 metrics) --- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  padding: var(--space-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  margin: var(--space-2xl) 0;
}
.trust-strip .trust {
  text-align: center;
  padding: var(--space-md);
  border-right: 1px solid var(--glass-border);
}
.trust-strip .trust:last-child { border-right: none; }
.trust-strip .trust b {
  display: block;
  color: var(--color-text-primary);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: var(--text-xl);
  margin-bottom: 4px;
  font-weight: 700;
}
.trust-strip .trust span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}
@media (max-width: 640px) {
  .trust-strip .trust { border-right: none; border-bottom: 1px solid var(--glass-border); }
  .trust-strip .trust:last-child { border-bottom: none; }
}

/* --- Team grid (operator team E-E-A-T) --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.team-card {
  padding: var(--space-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: var(--text-xl);
  color: white;
  margin-bottom: var(--space-sm);
}
.team-name {
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-lg);
  margin: 0;
}
.team-role {
  font-size: var(--text-sm);
  color: var(--color-gold);
  font-weight: 600;
  margin: 0;
}
.team-bio {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: var(--space-xs) 0 0;
}
.team-card a {
  color: var(--color-gold);
  font-size: var(--text-xs);
  text-decoration: none;
}
.team-card a:hover { text-decoration: underline; }

/* --- Bonus tiers (replaces competitive comparison) --- */
.bonus-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.bonus-tier-card {
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  background: linear-gradient(160deg, rgba(232,185,78,0.08), rgba(255,255,255,0.02));
  position: relative;
}
.bonus-tier-card.highlight {
  border-color: var(--color-gold);
}
.bonus-tier-card .tier-label {
  display: inline-block;
  padding: 4px 12px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  background: rgba(232,185,78,0.12);
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}
.bonus-tier-card .tier-amount {
  font-family: 'Poppins', sans-serif;
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  font-weight: 800;
  margin: var(--space-sm) 0;
  line-height: 1.1;
}
.bonus-tier-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin: 0;
}

/* --- Language picker --- */
.lang-picker {
  position: relative;
  display: inline-block;
}
.lang-picker__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--color-text-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.lang-picker__btn:hover { border-color: var(--color-gold); }
.lang-picker__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: var(--color-bg-elevated, #1a1530);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: 6px;
  display: none;
  z-index: 60;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.lang-picker[data-open="true"] .lang-picker__menu { display: block; }
.lang-picker__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
}
.lang-picker__menu a:hover,
.lang-picker__menu a.active {
  background: rgba(232,185,78,0.1);
  color: var(--color-text-primary);
}

/* --- Author Box --- */
.author-box {
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: var(--space-xl);
}

@media (max-width: 599px) {
  .author-box {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg);
    gap: var(--space-md);
  }
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-gold);
  box-shadow: 0 0 20px rgba(232, 185, 78, 0.2);
}

.author-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-text-primary);
}

.author-title {
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.author-bio {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

.author-social {
  display: flex;
  gap: var(--space-md);
}

.author-social a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.author-social a:hover { color: var(--color-gold); }

/* --- Byline --- */
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.byline-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.byline-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.byline a { color: var(--color-gold); }

/* --- Review Score Cards --- */
.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.score-card {
  text-align: center;
  padding: var(--space-lg);
}

.score-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
}

.score-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.score-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: var(--space-sm);
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 2px;
  transition: width 1s ease-out;
}

/* --- TOC (Table of Contents) --- */
.toc {
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.toc h4 {
  font-family: var(--font-body);
  margin-bottom: var(--space-md);
  color: var(--color-gold);
}

.toc ol {
  list-style: decimal;
  padding-left: var(--space-lg);
}

.toc li {
  padding: var(--space-xs) 0;
}

.toc a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.toc a:hover { color: var(--color-gold); }

/* --- Tabs --- */
.tabs {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-xl);
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: transparent;
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.tab-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }

.tab-btn.active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #0a0e1a;
  border-color: transparent;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* --- Deposit Steps (bonus page) --- */
.deposit-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.deposit-step {
  padding: var(--space-xl);
  position: relative;
}

.deposit-step-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.deposit-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #0a0e1a;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deposit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.deposit-detail {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255,255,255,0.03);
  border-radius: var(--border-radius-sm);
}

.deposit-detail-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-gold);
}

.deposit-detail-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* --- Metric Cards --- */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.metric-card {
  text-align: center;
  padding: var(--space-lg);
}

.metric-value {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold);
}

.metric-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(232, 185, 78, 0.1));
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--glass-border);
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto var(--space-xl);
}

/* --- Payment Icons Row --- */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.payment-icon {
  width: 60px;
  height: 40px;
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.payment-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* --- Specs Table (review page) --- */
.specs-table {
  width: 100%;
}

.specs-table tr { border-bottom: 1px solid var(--glass-border); }

.specs-table th {
  text-align: left;
  padding: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  width: 40%;
}

.specs-table td {
  padding: var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-section h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer-section p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-links a {
  display: block;
  padding: var(--space-xs) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--color-gold); }

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: var(--space-xl);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.footer-legal {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 800px;
  margin: var(--space-md) auto 0;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
}

/* --- Sticky Bottom Bar --- */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.95) 0%, rgba(10, 14, 26, 0.99) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 900;
  border-top: 1px solid rgba(232, 185, 78, 0.25);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.sticky-bar-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.sticky-bar-text strong {
  color: var(--color-gold);
  font-weight: 700;
}

.sticky-bar-btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem !important;
  font-size: 0.7rem !important;
  white-space: nowrap;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(232, 185, 78, 0.3); }
  50% { box-shadow: 0 0 25px rgba(232, 185, 78, 0.5); }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 90px 0 var(--space-2xl);
  text-align: left;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(232, 185, 78, 0.08) 0%, transparent 50%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.page-hero .breadcrumb a {
  color: var(--color-gold);
  transition: opacity var(--transition-fast);
}

.page-hero .breadcrumb a:hover { opacity: 0.8; }

.page-hero h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.page-hero-desc {
  font-size: var(--text-base);
  max-width: 600px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.byline-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.byline-author a { color: var(--color-gold); }

.byline-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.byline-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (max-width: 767px) {
  .page-hero { padding: 70px 0 var(--space-xl); }
  .page-hero h1 { font-size: var(--text-2xl); }
  .page-hero-desc { font-size: var(--text-sm); }
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 60px;
  left: var(--space-md);
  right: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  z-index: 950;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.show { display: block; }

.cookie-banner p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.cookie-btns {
  display: flex;
  gap: var(--space-md);
}

/* --- Review Content --- */
.body-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
}

.body-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.body-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.body-content ul li {
  padding: var(--space-xs) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  position: relative;
  padding-left: var(--space-lg);
}

.body-content ul li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* --- Review Section --- */
.content-section .body-content {
  padding: var(--space-xl);
}

.content-section h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.content-section h3:first-child {
  margin-top: 0;
}

/* --- Highlight callout (operator note, non-review) --- */
.callout-highlight {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(232, 185, 78, 0.05);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--border-radius-sm);
}

.callout-highlight p {
  margin-bottom: 0;
  line-height: 1.7;
}

.callout-highlight a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 479px) {
  .content-section .body-content { padding: var(--space-md); }
  .content-section h3 { font-size: var(--text-lg); margin-top: var(--space-lg); }
  .callout-highlight { padding: var(--space-md); }
}

/* --- Animations --- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */

/* --- Mobile SEO & Typography Optimization --- */
@media (max-width: 479px) {
  body { padding-bottom: 60px; }
  h2 { font-size: var(--text-2xl); margin-bottom: var(--space-md); }
  h3 { font-size: var(--text-xl); margin-bottom: var(--space-sm); }
  h4 { font-size: var(--text-lg); }
  .section { padding: var(--space-2xl) 0; }
  .section-header { margin-bottom: var(--space-xl); }
  .section-header p { font-size: var(--text-sm); }
  .container { padding: 0 var(--space-md); }
  .btn { font-size: var(--text-sm); padding: 0.75rem 1.25rem; }
  .btn-lg { padding: 0.875rem 1.5rem; font-size: var(--text-sm); }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
}

@media (min-width: 480px) and (max-width: 767px) {
  body { padding-bottom: 60px; }
  .section { padding: var(--space-2xl) 0; }
  .section-header { margin-bottom: var(--space-xl); }
}

@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; }
  .bonus-grid { grid-template-columns: 1fr; }
  .metrics-row { grid-template-columns: repeat(4, 1fr); }
  .promo-banners { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .site-header { padding: var(--space-md) 0; }
  .site-header.scrolled { padding: var(--space-sm) 0; }
  .logo-img { height: 34px; }
  .nav-main { display: flex; align-items: center; gap: var(--space-xs); }
  .header-actions { display: flex; }
  .hamburger { display: none; }

  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .games-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .community-highlights { grid-template-columns: repeat(2, 1fr); }
  .providers-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .deposit-steps { grid-template-columns: repeat(3, 1fr); }
  .score-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-banners { grid-template-columns: repeat(3, 1fr); }


  .sticky-bar-inner { padding: 0.7rem var(--space-xl); }
  .sticky-bar-text { font-size: 0.9rem; }
  .sticky-bar-btn { padding: 0.7rem 2rem !important; font-size: 0.85rem !important; }
  .cookie-banner { bottom: var(--space-lg); left: var(--space-lg); right: auto; max-width: 400px; }
}

@media (min-width: 1024px) {
  .games-grid { grid-template-columns: repeat(6, 1fr); }
  .games-grid-6 { grid-template-columns: repeat(6, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .community-highlights { grid-template-columns: repeat(3, 1fr); }
  .providers-grid { grid-template-columns: repeat(6, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .score-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (min-width: 1280px) {
  .container { padding: 0 var(--space-xl); }
}

/* review-scoring block removed — this is an operator site, not a review */

/* =========================================================
   Casea v2 — Missing classes used in new pages
   ========================================================= */

/* Section kicker (eyebrow label above H2) */
.section-header .section-kicker {
  display: inline-block;
  color: var(--color-gold);
  text-transform: uppercase;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-md);
  padding: 5px 14px;
  background: rgba(232, 185, 78, 0.1);
  border: 1px solid rgba(232, 185, 78, 0.25);
  border-radius: 999px;
}
.section-header .section-kicker + h2 {
  display: block;
  margin: 0 auto;
}

.section-desc {
  max-width: 640px;
  margin: var(--space-md) auto 0;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.section-tight { padding: var(--space-xl) 0; }

/* Hero alignment helpers */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.55) 0%, rgba(10, 14, 26, 0.85) 100%);
  z-index: 1;
}

/* Nav (matches new template markup) */
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.nav-links a:hover { color: var(--color-text-primary); background: rgba(232,185,78,0.08); }
.nav-links a.active { color: var(--color-gold); background: rgba(232,185,78,0.12); }

@media (max-width: 960px) {
  .nav-links, .header-actions { display: none; }
}
@media (min-width: 961px) {
  .hamburger { display: none; }
}

/* Footer additions */
.footer-regs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-weight: 800;
  font-size: 0.78rem;
}

/* Make simple <a class="game-card"><img><span class="game-card__name"> layout work */
.game-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.game-card:hover img { transform: scale(1.05); }
.game-card__name {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: center;
  background: rgba(10, 14, 26, 0.6);
  border-top: 1px solid var(--glass-border);
}
.game-card { text-decoration: none; display: block; }

/* Provider grid — bigger, brighter logos */
.provider-card {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  transition: all 0.25s ease;
}
.provider-card img {
  max-width: 85%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(2.2) contrast(1.1);
  opacity: 0.92;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
.provider-card:hover {
  background: rgba(232,185,78,0.06);
  border-color: rgba(232,185,78,0.35);
  transform: translateY(-3px);
}
.provider-card:hover img { opacity: 1; filter: brightness(2.5) contrast(1.15); transform: scale(1.04); }

/* SEO content block at bottom of pages — larger, more readable */
.seo-content {
  padding: var(--space-section) 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(106,59,158,0.04));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.seo-content .container { max-width: 1120px; }
.seo-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
  line-height: 1.2;
}
.seo-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  line-height: 1.3;
}
.seo-content p,
.seo-content li {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.8;
}
.seo-content p { margin-bottom: var(--space-md); }
.seo-content ul { padding-left: 1.4em; margin-bottom: var(--space-lg); }
.seo-content ul li { margin-bottom: var(--space-xs); }
.seo-content strong { color: var(--color-text-primary); }
.seo-content em { color: var(--color-gold); font-style: normal; }

/* Hero fixes */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(232, 185, 78, 0.12);
  border: 1px solid rgba(232, 185, 78, 0.35);
  color: var(--color-gold);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  margin-bottom: var(--space-lg);
}

/* Game cover mini (for smaller grids / home preview) */
.games-grid-6 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .games-grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .games-grid-6 { grid-template-columns: repeat(6, 1fr); } }

/* Compact team grid (when used on home) */
.team-grid.team-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}
.team-grid--compact .team-card { padding: var(--space-lg); }
.team-grid--compact .team-avatar { width: 58px; height: 58px; font-size: var(--text-base); }
.team-grid--compact .team-bio { display: none; }

/* Payment methods grid — vertical card, icon on top, badge tags below */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.payment-card {
  padding: var(--space-xl) var(--space-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  transition: all 0.25s ease;
}
.payment-card:hover { border-color: rgba(232,185,78,0.3); transform: translateY(-3px); background: rgba(232,185,78,0.04); }
.payment-card .pay-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(106,59,158,0.45), rgba(232,185,78,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.payment-card .pay-text { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.payment-card .pay-text b {
  display: block;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
.payment-card .pay-text span {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

/* Casino stats row (legacy alias) */
.casino-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: var(--space-md); margin-top: var(--space-xl); }
.casino-stat { padding: var(--space-lg); background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: var(--border-radius-lg); text-align: center; }
.casino-stat b { display: block; font-family: var(--font-heading); font-size: var(--text-xl); color: var(--color-gold); font-weight: 800; line-height: 1.2; }
.casino-stat span { font-size: var(--text-xs); color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; display: block; }

/* Categories grid (slot / live / crash / table) */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}
.category-card {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-decoration: none;
  transition: all 0.3s ease;
}
.category-card:hover { transform: translateY(-4px); border-color: var(--color-gold); }
.category-card .cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}
.category-card h3 {
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  margin: 0;
}
.category-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0;
}
.category-card .cat-count {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: 700;
  margin-top: auto;
  padding-top: var(--space-sm);
}

/* =========================================================
   Sticky CTA bar (inspired by Chicken Road)
   ========================================================= */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  transform: translate(-50%, calc(100% + 40px));
  z-index: 9000;
  width: min(calc(100% - 32px), 880px);
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(20, 12, 34, 0.92), rgba(12, 8, 22, 0.98));
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), opacity 0.25s ease;
  opacity: 0;
}
.sticky-cta[hidden] { display: none !important; }
.sticky-cta.is-visible { transform: translate(-50%, 0); opacity: 1; }
.sticky-cta__inner { display: flex; align-items: center; gap: 14px; }
.sticky-cta__pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 0 rgba(232,185,78,0.7);
  animation: stickyPulse 1.6s ease-out infinite;
  flex: 0 0 auto;
}
@keyframes stickyPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,185,78,0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(232,185,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,185,78,0); }
}
.sticky-cta__text {
  flex: 1 1 auto; min-width: 0;
  display: flex; flex-direction: column; line-height: 1.25;
  color: var(--color-text-primary); font-weight: 500; font-size: 0.95rem;
}
.sticky-cta__text strong { font-weight: 700; font-size: 1rem; color: var(--color-text-primary); }
.sticky-cta__text span { color: var(--color-text-secondary); font-size: 0.84rem; }
.sticky-cta__btn { flex: 0 0 auto; padding: 12px 22px !important; font-size: 0.95rem !important; white-space: nowrap; }
.sticky-cta__close {
  flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 50%;
  background: transparent; color: var(--color-text-secondary);
  border: 1px solid var(--glass-border);
  font-size: 18px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sticky-cta__close:hover { background: rgba(255,255,255,0.06); color: var(--color-text-primary); border-color: rgba(232,185,78,0.4); }
/* padding-bottom removed — sticky bar floats over content by design */
@media (max-width: 640px) {
  .sticky-cta {
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: calc(100% - 20px);
    padding: 10px 12px;
    border-radius: 22px;
  }
  .sticky-cta__inner { gap: 10px; }
  .sticky-cta__text strong { font-size: 0.92rem; }
  .sticky-cta__text span { font-size: 0.76rem; }
  .sticky-cta__btn { padding: 10px 16px !important; font-size: 0.85rem !important; }
  .sticky-cta__close { width: 30px; height: 30px; font-size: 16px; }
  /* mobile padding-bottom removed too */
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: opacity 0.2s ease; }
  .sticky-cta__pulse { animation: none; }
}

/* =========================================================
   FAQ — compact variant
   ========================================================= */
/* Kill .glass-card padding when applied to a FAQ <details> — the summary's
   own padding controls spacing, otherwise we end up with 32 px dead zone
   around the accordion contents. */
details.faq-item.glass-card { padding: 0; }

.faq-list.faq-list--compact { max-width: 780px; }
.faq-list.faq-list--compact details.faq-item { margin-bottom: 8px; border-radius: 12px; padding: 0 !important; }
.faq-list.faq-list--compact details.faq-item > summary.faq-question {
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 600;
}
.faq-list.faq-list--compact details.faq-item > summary.faq-question::after {
  font-size: 1.4rem;
}
.faq-list.faq-list--compact details.faq-item > .faq-answer > p {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  line-height: 1.65;
}
.faq-list.faq-list--compact details.faq-item[open] > .faq-answer { max-height: 400px; }

/* =========================================================
   Inline CTA row (for repeated CTAs between sections)
   ========================================================= */
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}
.cta-inline {
  background: linear-gradient(135deg, rgba(106,59,158,0.25), rgba(232,185,78,0.12));
  border: 1px solid rgba(232,185,78,0.2);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin: var(--space-xl) 0;
}
.cta-inline .cta-text { flex: 1 1 300px; }
.cta-inline h3 { margin: 0 0 4px; color: var(--color-text-primary); font-size: var(--text-lg); }
.cta-inline p { margin: 0; color: var(--color-text-secondary); font-size: var(--text-sm); }
.cta-inline .btn { flex-shrink: 0; }
