/* ============================================
   Portuguese Casino Aggregator
   Gradient Purple-Blue Glassmorphism Theme
   ============================================ */

/* ---------- 1. CSS Variables ---------- */
:root {
  --bg-body: #0f0b1e;
  --bg-card: #1a1433;
  --bg-secondary: #251e3d;
  --bg-tertiary: #1f1838;

  --purple: #7c3aed;
  --purple-hover: #6d28d9;
  --purple-light: #a78bfa;
  --purple-glow: rgba(124, 58, 237, 0.35);

  --blue: #3b82f6;
  --blue-hover: #2563eb;
  --blue-light: #93c5fd;
  --blue-glow: rgba(59, 130, 246, 0.3);

  --gradient-accent: linear-gradient(135deg, #7c3aed, #3b82f6);
  --gradient-accent-reverse: linear-gradient(135deg, #3b82f6, #7c3aed);
  --gradient-subtle: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.15));

  --text-primary: #e2e0f0;
  --text-muted: #9b97b0;
  --text-heading: #f0eef8;
  --text-link: #a78bfa;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius-card: 16px;
  --radius-btn: 10px;
  --radius-sm: 8px;

  --shadow-card: 0 4px 24px rgba(124, 58, 237, 0.08), 0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(124, 58, 237, 0.18), 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.25), 0 0 60px rgba(59, 130, 246, 0.12);
  --shadow-btn: 0 4px 16px rgba(124, 58, 237, 0.3);

  --glass-bg: rgba(26, 20, 51, 0.6);
  --glass-border: rgba(124, 58, 237, 0.15);
  --glass-blur: 16px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1200px;
  --container-padding: 24px;
}

/* ---------- 2. Base Styles ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 0.5em;
}

h1 { font-weight: 800; font-size: 2.75rem; }
h2 { font-weight: 700; font-size: 2rem; }
h3 { font-weight: 700; font-size: 1.5rem; }
h4 { font-weight: 600; font-size: 1.2rem; }

p {
  margin-bottom: 1em;
  color: var(--text-muted);
}

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--purple-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

::selection {
  background: rgba(124, 58, 237, 0.4);
  color: #fff;
}

::-moz-selection {
  background: rgba(124, 58, 237, 0.4);
  color: #fff;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ---------- 3. Top Bar ---------- */
.top-bar {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.1), rgba(124, 58, 237, 0.15));
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.top-bar a:hover {
  color: var(--purple-light);
}

.top-bar-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-age {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.15);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--purple-light);
  font-size: 0.75rem;
}

/* ---------- 4. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 11, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  padding: 0;
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 58, 237, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  -webkit-text-fill-color: #fff;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-main a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--text-heading);
}

.nav-main a:hover::after,
.nav-main a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ---------- 5. Hero Section ---------- */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: rgba(124, 58, 237, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.08);
  transition: var(--transition-base);
}

.stat-item:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---------- 6. Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ---------- 7. Casino Cards ---------- */
.cards-section {
  padding: 80px 0;
  position: relative;
}

.cards-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.cards-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid rgba(124, 58, 237, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow: var(--shadow-card);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(124, 58, 237, 0.2);
}

.card:hover::before {
  opacity: 1;
}

.card:hover .card-glow {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
}

.card-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  position: relative;
  z-index: 1;
}

.card-rank {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 36px;
  text-align: center;
}

.card-rank .top-badge {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3rem;
}

.card-logo {
  width: 80px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px;
}

.card-info {
  flex: 1;
}

.card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.card-bonus {
  font-size: 0.92rem;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-features span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(124, 58, 237, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.06);
  transition: var(--transition-fast);
}

.card-features span:hover {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.15);
}

.card-features .feature-icon {
  font-size: 0.7rem;
}

.card-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 140px;
}

.score-badge {
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  position: relative;
}

.score-badge::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.2;
  z-index: -1;
}

.score-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- 8. Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base), opacity var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.button:active {
  transform: scale(0.97);
}

.button.primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
}

.button.primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.button.primary:hover {
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4), 0 0 40px rgba(124, 58, 237, 0.15);
  transform: translateY(-1px);
}

.button.primary:hover::before {
  opacity: 1;
}

.button.secondary {
  background: transparent;
  color: var(--purple-light);
  border: 2px solid rgba(124, 58, 237, 0.35);
  padding: 10px 26px;
}

.button.secondary:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
}

.button.sm {
  font-size: 0.82rem;
  padding: 8px 20px;
}

.button.lg {
  font-size: 1rem;
  padding: 16px 36px;
}

.button.full {
  width: 100%;
}

/* ---------- 9. Info Blocks ---------- */
.info-section {
  padding: 80px 0;
  position: relative;
}

.info-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.info-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(124, 58, 237, 0.25);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
  transition: box-shadow var(--transition-base);
}

.info-card:hover .info-card-icon {
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.25), 0 0 50px rgba(124, 58, 237, 0.1);
}

.info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---------- 10. Methodology ---------- */
.methodology-section {
  padding: 80px 0;
  position: relative;
}

.methodology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.methodology-content h2 {
  margin-bottom: 16px;
}

.methodology-content > p {
  margin-bottom: 28px;
}

.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.08);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.criteria-item:hover {
  border-color: rgba(124, 58, 237, 0.18);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}

.criteria-weight {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.criteria-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.criteria-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.methodology-visual {
  position: relative;
}

.methodology-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-glow);
}

.methodology-card h3 {
  text-align: center;
  margin-bottom: 24px;
}

.score-breakdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.score-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.score-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.score-bar-label {
  color: var(--text-primary);
  font-weight: 500;
}

.score-bar-value {
  color: var(--purple-light);
  font-weight: 700;
  font-family: var(--font-heading);
}

.score-bar-track {
  height: 8px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 10px;
  transition: width 1s ease;
  position: relative;
}

.score-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
  background-size: 200% 100%;
}

/* ---------- 11. FAQ ---------- */
.faq-section {
  padding: 80px 0;
}

.faq-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

details {
  background: var(--bg-card);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

details:hover {
  border-color: rgba(124, 58, 237, 0.18);
}

details[open] {
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-heading);
  list-style: none;
  transition: background var(--transition-fast);
  user-select: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
  content: '';
}

summary:hover {
  background: rgba(124, 58, 237, 0.04);
}

summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(45deg);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 16px;
}

details[open] summary::after {
  transform: rotate(-135deg);
}

details .faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: fadeUp 0.3s ease;
}

/* ---------- 12. CTA Panel ---------- */
.cta-panel {
  background: var(--gradient-accent);
  border-radius: var(--radius-card);
  padding: 56px 48px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.3);
}

.cta-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-panel::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-panel h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-panel .button {
  background: #fff;
  color: var(--purple);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cta-panel .button:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* ---------- 13. Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding: 60px 0 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-column a:hover {
  color: var(--text-primary);
  padding-left: 6px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--purple-light);
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(124, 58, 237, 0.06);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(155, 151, 176, 0.6);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
}

/* ---------- 14. Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26, 20, 51, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible,
.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner.hiding {
  transform: translateY(100%);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: box-shadow var(--transition-base), transform var(--transition-fast);
}

.cookie-accept:hover {
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45);
  transform: translateY(-1px);
}

.cookie-decline {
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(124, 58, 237, 0.2);
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.cookie-decline:hover {
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--text-primary);
  background: rgba(124, 58, 237, 0.06);
}

/* ---------- 15. Page Content (Subpages) ---------- */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-content {
  padding: 40px 0 80px;
}

.page-content .content-block {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(124, 58, 237, 0.12);
}

.page-content h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-content ul {
  list-style: none;
}

.page-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-accent);
}

.page-content ol {
  counter-reset: list-counter;
  list-style: none;
}

.page-content ol li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-content ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.page-content table th {
  background: rgba(124, 58, 237, 0.12);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-heading);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(124, 58, 237, 0.15);
}

.page-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.06);
  color: var(--text-muted);
}

.page-content table tr:hover td {
  background: rgba(124, 58, 237, 0.04);
}

/* ---------- 16. Responsive ---------- */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero-section {
    padding: 60px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  body {
    font-size: 15px;
  }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .top-bar {
    display: none;
  }

  .header-inner {
    padding: 12px 0;
  }

  .nav-main {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4);
    z-index: 999;
    border-left: 1px solid rgba(124, 58, 237, 0.1);
  }

  .nav-main.open,
  .nav-main.is-open {
    transform: translateX(0);
  }

  .nav-main a {
    font-size: 1.05rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(124, 58, 237, 0.06);
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-section {
    padding: 40px 0 60px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    padding: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .card-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }

  .card-rank {
    position: absolute;
    top: 16px;
    left: 20px;
  }

  .card-logo {
    margin: 0 auto;
  }

  .card-features {
    justify-content: center;
  }

  .card-right {
    flex-direction: row;
    justify-content: center;
    min-width: auto;
    gap: 16px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-card {
    padding: 24px;
  }

  .cta-panel {
    padding: 40px 24px;
    margin: 24px 0;
  }

  .cta-panel h2 {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    padding: 80px 0 40px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-content h2 {
    margin-top: 36px;
  }

  .faq-list {
    gap: 8px;
  }

  summary {
    padding: 16px 20px;
    font-size: 0.92rem;
  }

  details .faq-answer {
    padding: 0 20px 16px;
    font-size: 0.88rem;
  }
}

/* ---------- 17. Decorative Elements ---------- */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.gradient-orb.purple {
  background: var(--purple);
}

.gradient-orb.blue {
  background: var(--blue);
}

.cards-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cards-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.card-shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: none;
}

.card:hover .card-shine {
  animation: cardShine 0.6s ease forwards;
}

@keyframes cardShine {
  to {
    left: 150%;
  }
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.15), rgba(59, 130, 246, 0.1), transparent);
  margin: 0;
  border: none;
}

.glow-line {
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  opacity: 0.5;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
}

.badge.gradient {
  background: var(--gradient-accent);
  color: #fff;
}

.badge.outline {
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--purple-light);
  background: rgba(124, 58, 237, 0.08);
}

.badge.success {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

/* Animated gradient text */
.animated-gradient-text {
  background: linear-gradient(135deg, #7c3aed, #3b82f6, #a78bfa, #7c3aed);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulse for live indicators */
.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
}

.pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.3);
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 0; }
}

/* ---------- 18. Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.35);
  border-radius: 10px;
  border: 2px solid var(--bg-body);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 58, 237, 0.55);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.35) var(--bg-body);
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.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-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.no-scroll {
  overflow: hidden;
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 11, 30, 0.7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Print Styles ---------- */
@media print {
  .top-bar,
  .site-header,
  .cookie-banner,
  .cta-panel,
  .nav-overlay {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* ============================================
   VISUAL ENHANCEMENTS — Casino Atmosphere
   ============================================ */

/* Hero background image with dark gradient overlay */
.hero-section {
  position: relative;
  background-image:
    linear-gradient(170deg, rgba(15, 11, 30, 0.93) 0%, rgba(26, 20, 51, 0.88) 40%, rgba(15, 11, 30, 0.96) 100%),
    url('https://images.unsplash.com/photo-1511512578047-dfb367046420?w=1920&q=80');
  background-size: cover;
  background-position: center;
}

/* Floating card suits watermark */
.hero-section::after {
  content: '\2660 \2665 \2666 \2663';
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  font-size: 10rem;
  letter-spacing: 1rem;
  opacity: 0.03;
  color: #7c3aed;
  pointer-events: none;
  z-index: 0;
}

.hero-section > .container {
  position: relative;
  z-index: 1;
}

/* Cards section — purple glow spots */
.cards-section {
  position: relative;
}

.cards-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cards-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Info section gradient mesh */
.info-section {
  background:
    radial-gradient(ellipse at 10% 40%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 60%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

/* Methodology decorative */
.methodology-section {
  position: relative;
}

.methodology-section::before {
  content: '\2666';
  position: absolute;
  top: 60px;
  left: 4%;
  font-size: 8rem;
  opacity: 0.03;
  color: #7c3aed;
  pointer-events: none;
}

/* CTA background image */
.cta-panel {
  background-image:
    linear-gradient(135deg, rgba(124, 58, 237, 0.95) 0%, rgba(59, 130, 246, 0.92) 100%),
    url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1200&q=80');
  background-size: cover;
  background-position: center;
}

/* Card hover shine */
.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(124, 58, 237, 0.04) 45%,
    rgba(124, 58, 237, 0.06) 50%,
    rgba(124, 58, 237, 0.04) 55%,
    transparent 60%
  );
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.card:hover::before {
  transform: translateX(50%) translateY(50%);
}

.card > * {
  position: relative;
  z-index: 1;
}

/* Score badge purple glow */
.score-badge {
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.35);
}

/* Footer subtle glow */
.footer {
  background-image:
    radial-gradient(circle at 15% 80%, rgba(124, 58, 237, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
}

/* FAQ decorative */
.faq-section {
  position: relative;
}

.faq-section::after {
  content: '\2663';
  position: absolute;
  bottom: 40px;
  right: 5%;
  font-size: 6rem;
  opacity: 0.03;
  color: #3b82f6;
  pointer-events: none;
}

/* Hide decorative on mobile */
@media (max-width: 768px) {
  .hero-section::after,
  .methodology-section::before,
  .faq-section::after {
    display: none;
  }
}

/* ===== Feature Visual Block ===== */
.feature-visual {
  padding: 80px 0;
  position: relative;
}

.feature-visual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-visual__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.feature-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 340px;
}

.feature-visual__content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.feature-visual__content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-visual__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-visual__list li {
  font-weight: 500;
  font-size: 0.95rem;
  padding-left: 28px;
  position: relative;
}

.feature-visual__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

@media (max-width: 768px) {
  .feature-visual__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-visual__image img {
    min-height: 200px;
    max-height: 260px;
  }
}

/* ===== Parallax Casino Background Sections ===== */
.parallax-casino {
  position: relative;
  height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.parallax-casino--1 {
  background-image: url('https://images.unsplash.com/photo-1742666978255-007e0fcfc0c5?w=1920&q=80');
}

.parallax-casino--2 {
  background-image: url('https://images.unsplash.com/photo-1566563255308-753861417000?w=1920&q=80');
}

.parallax-casino__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 11, 30, 0.78) 0%, rgba(15, 11, 30, 0.88) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-casino__content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.parallax-casino__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.parallax-casino__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .parallax-casino {
    height: 300px;
    background-attachment: scroll;
  }
  .parallax-casino__title {
    font-size: 1.5rem;
  }
}
