/* AU Casino Guide — premium affiliate layout, mobile-first */
:root {
  --bg: #0a0b0f;
  --bg-elevated: #12141c;
  --bg-card: #161922;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8eaef;
  --text-muted: #9aa3b5;
  --accent: #3dd6c3;
  --accent-dim: rgba(61, 214, 195, 0.15);
  --gold: #e8c547;
  --gold-dim: rgba(232, 197, 71, 0.12);
  --danger: #ff6b6b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --header-h: 64px;
  --max: 1200px;
  --content: 720px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(61, 214, 195, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 197, 71, 0.06), transparent);
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (min-width: 768px) {
  body { font-size: 1.0625rem; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #6ee7d9; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* Header — sticky on scroll */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  background: rgba(10, 11, 15, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}
.site-header.is-scrolled {
  background: rgba(10, 11, 15, 0.98);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}
.logo-img {
  display: block;
  height: 36px;
  width: auto;
}
.logo .logo-text {
  font-weight: 700;
  color: var(--text);
}
.nav-main { display: none; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
.nav-main a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-main a:hover { color: var(--text); }
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a {
  padding: 0.6rem 0;
  color: var(--text);
  text-decoration: none;
}
.mobile-nav[hidden] { display: none; }

@media (min-width: 768px) {
  .nav-main { display: flex; }
  .nav-toggle { display: none; }
}

/* Hero — left aligned, full width of main column */
.hero {
  padding: 2rem 0 0;
  text-align: left;
  width: 100%;
}
@media (min-width: 768px) {
  .hero { padding: 3rem 0 0; }
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 1rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--text-muted);
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.75rem;
  text-align: left;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (min-width: 480px) {
  .hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100%;
  max-width: 100%;
}
.hero-trust li::before { content: "✓ "; color: var(--accent); }

.hero .author-byline--hero {
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.5rem;
  justify-content: flex-start;
  text-align: left;
}
.hero .author-byline--hero .author-byline-body,
.hero .author-byline--hero .author-byline-line,
.hero .author-byline--hero .author-byline-meta {
  text-align: left;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
  max-width: 100%;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #2a9d8f);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(61, 214, 195, 0.35);
}
.btn-primary:hover { color: var(--bg); box-shadow: 0 6px 28px rgba(61, 214, 195, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-cta {
  background: linear-gradient(135deg, var(--gold), #c9a227);
  color: #1a1508;
  font-weight: 700;
}
.btn-cta:hover { color: #1a1508; filter: brightness(1.08); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* Page layout: hero + TOC + article in one grid */
.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0));
  width: 100%;
}
.page-layout > * {
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .page-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
  .page-hero {
    grid-column: 2;
    grid-row: 1;
  }
  .page-layout .toc-sidebar {
    grid-column: 1;
    grid-row: 1 / -1;
  }
  .page-layout .article-body {
    grid-column: 2;
    grid-row: 2;
  }
  .page-layout--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: var(--content);
    margin-inline: auto;
  }
  .page-layout--single .page-hero,
  .page-layout--single .article-body {
    grid-column: 1;
  }
  .page-layout--single .page-hero {
    grid-row: 1;
  }
  .page-layout--single .article-body {
    grid-row: 2;
  }
}
.toc-sidebar { display: none; }
@media (min-width: 1024px) {
  .toc-sidebar {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
    align-self: start;
    height: max-content;
    max-height: calc(100vh - var(--header-h) - 2.5rem);
    z-index: 40;
  }
}
/* Mobile: compact jump nav */
.mobile-toc {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
}
.mobile-toc::-webkit-scrollbar { display: none; }
.mobile-toc-inner {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  padding: 0.25rem 0;
}
.mobile-toc a {
  flex-shrink: 0;
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}
.mobile-toc a:hover { color: var(--accent); border-color: var(--accent); }
@media (min-width: 1024px) {
  .mobile-toc { display: none; }
}
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  max-height: calc(100vh - var(--header-h) - 2.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (min-width: 1024px) {
  .sticky-toc {
    position: static;
    top: auto;
  }
}
.toc-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.toc ol {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.8;
}
.toc a { color: var(--text-muted); text-decoration: none; }
.toc a:hover { color: var(--accent); }

.article-body {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (min-width: 1024px) {
  .article-body { max-width: none; }
}

/* Sections */
.section { margin-bottom: 3rem; }
.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: 400;
  margin: 0 0 1rem;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.section h3 {
  font-size: clamp(1rem, 3vw, 1.15rem);
  margin: 1.75rem 0 0.75rem;
  color: var(--text);
  overflow-wrap: break-word;
}
.section p { margin: 0 0 1rem; color: var(--text-muted); }
.section p strong { color: var(--text); }
.section ul, .section ol { color: var(--text-muted); padding-left: 1.25rem; }
.section li { margin-bottom: 0.4rem; }

.disclaimer-box {
  background: var(--gold-dim);
  border: 1px solid rgba(232, 197, 71, 0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text) !important;
}

/* Intro read more */
.intro-section .intro-lead {
  margin-bottom: 0.75rem;
}
.intro-more[hidden] {
  display: none;
}
.intro-more:not([hidden]) {
  display: block;
  animation: introReveal 0.35s ease;
}
@keyframes introReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.intro-more p:first-child {
  margin-top: 0;
}
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  padding: 0.5rem 0;
  border: none;
  background: none;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-read-more:hover {
  color: #6ee7d9;
}
.btn-read-more::after {
  content: "↓";
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.btn-read-more[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.intro-section .disclaimer-box {
  margin-top: 0;
}

/* Casino cards */
.casino-rank-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.casino-card:hover { border-color: rgba(61, 214, 195, 0.3); }
.casino-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.casino-card-header > div:last-child {
  flex: 1;
  min-width: 0;
}
@media (max-width: 479px) {
  .casino-card-header {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
  }
  .casino-card-header .rank-badge { grid-row: 1; grid-column: 1; }
  .casino-card-header .casino-logo-placeholder { grid-row: 1; grid-column: 2; }
  .casino-card-header > div:last-child {
    grid-row: 2;
    grid-column: 1 / -1;
    flex: none;
    width: 100%;
    padding-top: 0.5rem;
  }
}
.rank-badge {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.casino-logo-placeholder,
.casino-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}
.casino-logo-placeholder {
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
}
.casino-logo-img {
  object-fit: contain;
  background: var(--bg-elevated);
  padding: 4px;
}
.casino-card h3 { margin: 0; font-size: 1.1rem; }
.bonus-line {
  margin: 0.2rem 0 0;
  font-size: clamp(0.8rem, 2.5vw, 0.88rem);
  color: var(--gold) !important;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.casino-card > p { margin-bottom: 1rem; font-size: 0.95rem; }
.casino-card .btn-cta {
  width: 100%;
}
@media (min-width: 480px) {
  .casino-card .btn-cta { width: auto; }
}
.review-block .btn-cta {
  width: 100%;
}
@media (min-width: 480px) {
  .review-block .btn-cta { width: auto; }
}

/* Tables */
.table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.table-scroll-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0 0 0.5rem;
  margin: 1rem 0 0;
}
@media (min-width: 768px) {
  .table-scroll-hint { display: none; }
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  min-width: 520px;
}
@media (min-width: 768px) {
  .data-table { font-size: 0.85rem; min-width: 560px; }
}
.data-table th,
.data-table td {
  padding: 0.65rem 0.75rem;
}
@media (min-width: 768px) {
  .data-table th,
  .data-table td { padding: 0.75rem 1rem; }
}
.data-table caption {
  text-align: left;
  padding: 1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
}
.data-table th,
.data-table td {
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.data-table th {
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.data-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.table-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Snapshot */
.highlight-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.snapshot-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .snapshot-grid { grid-template-columns: repeat(3, 1fr); }
}
.snapshot-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.snapshot-card h3 { margin: 0 0 0.5rem; font-size: 1rem; }
.snapshot-feature, .snapshot-payout { font-size: 0.88rem; }
.text-link { font-size: 0.85rem; }

/* Reviews */
.review-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.score-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.score-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}
@media (min-width: 480px) {
  .score-row {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.8rem;
    gap: 0.5rem 1rem;
  }
}
.review-block h3 {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  line-height: 1.35;
}
.review-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  display: block;
}
.pros, .cons {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}
.pros li::before { content: "+ "; color: var(--accent); }
.cons li::before { content: "− "; color: var(--danger); }

.checklist { margin: 1rem 0; }
.support-list li { margin-bottom: 0.75rem; }

/* FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.25rem 1rem;
  margin-bottom: 0.5rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  padding: 0.75rem 0;
}
.faq-item p { margin: 0 0 1rem; font-size: 0.95rem; }

.responsible-section {
  background: rgba(61, 214, 195, 0.06);
  border: 1px solid rgba(61, 214, 195, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

/* Author byline — below title */
.author-byline {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 100%;
}
.author-byline-avatar,
.author-byline-avatar-img {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.author-byline-avatar {
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), #c9a227);
}
.author-byline-avatar-img {
  object-fit: cover;
}
.author-byline-body {
  flex: 1;
  min-width: 0;
}
.author-byline-line {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  color: var(--text);
}
.author-byline-label {
  color: var(--text-muted);
  font-weight: 500;
  margin-right: 0.35rem;
}
.author-byline-name {
  color: var(--text);
  font-weight: 700;
}
.author-byline-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.author-byline-meta time {
  color: var(--accent);
}

.final-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(180deg, var(--bg-card), var(--bg));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.contact-form textarea { resize: vertical; min-height: 8rem; }
.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-links li {
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

/* Author archive */
.author-archive-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.author-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.author-card:hover {
  border-color: rgba(61, 214, 195, 0.4);
  box-shadow: var(--shadow);
  color: inherit;
}
.author-card-avatar,
.author-card-avatar-img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.author-card-avatar {
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), #c9a227);
}
.author-card-avatar-img {
  object-fit: cover;
}
.author-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.author-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.author-card-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.author-card-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.author-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.author-card-meta time { color: var(--accent); }

/* Author profile */
.author-byline--profile {
  margin-bottom: 1rem;
}
.author-byline--profile h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}
.hero-eyebrow a {
  color: var(--accent);
  text-decoration: none;
}
.hero-eyebrow a:hover { color: #6ee7d9; }

.author-articles {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.author-article-card {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.author-article-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-family: var(--font-sans);
}
.author-article-card h3 a {
  color: var(--text);
  text-decoration: none;
}
.author-article-card h3 a:hover { color: var(--accent); }
.author-article-meta {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.author-article-meta time { color: var(--accent); }
.author-article-card p:last-child {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.author-byline-name a {
  color: inherit;
  text-decoration: none;
}
.author-byline-name a:hover { color: var(--accent); }

/* Footer — left / right columns */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-bottom: 60px;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.footer-col {
  flex: 1 1 0;
  min-width: 0;
}
.footer-brand {
  margin: 0 0 0.75rem;
}
.footer-logo-img {
  display: block;
  height: 24px;
  width: auto;
}
.footer-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.footer-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-trust-logos img {
  display: block;
  width: auto;
  max-width: 132px;
  max-height: 40px;
  object-fit: contain;
}
.footer-trust-logos img:first-child {
  max-width: 42px;
  max-height: 42px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0 0 1rem;
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--accent); }
.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
@media (min-width: 768px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .footer-col-left {
    flex: 1 1 50%;
    padding-right: 1rem;
  }
  .footer-col-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding-left: 1rem;
  }
  .footer-nav {
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .footer-col-right {
    align-items: flex-start;
    text-align: left;
  }
  .footer-nav {
    justify-content: flex-start;
  }
}

/* Sticky CTA */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem clamp(1rem, 4vw, 1.5rem);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
  background: rgba(18, 20, 28, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s;
  max-width: 100vw;
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-bar span {
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  font-weight: 600;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sticky-cta-bar .btn {
  flex-shrink: 0;
}
@media (max-width: 359px) {
  .sticky-cta-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .sticky-cta-bar span {
    white-space: normal;
    text-align: center;
  }
  .sticky-cta-bar .btn { width: 100%; }
}

/* Header mobile */
@media (max-width: 767px) {
  .header-inner { padding-inline: 0; }
}
.header-inner.container {
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* Section spacing mobile */
@media (max-width: 767px) {
  .section { margin-bottom: 2.25rem; }
  .casino-card { padding: 1rem; border-radius: var(--radius); }
  .review-block { padding: 1rem; border-radius: var(--radius); }
  .highlight-panel { padding: 1rem; }
  .responsible-section { padding: 1rem; }
  .final-cta { padding: 1.5rem 1rem; }
  .final-cta .btn-lg { width: 100%; }
  .site-footer { padding: 2rem 0; margin-bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
  .hero-cta-row .btn { width: 100%; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .hero-cta-row .btn { width: auto; flex: 1 1 calc(50% - 0.375rem); }
}

main,
.article {
  width: 100%;
  max-width: 100%;
}

/* Contain overflow without breaking position:sticky on header/TOC */
.article-body {
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  .article-body {
    overflow-x: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .casino-card, .sticky-cta-bar { transition: none; }
  .intro-more:not([hidden]) { animation: none; }
  .btn-read-more::after { transition: none; }
}
