@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Surface Tokens (Luxury Dark Obsidian Palette) */
  --bg-canvas: #0a0a0d;
  --bg-surface: #121217;
  --bg-card: #1a1a23;
  --bg-card-hover: #22222f;
  --bg-overlay: rgba(10, 10, 13, 0.85);
  --bg-modal: #15151c;

  /* Accent Tokens (Gold Gradient & Playful Accents) */
  --gold-primary: #FFD700;
  --gold-secondary: #FDB931;
  --gold-glow: rgba(255, 215, 0, 0.25);
  --gold-gradient: linear-gradient(135deg, #FFDF00 0%, #FDB931 50%, #D48800 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFF066 0%, #FFD700 50%, #E59800 100%);
  
  --accent-emerald: #00C853;
  --accent-emerald-glow: rgba(0, 200, 83, 0.25);
  --accent-azure: #1E88E5;
  --accent-crimson: #FF3D57;

  /* Text & Contrast Tokens */
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-gold: #FFDF00;
  --text-inverse: #0A0A0D;

  /* Border & Stroke Tokens */
  --border-subtle: #262635;
  --border-card: #2e2e40;
  --border-gold: rgba(255, 215, 0, 0.4);
  --border-gold-bright: #FFD700;

  /* Shadows & Elevations */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 8px 25px rgba(255, 215, 0, 0.2);
  --shadow-floating: 0 20px 40px -15px rgba(0, 0, 0, 0.9);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Layout Widths */
  --container-max: 1280px;
  --container-narrow: 880px;

  /* Typography */
  --font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  line-height: 1.65;
  background: radial-gradient(circle at 50% 0%, #1a1a2b 0%, var(--bg-canvas) 70%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Top Bar Notice (Zero Headings) */
.top-notice-bar {
  background: linear-gradient(90deg, #16161f, #231d10, #16161f);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.825rem;
  color: var(--text-secondary);
}

.top-notice-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-notice-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 215, 0, 0.1);
  color: var(--text-gold);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.notice-pill.emerald {
  background: rgba(0, 200, 83, 0.1);
  color: var(--accent-emerald);
  border-color: rgba(0, 200, 83, 0.2);
}

/* Main Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 23, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 42px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.6));
  display: block;
}

.site-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-logo-text span {
  color: var(--gold-primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 1;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap !important;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-floating);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 110;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  color: #FFFFFF;
  background: rgba(255, 215, 0, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-actions .btn {
  white-space: nowrap !important;
  font-size: 0.82rem;
  padding: 8px 12px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  min-height: 48px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary-gold,
a.btn-primary-gold,
.article-prose a.btn-primary-gold,
.conversion-box a.btn-primary-gold {
  background: var(--gold-gradient) !important;
  color: #0A0A0E !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.btn-primary-gold:hover,
a.btn-primary-gold:hover,
.article-prose a.btn-primary-gold:hover,
.conversion-box a.btn-primary-gold:hover {
  background: var(--gold-gradient-hover) !important;
  color: #000000 !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5) !important;
}

.btn-outline-gold,
a.btn-outline-gold,
.article-prose a.btn-outline-gold,
.conversion-box a.btn-outline-gold {
  background: rgba(255, 215, 0, 0.06) !important;
  color: var(--text-gold) !important;
  border: 1px solid var(--border-gold) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.btn-outline-gold:hover,
a.btn-outline-gold:hover,
.article-prose a.btn-outline-gold:hover,
.conversion-box a.btn-outline-gold:hover {
  background: rgba(255, 215, 0, 0.16) !important;
  border-color: #FFD700 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  min-height: 38px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  min-height: 56px;
  font-size: 1.05rem;
}

/* Hero Section */
.hero-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 24px 0 48px 0;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-floating);
  background-color: var(--bg-surface);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(10,10,13,0.96) 0%, rgba(18,18,23,0.85) 55%, rgba(10,10,13,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 64px 48px;
  max-width: 760px;
}

/* Strict DOM Heading Rule: H1 must be first */
h1.page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

h1.page-title .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-item svg {
  color: var(--gold-primary);
}

/* Section Headings */
h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}

h2.section-title::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: var(--gold-gradient);
}

h3.subsection-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 24px 0 12px 0;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 36px;
}

/* Section Shell */
.section-block {
  padding: 48px 0;
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

/* Interactive 3x2 Grid Box (3 columns x 2 rows = 6 items) */
.game-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.game-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.15);
}

.game-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d0d12;
}

.game-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-media-wrapper img {
  transform: scale(1.06);
}

.game-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.game-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 13, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.game-tag.rtp {
  color: var(--accent-emerald);
  border-color: rgba(0, 200, 83, 0.3);
}

.game-tag.provider {
  color: var(--text-gold);
  border-color: rgba(255, 215, 0, 0.3);
}

.game-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.game-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.game-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.game-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

/* Pagination Controls */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.page-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: var(--border-subtle);
}

.page-btn.active {
  background: var(--gold-gradient);
  color: var(--text-inverse);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Feature & Contextual Inline Images */
.featured-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  margin: 32px 0;
  background: var(--bg-surface);
}

.featured-image-container img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
}

.image-caption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(18, 18, 23, 0.9);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Article Reading Layout */
.article-prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #D1D5DB;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 0 60px;
}

.article-prose h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 20px 0 24px;
}

.article-prose h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.article-prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 28px 0 12px;
}

.article-prose p {
  margin-bottom: 20px;
}

.article-prose strong {
  color: #FFFFFF;
  font-weight: 600;
}

.article-prose a {
  color: var(--text-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}

.article-prose a:hover {
  color: #FFFFFF;
}

.article-prose blockquote {
  background: rgba(255, 215, 0, 0.05);
  border-left: 4px solid var(--gold-primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-style: normal;
  color: #F3F4F6;
  border-top: 1px solid rgba(255, 215, 0, 0.12);
  border-right: 1px solid rgba(255, 215, 0, 0.12);
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.article-prose p > code,
.breadcrumb-trail {
  display: inline-block;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--text-gold);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* Responsive Comparison Tables (applies to markdown tables & casino-table) */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 28px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  background: var(--bg-surface);
}

.article-prose table,
table.casino-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  margin: 28px 0;
  background: #14141d;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.article-prose th,
table.casino-table th {
  background: #1c1c28;
  color: var(--text-gold);
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 2px solid var(--border-subtle);
  white-space: nowrap;
}

.article-prose td,
table.casino-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #E2E8F0;
}

.article-prose tr:hover td,
table.casino-table tr:hover td {
  background: rgba(255, 215, 0, 0.03);
}

/* Callout & Action Lists in Markdown */
.article-prose ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.article-prose ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Dual Action Buttons Group (Image 1 Fix) */
.spoke-action-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 36px;
  padding: 16px 20px;
  background: rgba(255, 215, 0, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.spoke-action-group a.btn {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Related Games Rows with Perfectly Aligned Colons (Image 2 Fix) */
.related-game-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding: 12px 18px;
  background: #14141d;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.related-game-row:hover {
  border-color: var(--border-gold);
  background: rgba(255, 215, 0, 0.04);
  transform: translateX(4px);
}

.related-game-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  min-width: 175px;
  flex-shrink: 0;
  padding: 8px 14px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--text-gold) !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.related-game-badge:hover {
  background: var(--gold-gradient);
  color: #0A0A0E !important;
}

.related-game-sep {
  color: var(--gold-primary);
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
  width: 12px;
  text-align: center;
}

.related-game-desc {
  color: #D1D5DB;
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

/* Homepage Category Ribbon */
.category-ribbon {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding: 16px 4px 24px;
  margin-bottom: 24px;
  scrollbar-width: thin;
}

.category-ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.category-ribbon-item:hover, .category-ribbon-item.active {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--border-gold);
  color: var(--text-gold);
  transform: translateY(-2px);
}

.category-ribbon-item span.icon {
  font-size: 1.1rem;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 24px 20px 24px;
  display: none;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-body {
  display: block;
}

/* Author & Review Methodology Block */
.author-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin: 40px 0;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
  flex-shrink: 0;
}

.author-meta .author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.author-meta .author-title {
  font-size: 0.85rem;
  color: var(--text-gold);
  margin-bottom: 6px;
}

.author-meta .author-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Footer & Compliance Component */
.site-footer {
  background: #0c0c10;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-brand p {
  margin: 16px 0 24px 0;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-primary);
}

.footer-badges-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.payment-badges-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.payment-badge-img {
  height: 36px;
  width: auto;
  filter: grayscale(20%) brightness(1.1);
  transition: filter 0.2s;
}

.payment-badge-img:hover {
  filter: grayscale(0%) brightness(1.2);
}

.responsible-gaming-notice {
  background: rgba(255, 61, 87, 0.05);
  border: 1px solid rgba(255, 61, 87, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 32px;
  font-size: 0.825rem;
  color: #E2E8F0;
  line-height: 1.6;
}

.responsible-gaming-notice strong {
  color: #FF6B81;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 21+ Age Gate Modal (DOM Strict: ZERO HEADING TAGS) */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-overlay.active {
  display: flex;
}

.age-gate-modal {
  background: var(--bg-modal);
  border: 2px solid var(--border-gold);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.age-gate-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 61, 87, 0.15);
  border: 2px solid #FF3D57;
  color: #FF3D57;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

/* Modal Title as DIV, NOT HEADING */
.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mobile Sticky Bottom Conversion Bar */
.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(18, 18, 23, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-card);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-offer-text {
  display: flex;
  flex-direction: column;
}

.sticky-offer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.sticky-offer-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .game-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-content {
    padding: 40px 24px;
  }
  .game-grid-3x2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}

/* Mobile Drawer Menu */
.mobile-nav-menu {
  display: none;
  flex-direction: column;
  background: #14141c;
  border-bottom: 1px solid var(--border-card);
  padding: 16px 24px 24px;
  gap: 8px;
}

.mobile-nav-menu.show {
  display: flex;
}

.mobile-nav-link {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--gold-primary);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 8px;
}

.mobile-submenu.show {
  display: flex;
}

.mobile-sub-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.mobile-sub-link:hover {
  color: #FFFFFF;
}
