/* =========================================================
   BEST CASINO FOR GATES OF OLYMPUS MALAYSIA 2026
   ========================================================= */

/* ---------- SELF-HOSTED FONTS ---------- */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('assets/fonts/cinzel.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/marcellus.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --royal-purple: #66289a;
  --deep-purple: #261144;
  --dark-indigo: #151b45;
  --temple-blue: #587db9;
  --celestial-blue: #238fd7;
  --electric-cyan: #53e8ff;
  --ice-blue: #c8f5ff;
  --marble-white: #f6f7f4;
  --soft-white: #ffffff;
  --antique-gold: #d99b26;
  --bright-gold: #ffd45c;
  --crimson: #a51d39;
  --text-dark: #182138;
  --text-muted: #637089;
  --surface-purple: #432169;
  --success-green: #1a6b47;

  --font-display: "Cinzel", "Marcellus", serif;
  --font-accent: "Marcellus", serif;
  --font-body: "Inter", "Lato", "Source Sans 3", system-ui, sans-serif;

  --header-height: 64px;
  --topbar-height: 34px;
  --max-width: 1240px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 10px 30px rgba(21, 27, 69, 0.25);
  --shadow-strong: 0 20px 50px rgba(21, 27, 69, 0.45);
  --greek-key: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath d='M0 15 H8 V5 H15 V15 H20' fill='none' stroke='%23d99b26' stroke-width='2'/%3E%3C/svg%3E");

  --transition-fast: 180ms ease;
  --transition-med: 320ms ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--marble-white);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
.img-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.img-link { display: block; }
.img-link-bg { position: absolute; inset: 0; z-index: 1; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; margin: 0 0 0.6em; color: var(--deep-purple); word-wrap: break-word; }
p { margin: 0 0 1em; max-width: 72ch; overflow-wrap: anywhere; }
.content-section p, .about-copy p, .legal-content p { max-width: 74ch; }
h1 { max-width: none; }

/* prevent horizontal overflow anywhere */
html, body { max-width: 100%; }

/* focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--electric-cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--bright-gold);
  color: var(--deep-purple);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  z-index: 1000;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 1rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 44px;
  padding: 0.75em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.btn-small { min-height: 40px; padding: 0.55em 1.2em; font-size: 0.85rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--bright-gold), var(--antique-gold));
  color: var(--deep-purple);
  box-shadow: 0 8px 24px rgba(217, 155, 38, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217, 155, 38, 0.55); }
.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--soft-white);
  border-color: var(--electric-cyan);
}
.btn-outline:hover { background: rgba(83, 232, 255, 0.15); transform: translateY(-2px); }
.content-section .btn-outline, .casino-card .btn-outline {
  color: var(--royal-purple);
  border-color: var(--royal-purple);
  background: transparent;
}
.content-section .btn-outline:hover, .casino-card .btn-outline:hover { background: rgba(102,40,154,0.08); }
.btn-compare {
  background: linear-gradient(135deg, var(--crimson), var(--royal-purple));
  color: var(--soft-white);
  box-shadow: 0 8px 20px rgba(165,29,57,0.4);
}
.btn-compare:hover { transform: translateY(-2px); }

/* ---------- RESPONSIBLE GAMING TOP BAR ---------- */
.rg-topbar {
  background: var(--dark-indigo);
  color: var(--ice-blue);
  border-bottom: 2px solid var(--antique-gold);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.4rem 1rem;
}
.rg-topbar p { margin: 0; max-width: none; }
.rg-topbar strong { color: var(--bright-gold); }

/* ---------- HEADER / NAV ---------- */
/* Note: backdrop-filter lives on ::before (not on .site-header itself) because a filter/
   backdrop-filter on an element makes it a CSS containing block for position:fixed
   descendants -- which would break the full-viewport mobile nav-panel/nav-overlay nested inside. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  isolation: isolate;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(21,27,69,0.9), rgba(21,27,69,0.55));
  backdrop-filter: blur(6px);
  transition: background var(--transition-med), box-shadow var(--transition-med);
}
.site-header.is-scrolled::before {
  background: rgba(21,27,69,0.94);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.navbar {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0.6rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-image { height: clamp(40px, 6vw, 52px); width: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bar { width: 24px; height: 3px; background: var(--bright-gold); border-radius: 2px; transition: transform var(--transition-fast), opacity var(--transition-fast); }

.nav-panel { display: flex; align-items: center; gap: 1.1rem; }
.nav-panel-header { display: none; }
.nav-panel .btn { white-space: nowrap; }
.nav-list { display: flex; align-items: center; gap: 0.85rem; flex-wrap: nowrap; }
.nav-list .nav-link { white-space: nowrap; }
.nav-link {
  color: var(--ice-blue);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 0.2rem;
  display: inline-block;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover, .nav-link.is-active { color: var(--bright-gold); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.2rem;
  height: 2px;
  background: var(--electric-cyan);
  border-radius: 2px;
}

.has-dropdown { position: relative; }
.nav-dropdown { position: relative; }
.nav-dropdown-summary {
  list-style: none;
  cursor: pointer;
}
.nav-dropdown-summary::-webkit-details-marker { display: none; }
.nav-dropdown-summary::after { content: "\25BE"; margin-left: 0.35em; font-size: 0.7em; }
.dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 220px;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,12,30,0.6);
  z-index: 400;
}

/* Desktop dropdown positioning */
@media (min-width: 1200px) {
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-indigo);
    border: 1px solid var(--surface-purple);
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: var(--shadow-soft);
  }
  .dropdown-menu .nav-link { color: var(--ice-blue); min-height: 40px; white-space: nowrap; }
}

/* ---------- READING PROGRESS ---------- */
.reading-progress {
  position: sticky;
  top: var(--header-height);
  z-index: 490;
  height: 3px;
  background: rgba(255,255,255,0.08);
}
.reading-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--electric-cyan), var(--bright-gold));
  transition: width 80ms linear;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb-nav { background: var(--marble-white); border-bottom: 1px solid rgba(102,40,154,0.15); }
.breadcrumb {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0.6rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.5rem; color: var(--antique-gold); }
.breadcrumb a { text-decoration: none; color: var(--royal-purple); font-weight: 600; }
.breadcrumb [aria-current="page"] { color: var(--text-muted); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: min(90vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2rem, 8vh, 5rem) 1rem;
  scroll-margin-top: var(--header-height);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-temple {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(83,232,255,0.35), transparent 55%),
    linear-gradient(180deg, var(--dark-indigo) 0%, var(--deep-purple) 45%, var(--surface-purple) 100%);
}
.hero-bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0.9; }
.hero-temple::before {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: min(1400px, 160%);
  height: 60%;
  background:
    repeating-linear-gradient(90deg, rgba(246,247,244,0.14) 0 34px, rgba(246,247,244,0.03) 34px 68px),
    linear-gradient(180deg, rgba(246,247,244,0.22), rgba(246,247,244,0.02) 70%);
  clip-path: polygon(0 100%, 4% 20%, 8% 100%, 12% 18%, 16% 100%, 20% 20%, 24% 100%, 28% 18%, 32% 100%, 36% 20%, 40% 100%, 44% 18%, 48% 100%, 52% 20%, 56% 100%, 60% 18%, 64% 100%, 68% 20%, 72% 100%, 76% 18%, 80% 100%, 84% 20%, 88% 100%, 92% 18%, 96% 100%, 100% 20%, 100% 100%);
  opacity: 0.9;
}
.hero-clouds {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(60% 30% at 15% 70%, rgba(200,245,255,0.25), transparent 70%),
    radial-gradient(50% 25% at 80% 60%, rgba(200,245,255,0.2), transparent 70%),
    radial-gradient(40% 20% at 50% 85%, rgba(200,245,255,0.18), transparent 70%);
  animation: cloudDrift 40s ease-in-out infinite alternate;
}
.hero-lightning {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 46%, rgba(83,232,255,0.55) 48%, transparent 50%),
    linear-gradient(70deg, transparent 60%, rgba(255,212,92,0.35) 62%, transparent 64%);
  opacity: 0;
  mix-blend-mode: screen;
  animation: lightningFlash 7s ease-in-out infinite;
}
.hero-glow {
  position: absolute; left: 50%; top: 8%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  width: min(600px, 80vw); height: 320px;
  background: radial-gradient(circle, rgba(83,232,255,0.45), transparent 70%);
  filter: blur(10px);
  animation: glowPulse 5s ease-in-out infinite;
}

.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }

.zeus-portrait { position: relative; width: 150px; height: 150px; border-radius: 50%; overflow: hidden; }
.zeus-photo { border-radius: 50%; z-index: 1; }
.zeus-face {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--ice-blue), var(--temple-blue) 60%, var(--dark-indigo) 100%);
  box-shadow: 0 0 40px rgba(83,232,255,0.6), inset 0 0 30px rgba(21,27,69,0.5);
  position: relative;
  z-index: 0;
}
.zeus-eye {
  position: absolute; top: 44%;
  width: 14px; height: 8px;
  border-radius: 50%;
  background: var(--electric-cyan);
  box-shadow: 0 0 12px 4px var(--electric-cyan);
  animation: eyeGlow 3.2s ease-in-out infinite;
}
.zeus-eye-left { left: 32%; }
.zeus-eye-right { right: 32%; }
.zeus-laurel {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 30px;
  border-top: 4px solid var(--bright-gold);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 0 12px rgba(255,212,92,0.6);
}

.hero-title-plaque {
  position: relative;
  background: linear-gradient(160deg, rgba(67,33,105,0.92), rgba(38,17,68,0.94));
  border: 2px solid var(--antique-gold);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-strong), 0 0 0 1px rgba(255,212,92,0.15) inset;
  max-width: 780px;
}
.hero-title-plaque::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  padding: 2px;
  pointer-events: none;
  background: linear-gradient(120deg, var(--bright-gold), transparent 30%, transparent 70%, var(--bright-gold));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderShimmer 6s linear infinite;
}
.hero-kicker {
  font-family: var(--font-accent);
  color: var(--ice-blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
.hero-title {
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  background: linear-gradient(180deg, var(--bright-gold) 20%, var(--antique-gold) 60%, #a9720f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 18px rgba(38,17,68,0.65);
  letter-spacing: 0.01em;
}
.hero-title-accent { color: var(--soft-white); background: none; -webkit-text-fill-color: initial; text-shadow: 0 0 18px var(--electric-cyan), 0 4px 14px rgba(38,17,68,0.6); }
.hero-subtitle { color: var(--ice-blue); font-size: clamp(0.95rem, 2vw, 1.15rem); max-width: 60ch; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.25rem; }
.hero-disclaimer { margin-top: 1.25rem; font-size: 0.78rem; color: var(--ice-blue); opacity: 0.85; max-width: 50ch; margin-inline: auto; }

/* ---------- AI OVERVIEW ---------- */
.ai-overview { background: linear-gradient(180deg, var(--dark-indigo), var(--deep-purple)); padding: clamp(2rem, 6vh, 3.5rem) 0; }
.ai-overview-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(83,232,255,0.35);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--ice-blue);
  box-shadow: var(--shadow-soft);
}
.ai-overview-label {
  display: inline-block;
  background: var(--electric-cyan);
  color: var(--dark-indigo);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.ai-overview-text { color: var(--soft-white); font-size: 1.02rem; max-width: none; }
.ai-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.ai-overview-item h2 { color: var(--bright-gold); font-size: 1rem; margin-bottom: 0.4rem; }
.ai-overview-item ul { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.9rem; }
.ai-overview-note {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--ice-blue);
  opacity: 0.9;
  max-width: none;
}

/* ---------- SECTION HEADINGS / DIVIDERS ---------- */
.content-section { padding: clamp(2.5rem, 6vh, 4rem) 0; scroll-margin-top: calc(var(--header-height) + 12px); border-bottom: 1px solid rgba(102,40,154,0.12); }
.content-section:last-child { border-bottom: none; }
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  background: linear-gradient(180deg, var(--antique-gold), var(--royal-purple) 140%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 2px 0 rgba(255,255,255,0.4);
}
.eyebrow { color: var(--royal-purple); font-family: var(--font-accent); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 0.4rem; }
.section-heading-block { text-align: center; max-width: 800px; margin-inline: auto; }
.greek-divider { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin: 0.75rem 0 1.75rem; }
.greek-divider span { display: block; }
.greek-divider span:nth-child(1), .greek-divider span:nth-child(3) { width: 60px; height: 3px; background: linear-gradient(90deg, transparent, var(--antique-gold)); border-radius: 2px; }
.greek-divider span:nth-child(3) { background: linear-gradient(90deg, var(--antique-gold), transparent); }
.greek-divider span:nth-child(2) { width: 10px; height: 10px; background: var(--antique-gold); transform: rotate(45deg); box-shadow: 0 0 10px rgba(217,155,38,0.6); }
.section-heading-block .greek-divider { margin-inline: auto; }

/* ---------- INTRO SECTION ---------- */
.intro-section { padding: clamp(2.5rem, 6vh, 4rem) 0 1rem; }
.intro-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; margin-bottom: 2rem; }
.intro-illustration { width: 100%; }
.intro-illustration-photo { display: block; width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }

.quick-facts { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.fact-chip {
  display: flex; flex-direction: column; align-items: center;
  background: var(--soft-white);
  border: 1px solid rgba(102,40,154,0.25);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.1rem;
  box-shadow: 0 4px 14px rgba(21,27,69,0.08);
  min-width: 100px;
}
.fact-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.fact-value { font-family: var(--font-display); font-weight: 700; color: var(--royal-purple); font-size: 1.1rem; }

/* ---------- CONTENT LAYOUT / TOC ---------- */
.content-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-top: 1rem; }
.toc-sidebar {
  background: var(--soft-white);
  border: 1px solid rgba(102,40,154,0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  align-self: start;
}
.toc-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-purple);
  color: var(--soft-white);
  border: none; border-radius: 10px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  min-height: 44px;
}
.toc-chevron { transition: transform var(--transition-fast); }
.toc-toggle[aria-expanded="false"] .toc-chevron { transform: rotate(-90deg); }
.toc-list { overflow: hidden; transition: max-height var(--transition-med) ease; max-height: 2000px; }
.toc-list.is-collapsed { max-height: 0; }
.toc-list ul { display: flex; flex-direction: column; gap: 0.15rem; padding-top: 0.75rem; }
.toc-list a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.88rem;
  min-height: 36px;
  display: flex; align-items: center;
}
.toc-list a:hover { background: rgba(102,40,154,0.08); }
.toc-list a.is-active { background: linear-gradient(90deg, rgba(83,232,255,0.15), transparent); color: var(--royal-purple); font-weight: 700; border-left: 3px solid var(--electric-cyan); padding-left: calc(0.6rem - 3px); }

.article-sections { min-width: 0; }

/* ---------- TABLES ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.25rem 0; border-radius: var(--radius-md); box-shadow: 0 2px 10px rgba(21,27,69,0.08); }
table caption { text-align: left; font-weight: 700; color: var(--royal-purple); padding: 0.75rem 1rem; background: var(--marble-white); border: 1px solid rgba(102,40,154,0.15); border-bottom: none; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.spec-table, .freespin-table, .payment-table, .sortable-table {
  min-width: 560px;
  background: var(--soft-white);
  border: 1px solid rgba(102,40,154,0.15);
}
.spec-table th, .freespin-table th, .payment-table th, .sortable-table th,
.spec-table td, .freespin-table td, .payment-table td, .sortable-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(102,40,154,0.12);
  font-size: 0.92rem;
}
.spec-table thead th, .freespin-table thead th, .payment-table thead th, .sortable-table thead th {
  background: linear-gradient(135deg, var(--surface-purple), var(--royal-purple));
  color: var(--soft-white);
  font-family: var(--font-display);
  font-weight: 600;
  white-space: nowrap;
}
.spec-table tbody tr:nth-child(even), .freespin-table tbody tr:nth-child(even),
.payment-table tbody tr:nth-child(even), .sortable-table tbody tr:nth-child(even) { background: rgba(102,40,154,0.04); }
.sortable-table tbody tr.top-rated { background: linear-gradient(90deg, rgba(255,212,92,0.15), transparent); border-left: 3px solid var(--antique-gold); }
.sort-btn {
  display: inline-flex; align-items: center; gap: 0.35em;
  background: none; border: none; color: inherit; font: inherit; font-weight: 600;
  padding: 0.2em 0; min-height: 32px;
}
.sort-icon { font-size: 0.8em; opacity: 0.85; }
.avail-badge { font-weight: 700; padding: 0.15em 0.6em; border-radius: 999px; font-size: 0.8rem; }
.avail-high { background: rgba(46,156,105,0.15); color: var(--success-green); }
.table-note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }
.section-banner-image { display: block; width: 100%; height: auto; margin-top: 1.5rem; border-radius: var(--radius-md); }
.star-rating { font-weight: 700; color: #8f6212; }
.star-rating::before {
  content: "\2605\2605\2605\2605\2605";
  display: block;
  letter-spacing: 0.1em;
  color: #8f6212;
  font-size: 0.85em;
}
.star-rating[data-rating="4"]::before { content: "\2605\2605\2605\2605\2606"; }

/* ---------- INFO CARDS ---------- */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.info-card {
  background: linear-gradient(160deg, var(--soft-white), var(--marble-white));
  border: 1px solid rgba(217,155,38,0.4);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.info-icon { display: block; font-size: 1.4rem; color: var(--celestial-blue); margin-bottom: 0.4rem; }
.info-value { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--royal-purple); }
.info-label { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }

/* ---------- REASON CARDS (why popular) ---------- */
.reason-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.reason-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-top: 4px solid var(--celestial-blue);
  box-shadow: var(--shadow-soft);
}
.reason-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--royal-purple), var(--celestial-blue)); color: var(--soft-white); font-size: 1.1rem; margin-bottom: 0.75rem; }
.reason-card h3 { font-size: 1.05rem; }
.reason-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ---------- DISCLOSURE BOX ---------- */
.disclosure-box {
  background: rgba(165,29,57,0.06);
  border: 1px solid rgba(165,29,57,0.35);
  border-left: 5px solid var(--crimson);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.disclosure-box p { margin: 0; font-size: 0.9rem; }

/* ---------- CASINO FILTERS / GRID ---------- */
.casino-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }
.filter-btn {
  border: 2px solid var(--royal-purple);
  background: transparent;
  color: var(--royal-purple);
  border-radius: 999px;
  padding: 0.5em 1.2em;
  font-weight: 700;
  font-size: 0.85rem;
  min-height: 44px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.filter-btn:hover { background: rgba(102,40,154,0.08); }
.filter-btn.is-active { background: var(--royal-purple); color: var(--soft-white); }

.casino-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.casino-card {
  background: var(--soft-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(102,40,154,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 1000px;
}
.casino-card[hidden] { display: none; }
.casino-card-head { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.casino-card-head h3 { margin: 0; font-size: 1.2rem; flex: 1; }
.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-gold), var(--antique-gold));
  color: var(--deep-purple); font-weight: 800; font-size: 0.85rem;
}
.trust-badge { font-size: 0.72rem; font-weight: 700; padding: 0.25em 0.7em; border-radius: 999px; }
.trust-high { background: rgba(46,156,105,0.15); color: var(--success-green); }
.trust-medium { background: rgba(217,155,38,0.15); color: var(--antique-gold); }
.casino-desc { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
.casino-detail-list { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.88rem; }
.casino-detail-list li::before { content: "\2726"; color: var(--celestial-blue); margin-right: 0.4em; }
.goo-bonus { background: rgba(83,232,255,0.08); border-left: 3px solid var(--electric-cyan); padding: 0.6rem 0.8rem; font-size: 0.85rem; border-radius: 0 8px 8px 0; margin: 0; }
.casino-card-image { display: block; width: 100%; height: auto; border-radius: var(--radius-md); }
.casino-card .img-link { margin-top: auto; }
.casino-card-actions { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; padding-top: 0.5rem; }
.casino-card-actions .btn-primary { width: 100%; }
.no-results-msg { text-align: center; color: var(--text-muted); font-style: italic; padding: 1.5rem 0; }

/* ---------- FEATURE BLOCKS ---------- */
.feature-block { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; padding: 1.75rem 0; }
.feature-block:not(:last-child) { border-bottom: 1px dashed rgba(102,40,154,0.2); }
.feature-text h3 { font-size: 1.2rem; }
.feature-diagram { background: linear-gradient(160deg, var(--dark-indigo), var(--surface-purple)); border-radius: var(--radius-md); padding: 1.25rem; text-align: center; }
.feature-photo { display: block; width: 100%; height: auto; border-radius: 8px; margin-inline: auto; }
.feature-cta { display: flex; width: 100%; box-sizing: border-box; margin-top: 1rem; }

/* ---------- VARIANTS ---------- */
.variant-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.variant-card { background: var(--soft-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); padding: 0 1.5rem 1.5rem; border: 1px solid rgba(102,40,154,0.15); }
.variant-illustration { position: relative; margin: 0 -1.5rem 1rem; overflow: hidden; }
.variant-photo { display: block; width: 100%; height: auto; }
.variant-1000 { background: linear-gradient(135deg, var(--celestial-blue), var(--royal-purple)); }
.variant-xmas { background: linear-gradient(135deg, var(--crimson), var(--success-green)); }
.variant-roulette { background: linear-gradient(135deg, var(--dark-indigo), var(--antique-gold)); }
.variant-type, .variant-core { font-size: 0.82rem; color: var(--text-muted); margin: 0.2rem 0; }
.variant-toggle {
  background: none; border: 2px solid var(--royal-purple); color: var(--royal-purple);
  border-radius: 999px; padding: 0.4em 1.1em; font-weight: 700; font-size: 0.82rem; min-height: 40px; margin-top: 0.5rem;
}
.variant-more { margin-top: 0.75rem; font-size: 0.88rem; }
.variant-cta-wrap { text-align: center; margin-top: 2rem; }
.variant-cta { padding-inline: 3.5rem; }

/* ---------- STEPS (how to choose) ---------- */
.steps-list { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; position: relative; }
.step-item { display: flex; gap: 1.25rem; padding: 1rem 0; position: relative; }
.step-item:not(:last-child)::before {
  content: "";
  position: absolute; left: 22px; top: 54px; bottom: -6px;
  width: 2px;
  background: linear-gradient(180deg, var(--antique-gold), transparent);
}
.step-medallion {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-purple), var(--celestial-blue));
  color: var(--soft-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  border: 2px solid var(--bright-gold);
  box-shadow: 0 0 14px rgba(83,232,255,0.4);
  z-index: 1;
}
.step-copy h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.step-copy p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }

.safety-checklist { margin-top: 2rem; background: var(--dark-indigo); color: var(--ice-blue); border-radius: var(--radius-lg); padding: 1.5rem clamp(1.25rem, 4vw, 2.25rem); }
.safety-checklist h3 { color: var(--bright-gold); }
.safety-checklist ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.6rem; }
.safety-checklist li { padding-left: 1.6em; position: relative; font-size: 0.9rem; }
.safety-checklist li::before { content: "\2713"; position: absolute; left: 0; color: var(--electric-cyan); font-weight: 800; }

/* ---------- WARNING BOX ---------- */
.warning-box {
  background: rgba(165,29,57,0.08);
  border: 2px solid var(--crimson);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  margin: 1.5rem 0;
}
.warning-box p { margin: 0; color: var(--crimson); font-weight: 600; }

/* ---------- STRATEGY CARDS ---------- */
.strategy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.strategy-card { background: var(--soft-white); border-radius: var(--radius-md); padding: 1.4rem; border-left: 4px solid var(--antique-gold); box-shadow: var(--shadow-soft); }
.strategy-card h3 { font-size: 1rem; }
.strategy-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

/* ---------- COMPARISON CONTROLS / SEARCH ---------- */
.comparison-controls, .faq-search-wrap { margin: 1.25rem 0; }
.search-input {
  width: 100%;
  max-width: 420px;
  min-height: 44px;
  padding: 0.7em 1em;
  border: 2px solid rgba(102,40,154,0.3);
  border-radius: 999px;
  font-size: 0.95rem;
  background: var(--soft-white);
}
.search-input:focus { border-color: var(--celestial-blue); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.faq-item {
  background: var(--soft-white);
  border: 1px solid rgba(102,40,154,0.18);
  border-radius: var(--radius-md);
  padding: 0.25rem 1.25rem;
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 16px);
}
.faq-item[hidden] { display: none; }
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none; border: none;
  padding: 1rem 2.25rem 1rem 0;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--deep-purple);
  min-height: 44px;
  display: flex; align-items: center;
  position: relative;
}
.faq-icon { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--royal-purple); border-radius: 2px; transition: transform var(--transition-fast); }
.faq-icon::before { width: 16px; height: 3px; }
.faq-icon::after { width: 3px; height: 16px; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: scaleY(0); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height var(--transition-med) ease; font-size: 0.92rem; color: var(--text-muted); }
.faq-answer p { padding-bottom: 1rem; margin: 0; }
.faq-item.is-open .faq-answer { max-height: 400px; }
.copy-link-btn {
  background: none; border: none; color: #166094;
  font-size: 0.75rem; text-decoration: underline; padding: 0 0 0.75rem;
  min-height: 32px;
}

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 1.5rem; }
.about-copy h3 { margin-top: 1.5rem; }
.about-copy h3:first-child { margin-top: 0; }
.author-card {
  background: linear-gradient(160deg, var(--surface-purple), var(--deep-purple));
  color: var(--ice-blue);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: fit-content;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255,212,92,0.3);
}
.author-avatar {
  width: 84px; height: 84px; margin-inline: auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bright-gold), var(--antique-gold));
  color: var(--deep-purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  margin-bottom: 1rem;
}
.author-card h3 { color: var(--soft-white); margin-bottom: 0.2rem; }
.author-role { color: var(--bright-gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.1rem; }
.author-location { font-size: 0.85rem; opacity: 0.85; margin-bottom: 1rem; }
.author-tags { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; }
.author-tags li { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 0.45em 0.6em; }

/* ---------- LEGAL HUB ---------- */
.legal-panel { background: var(--soft-white); border: 1px solid rgba(102,40,154,0.18); border-radius: var(--radius-md); margin-bottom: 0.75rem; padding: 0 1.25rem; scroll-margin-top: calc(var(--header-height) + 16px); }
.legal-panel h3 { margin: 0; }
.legal-toggle {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1rem 2.25rem 1rem 0; font-weight: 700; font-size: 1rem; color: var(--royal-purple);
  min-height: 44px; position: relative; display: flex; align-items: center;
}
.legal-toggle .faq-icon::before, .legal-toggle .faq-icon::after { background: var(--antique-gold); }
.legal-content { overflow: hidden; max-height: 0; transition: max-height var(--transition-med) ease; }
.legal-panel.is-open .legal-content { max-height: 4000px; }
.legal-content { padding-bottom: 0; }
.legal-panel.is-open .legal-content { padding-bottom: 1.25rem; }
.legal-updated { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }
.legal-content h4 { font-size: 0.98rem; color: var(--royal-purple); margin-top: 1.2rem; }
.legal-content ul { margin: 0.5rem 0 1rem; }
.legal-content li { padding-left: 1.3em; position: relative; margin-bottom: 0.35rem; font-size: 0.92rem; }
.legal-content li::before { content: "\2022"; position: absolute; left: 0; color: var(--antique-gold); }

/* ---------- RESPONSIBLE GAMING SECTION ---------- */
.rg-section { background: linear-gradient(180deg, rgba(21,27,69,0.03), transparent); }
.rg-section ul { margin: 0.5rem 0 1.25rem; }
.rg-section li { padding-left: 1.3em; position: relative; margin-bottom: 0.4rem; }
.rg-section li::before { content: "\2022"; position: absolute; left: 0; color: var(--celestial-blue); }
.support-orgs li { font-weight: 700; color: var(--royal-purple); }

/* ---------- CONCLUSION ---------- */
.conclusion-section { text-align: left; }
.conclusion-cta {
  background: linear-gradient(160deg, var(--deep-purple), var(--surface-purple));
  color: var(--soft-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin: 1.5rem 0;
  border: 1px solid rgba(255,212,92,0.35);
}
.cta-steps { display: flex; flex-direction: column; gap: 0.6rem; counter-reset: cta; margin-bottom: 1.5rem; }
.cta-steps li { counter-increment: cta; padding-left: 2.2em; position: relative; }
.cta-steps li::before {
  content: counter(cta);
  position: absolute; left: 0; top: 0;
  width: 1.6em; height: 1.6em; border-radius: 50%;
  background: var(--bright-gold); color: var(--deep-purple);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85em;
}
.brand-statement { font-family: var(--font-display); font-size: 1.2rem; color: var(--royal-purple); text-align: center; margin: 2rem 0 1rem; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--dark-indigo); color: var(--ice-blue); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--soft-white); margin-bottom: 0.5rem; }
.footer-desc { font-size: 0.88rem; opacity: 0.85; }
.badge-18plus { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--bright-gold); color: var(--bright-gold); font-weight: 800; margin-top: 0.5rem; }
.footer-col h3 { color: var(--bright-gold); font-size: 0.95rem; margin-bottom: 0.75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { text-decoration: none; color: var(--ice-blue); font-size: 0.88rem; }
.footer-col a:hover { color: var(--electric-cyan); }
.footer-bottom { padding: 1.5rem 0 2rem; font-size: 0.8rem; opacity: 0.8; }
.footer-disclaimer { max-width: none; }
.footer-copyright { margin: 0; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--royal-purple); color: var(--soft-white);
  border: 2px solid var(--bright-gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-strong);
  z-index: 300;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 640px; margin-inline: auto;
  background: var(--dark-indigo);
  color: var(--ice-blue);
  border: 1px solid var(--antique-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 1.25rem 1.5rem;
  z-index: 600;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 0.88rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-preferences { margin-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.cookie-preferences[hidden] { display: none; }
.cookie-pref-row label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- ANIMATIONS ---------- */
@keyframes cloudDrift { from { transform: translateX(-3%); } to { transform: translateX(3%); } }
@keyframes lightningFlash { 0%, 92%, 100% { opacity: 0; } 93% { opacity: 0.8; } 94% { opacity: 0.1; } 95% { opacity: 0.6; } 96% { opacity: 0; } }
@keyframes glowPulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes eyeGlow { 0%, 100% { box-shadow: 0 0 8px 3px var(--electric-cyan); } 50% { box-shadow: 0 0 18px 6px var(--electric-cyan); } }
@keyframes borderShimmer { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }

body.page-hidden .hero-clouds,
body.page-hidden .hero-lightning,
body.page-hidden .hero-glow,
body.page-hidden .zeus-eye,
body.page-hidden .hero-title-plaque::before { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-clouds, .hero-lightning, .hero-glow, .zeus-eye, .hero-title-plaque::before {
    animation: none !important;
  }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* Tablet: 640px+ */
@media (min-width: 640px) {
  .intro-layout { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile nav (below 1200px) */
@media (max-width: 1199px) {
  .nav-toggle { display: flex; }
  .nav-panel {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--dark-indigo);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-med);
    z-index: 450;
    overflow-y: auto;
  }
  .nav-panel.is-open { transform: translateX(0); }
  .nav-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
  .nav-panel-title { color: var(--soft-white); font-weight: 700; }
  .nav-close { background: none; border: none; color: var(--soft-white); font-size: 1.8rem; width: 44px; height: 44px; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .nav-link { width: 100%; }
  .dropdown-menu { padding-left: 1rem; }
  .nav-panel .btn { margin-top: 1rem; text-align: center; }
  .nav-overlay:not([hidden]) { display: block; }
}
@media (min-width: 1200px) {
  .nav-overlay { display: none !important; }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .content-layout { grid-template-columns: 280px 1fr; align-items: start; }
  .toc-sidebar { position: sticky; top: calc(var(--header-height) + 20px); max-height: calc(100vh - var(--header-height) - 40px); overflow-y: auto; }
  .toc-toggle { display: none; }
  .toc-list { max-height: none !important; }
  .feature-block { grid-template-columns: 1.3fr 1fr; }
  .feature-block.reverse .feature-text { order: 2; }
  .feature-block.reverse .feature-diagram { order: 1; }
  .about-grid { grid-template-columns: 2fr 1fr; }
  .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); }
}

/* Wide desktop: 1440px+ */
@media (min-width: 1440px) {
  :root { --max-width: 1360px; }
  .hero-title { font-size: clamp(2.4rem, 4.5vw, 4.2rem); }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  .rg-topbar, .site-header, .reading-progress, .back-to-top, .cookie-banner,
  .nav-toggle, .hero-actions, .casino-card-actions, .filter-btn, .toc-sidebar,
  .copy-link-btn, .search-input, .sort-btn .sort-icon { display: none !important; }
  body { background: #fff; color: #000; }
  a { text-decoration: underline; color: #000; }
  .content-layout { grid-template-columns: 1fr; }
  .faq-answer, .legal-content { max-height: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .content-section { border-bottom: 1px solid #ccc; }
}
