:root {
  --bg: #0b0f19;
  --surface: #131b2e;
  --surface-hover: #1e2942;
  --accent: #E63946;
  --accent-dark: #b91c1c;
  --gold: #F1C40F;
  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(241, 196, 15, 0.25);
  
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-premium: 0 30px 60px rgba(0, 0, 0, 0.6);
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Background Ambient Blur Effects */
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.15;
  background-image: radial-gradient(rgba(241, 196, 15, 0.05) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  color: #000000;
  background: var(--gold);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1001;
  padding: 10px 16px;
  color: #000000;
  background: var(--gold);
  border-radius: 999px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* Floating Glass Pill Navigation Bar */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--container));
  z-index: 1000;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header:hover {
  border-color: var(--border-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.header-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #000000;
  background: var(--gold);
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.main-nav a {
  padding: 8px 16px;
  color: var(--text-muted);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 180ms ease, background-color 180ms ease;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s;
}

.menu-toggle:hover {
  border-color: var(--border-hover);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

/* Cinematic Centered Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 160px 100px;
  overflow: hidden;
  background: 
    radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(241, 196, 15, 0.04) 0%, transparent 40%);
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--text);
  max-width: 1100px;
  text-wrap: balance;
}

/* Inline Title Image style */
.inline-title-img {
  display: inline-block;
  width: 90px;
  height: 48px;
  border-radius: 999px;
  vertical-align: middle;
  background-size: cover;
  background-position: center;
  margin-inline: 8px;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 24px rgba(241, 196, 15, 0.15);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 780px;
  line-height: 1.6;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.button {
  min-height: 52px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #000000;
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(241, 196, 15, 0.15);
}

.button-primary:hover {
  background: #f3d853;
  box-shadow: 0 15px 40px rgba(241, 196, 15, 0.25);
}

.button-secondary {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero-visual {
  width: 100%;
  max-width: 900px;
  margin: 0;
  position: relative;
  z-index: 5;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-premium);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.visual-note {
  position: absolute;
  right: 24px;
  bottom: -20px;
  padding: 16px 24px;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(19, 27, 46, 0.95);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

/* Infinite Marquee */
.marquee-wrapper {
  overflow: hidden;
  display: flex;
  width: 100%;
  background: var(--surface);
  border-block: 1px solid var(--border);
  padding: 24px 0;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  gap: 60px;
  padding-right: 60px;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Sections & Spacing */
.section {
  padding-block: 140px;
  border-bottom: 1px solid var(--border);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 64px;
}

.section-heading h2,
.split-copy h2,
.subsection-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.section-heading p,
.split-copy > p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Scrubbing Words styles */
.scrub-word {
  transition: opacity 0.2s ease;
}

/* Refined Card Hover Physics (gpt-taste) */
.card-hover-effect {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover-effect:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 196, 15, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background-color: var(--surface-hover);
}

/* Intro Grid & Quote Card */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.intro-story,
.quote-card {
  min-height: 340px;
  padding: 48px;
  border-radius: var(--radius-lg);
}

.intro-story {
  border: 1px solid var(--border);
  background: var(--surface);
}

.intro-story h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-story p {
  color: var(--text-muted);
  margin: 0;
}

.quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--accent);
  color: #ffffff;
  overflow: hidden;
  border: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.25);
}

.quote-card::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.02), 0 0 0 80px rgba(255, 255, 255, 0.01);
}

.quote-card svg {
  width: 40px;
  height: 40px;
  opacity: 0.8;
  color: var(--gold);
  transition: transform 0.4s ease;
}

.quote-card:hover svg {
  transform: scale(1.1) rotate(-5deg);
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 36px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.3;
}

.quote-card cite {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Bento Grid System */
.expertise-section {
  background: rgba(19, 27, 46, 0.3);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 24px;
}

.bento-card {
  min-height: 280px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.bento-col-2 {
  grid-column: span 2;
}

.bento-row-2 {
  grid-row: span 2;
}

.icon-box {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(241, 196, 15, 0.15);
  border-radius: 14px;
  background: rgba(241, 196, 15, 0.06);
  margin-bottom: 28px;
  align-self: flex-start;
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.bento-card h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 600;
}

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

/* Media and Split Grid Layout */
.podcast-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.podcast-media {
  margin: 0;
  position: relative;
}

.podcast-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-premium);
}

.podcast-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 12px 20px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(11, 15, 25, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.audio-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.audio-list li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.audio-list li:first-child {
  border-top: 1px solid var(--border);
}

.audio-index {
  width: 36px;
    height: 36px;
    line-height: 36px !important;
    display: grid !important;
    place-items: center;
    color: var(--gold) !important;
    border: 1px solid rgba(241, 196, 15, 0.15);
    border-radius: 50%;
    background: rgba(241, 196, 15, 0.05);
    font-weight: 700;
    font-size: 0.88rem !important;
}

.audio-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: var(--text);
}

.audio-list span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Timeline Layout */
.journey-section {
  background: rgba(19, 27, 46, 0.1);
}

.journey-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.journey-item {
  min-height: 280px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.journey-item small {
  display: block;
  margin-bottom: 40px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.journey-item h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 600;
  font-family: var(--font-body);
}

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

/* Sources Panel */
.sources-panel {
  padding: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.sources-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.source-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.source-link {
  min-height: 112px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(11, 15, 25, 0.4);
  transition: border-color 0.3s, background-color 0.3s;
}

.source-link:hover {
  border-color: var(--gold);
  background-color: rgba(241, 196, 15, 0.03);
}

.source-link strong {
  font-size: 0.9rem;
  color: var(--text);
}

.source-link span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
}

.source-link svg {
  width: 16px;
  height: 16px;
}

/* Casino Custom Styling */
.chapter-tint {
  background: rgba(19, 27, 46, 0.2);
}

.editorial-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.editorial-split-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split-left {
  min-width: 0;
}

.split-right {
  min-width: 0;
}

.casino-bento-grid,
.methodology-grid-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.casino-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
}

.casino-card h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
}

.casino-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.visual-wrapper img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-premium);
}

.subsection-title {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 20px;
}

.software-providers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.software-providers-list li {
  display: flex;
  gap: 18px;
  align-items: center;
}

.software-providers-list strong {
  color: var(--gold);
  font-size: 1.05rem;
  min-width: 100px;
  flex-shrink: 0;
}

.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.rating-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
}

.review-quote {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px !important;
}

.reviews-stack cite {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: normal;
}

.section-title-center {
  margin-bottom: 48px;
}

/* Accordion Support */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.25s, color 0.25s;
}

.accordion-button:not(.collapsed) {
  background: rgba(241, 196, 15, 0.05);
  color: var(--gold);
}

.accordion-icon {
  font-size: 0.75rem;
  transition: transform 0.25s;
  color: var(--gold);
}

.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

.accordion-collapse {
  transition: max-height 0.3s ease;
}

.accordion-collapse.collapse {
  display: none;
}

.accordion-body {
  padding: 24px;
  line-height: 1.6;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

.editorial-note-callout {
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: rgba(241, 196, 15, 0.03);
  color: var(--text-muted);
  font-size: 0.95rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 24px;
}

/* Casino Action Section */
.casino-section {
  padding-block: 120px;
  background: radial-gradient(circle at 80% 50%, rgba(230, 57, 70, 0.05), transparent 40%), var(--bg);
  border-top: 1px solid var(--border);
}

.responsible-card {
  padding: 40px;
  border: 1px solid rgba(230, 57, 70, 0.15);
  background: rgba(230, 57, 70, 0.02);
}

.responsible-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
}

.age-badge {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: #000000;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2);
}

.responsible-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 600;
}

.responsible-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Footer Section */
.site-footer {
  padding-block: 40px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: #060911;
}

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

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
}

.back-top {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.back-top:hover {
  color: #000000;
  background: var(--gold);
  border-color: var(--gold);
}

.back-top svg {
  width: 18px;
  height: 18px;
}

/* Responsive Rules */
@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 24px);
    border-radius: 20px;
    top: 12px;
  }
  
  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(19, 27, 46, 0.98);
    box-shadow: var(--shadow-premium);
    gap: 4px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 20px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid,
  .intro-grid,
  .bento-grid,
  .podcast-grid,
  .journey-grid-layout,
  .sources-panel,
  .editorial-split-grid,
  .editorial-split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bento-col-2 {
    grid-column: span 1;
  }

  .bento-row-2 {
    grid-row: span 1;
  }

  .sources-panel {
    padding: 40px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding-block: 80px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  .inline-title-img {
    width: 60px;
    height: 32px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .marquee-content span {
    font-size: 0.8rem;
  }

  .intro-story,
  .quote-card {
    padding: 32px;
    min-height: auto;
  }

  .bento-card {
    padding: 32px;
    min-height: auto;
  }

  .source-links,
  .casino-bento-grid,
  .methodology-grid-bento {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
