/* =========================================================
   Dogg House Casino Review — Stylesheet
   Mobile-first, SEO-friendly, dark/light, Core Web Vitals
   ========================================================= */

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

:root {
  --bg: #0b0712;
  --bg-2: #120a1f;
  --surface: #1a1030;
  --surface-2: #221540;
  --border: #2c1f4d;
  --text: #ecebf4;
  --text-dim: #b6b1cf;
  --muted: #8a85a6;
  --brand: #b388ff;
  --brand-2: #7c4dff;
  --accent: #ffd166;
  --accent-2: #ff7ac6;
  --good: #5fe0b7;
  --bad: #ff6b8b;
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1180px;
  --shadow: 0 10px 30px -10px rgba(0,0,0,.6);
  --shadow-lg: 0 25px 60px -20px rgba(124, 77, 255, .35);
  --focus: 0 0 0 3px rgba(255, 209, 102, .55);
  --ease: cubic-bezier(.2,.7,.2,1);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafaff;
    --bg-2: #f3f1fb;
    --surface: #ffffff;
    --surface-2: #f6f4ff;
    --border: #e6e2f3;
    --text: #14102a;
    --text-dim: #3c355a;
    --muted: #6b6589;
    --shadow: 0 10px 30px -12px rgba(20, 16, 42, .12);
    --shadow-lg: 0 25px 60px -20px rgba(124, 77, 255, .25);
  }
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(124, 77, 255, .25), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(255, 122, 198, .18), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s var(--ease);
}
a:hover { color: var(--accent); }
a:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 4px; }

::selection { background: var(--accent); color: #1a1030; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.sr-only {
  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: -9999px;
  top: 8px;
  background: var(--accent);
  color: #1a1030;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { left: 8px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .2px;
}
.brand:hover { color: var(--text); }
.brand-mark { display: inline-grid; place-items: center; filter: drop-shadow(0 8px 20px rgba(124,77,255,.35)); }
.brand-text span { color: var(--accent); }

.site-nav { display: flex; align-items: center; }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: space-between;
  width: 40px; height: 34px; padding: 8px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 6px;
  position: absolute;
  inset: 64px 16px auto 16px;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transform-origin: top right;
  transform: scale(.98) translateY(-6px);
  opacity: 0; visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-list.open { opacity: 1; visibility: visible; transform: none; }

.nav-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}
.nav-list a:hover { background: var(--surface-2); color: var(--text); }
.nav-list .nav-cta {
  background: linear-gradient(135deg, var(--brand-2), var(--accent-2));
  color: #fff !important;
  text-align: center;
  font-weight: 700;
}

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .nav-list {
    position: static;
    flex-direction: row;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    inset: auto;
    opacity: 1; visibility: visible; transform: none;
  }
  .nav-list a { padding: 10px 14px; font-size: 15px; }
  .nav-list .nav-cta { padding: 10px 18px; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding-top: 14px; font-size: 14px; color: var(--muted); }
.breadcrumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.breadcrumbs li + li::before {
  content: "/"; color: var(--muted); margin-right: 6px;
}
.breadcrumbs a { color: var(--text-dim); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { padding: clamp(24px, 6vw, 56px) 0 clamp(16px, 4vw, 32px); }
.hero-inner { max-width: 900px; }
.eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 209, 102, .08);
  border: 1px solid rgba(255, 209, 102, .25);
  padding: 6px 10px;
  border-radius: 999px;
  margin: 0 0 16px;
}
h1 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  color: var(--text);
  background: linear-gradient(135deg, #fff, #d9c9ff 55%, #ffd166);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (prefers-color-scheme: light) {
  h1 { background: linear-gradient(135deg, #1a1030, #6a42ff 60%, #c48b00); -webkit-background-clip: text; background-clip: text; color: transparent; }
}

.lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-dim); max-width: 70ch; }
.lede strong { color: var(--text); }

.hero-figure {
  margin: 22px 0 26px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  max-width: 860px;
}
.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 25%;
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 7, 18, .55) 100%);
}
.hero-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  color: #f3f0ff;
  font-size: 13.5px;
  line-height: 1.4;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
@media (max-width: 560px) {
  .hero-figure img { aspect-ratio: 3 / 2; object-position: center 20%; }
  .hero-figure figcaption { font-size: 12.5px; padding: 12px 14px; }
}

.byline {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0;
  font-size: 14px;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  color: #1a1030;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: var(--shadow);
}
.byline-text { display: flex; flex-direction: column; gap: 2px; }
.byline-meta { color: var(--muted); font-size: 13px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.badge {
  font-size: 13px; font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
}

.disclaimer {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(255,122,198,.08), rgba(124,77,255,.08));
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--text-dim);
}
.disclaimer strong { color: var(--text); }
.disclaimer a { color: var(--accent); }

/* ---------- Layout: TOC + content ---------- */
.layout {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  padding-block: clamp(20px, 4vw, 40px);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .layout { grid-template-columns: 280px 1fr; }
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 10px;
  font-size: 14.5px;
  position: sticky;
  top: 84px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow: auto;
  scrollbar-width: thin;
}
.toc h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 10px;
}
.toc ol { list-style: none; counter-reset: toc; margin: 0; padding: 0; }
.toc li { counter-increment: toc; margin: 2px 0; }
.toc a {
  display: block;
  padding: 8px 10px 8px 32px;
  position: relative;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 8px;
  line-height: 1.35;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute; left: 8px; top: 8px;
  font-size: 11px; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.toc a:hover { background: var(--surface-2); color: var(--text); }
.toc a.active {
  background: linear-gradient(135deg, rgba(124,77,255,.18), rgba(255,209,102,.08));
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border);
}

@media (max-width: 1023px) {
  .toc {
    position: static;
    max-height: none;
  }
  .toc ol { column-count: 2; column-gap: 12px; }
  .toc li { break-inside: avoid; }
}
@media (max-width: 560px) {
  .toc ol { column-count: 1; }
}

/* ---------- Content typography ---------- */
.content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.2;
  margin: 48px 0 14px;
  scroll-margin-top: 84px;
  position: relative;
  padding-left: 16px;
}
.content h2::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 4px; height: calc(100% - 16px);
  background: linear-gradient(180deg, var(--brand), var(--accent));
  border-radius: 4px;
}
.content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  margin: 28px 0 10px;
  color: var(--text);
}
.content h4 { font-size: 17px; margin: 12px 0 6px; color: var(--text); }

.content p { margin: 0 0 14px; color: var(--text-dim); }
.content p strong, .content li strong { color: var(--text); }
.content em { font-style: normal; background: rgba(255, 209, 102, .1); padding: 0 4px; border-radius: 4px; color: var(--text); }

.content ul, .content ol { padding-left: 22px; margin: 0 0 18px; color: var(--text-dim); }
.content li { margin: 6px 0; }

.content ol.steps {
  list-style: none; counter-reset: step; padding-left: 0;
  display: grid; gap: 8px;
}
.content ol.steps li {
  counter-increment: step;
  position: relative;
  padding: 10px 14px 10px 46px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.content ol.steps li::before {
  content: counter(step);
  position: absolute; left: 10px; top: 10px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-2), var(--accent-2));
  color: #fff; font-weight: 700; font-size: 13px;
  border-radius: 50%;
}

.content ul.check-list { list-style: none; padding-left: 0; }
.content ul.check-list li {
  position: relative; padding-left: 28px;
}
.content ul.check-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent-2));
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.15);
}
.content ul.check-list li::after {
  content: ""; position: absolute; left: 5px; top: 12px;
  width: 8px; height: 4px;
  border-left: 2px solid #1a1030;
  border-bottom: 2px solid #1a1030;
  transform: rotate(-45deg);
}

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  margin: 10px 0 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 520px;
}
caption { text-align: left; padding: 10px 14px; color: var(--muted); font-size: 13px; }
thead th {
  text-align: left;
  background: linear-gradient(135deg, rgba(124,77,255,.2), rgba(255,209,102,.08));
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
}
tbody th, tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-dim);
}
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody th { color: var(--text); font-weight: 600; text-align: left; width: 28%; }
tbody tr:hover { background: var(--surface-2); }

/* ---------- Cards grid ---------- */
.cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin: 10px 0 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--brand) 60%, var(--border)); box-shadow: var(--shadow); }
.card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  margin: 0 0 6px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.card p { margin: 0; font-size: 14.5px; }

/* ---------- Callouts ---------- */
.callout {
  background: linear-gradient(180deg, rgba(124,77,255,.10), rgba(124,77,255,.04));
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 16px 0;
}
.callout p { margin: 0; }
.callout.warn {
  background: linear-gradient(180deg, rgba(255,107,139,.10), rgba(255,107,139,.03));
  border-left-color: var(--bad);
}

/* ---------- Pros/Cons ---------- */
.pros-cons {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin: 10px 0 20px;
}
@media (min-width: 720px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}
.pros, .cons {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.pros h3, .cons h3 { margin-top: 0; }
.pros h3::before, .cons h3::before {
  content: ""; display: inline-block;
  width: 10px; height: 10px; border-radius: 50%;
  margin-right: 8px; vertical-align: middle;
}
.pros h3::before { background: var(--good); box-shadow: 0 0 14px var(--good); }
.cons h3::before { background: var(--bad); box-shadow: 0 0 14px var(--bad); }
.pros ul, .cons ul { list-style: none; padding: 0; margin: 0; }
.pros li, .cons li { position: relative; padding-left: 26px; margin: 8px 0; }
.pros li::before, .cons li::before {
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900; font-size: 12px; color: #1a1030;
}
.pros li::before { content: "+"; background: var(--good); }
.cons li::before { content: "−"; background: var(--bad); }

/* ---------- Verdict ---------- */
.verdict-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  margin: 14px 0 20px;
}
@media (min-width: 720px) {
  .verdict-grid { grid-template-columns: 1fr 1fr; }
}
.verdict-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.verdict-card::before {
  content: ""; position: absolute; inset: auto -40px -40px auto;
  width: 160px; height: 160px; border-radius: 50%;
  filter: blur(40px); opacity: .35; pointer-events: none;
}
.verdict-card.good::before { background: var(--good); }
.verdict-card.bad::before { background: var(--bad); }
.verdict-card h3 { margin-top: 0; }
.verdict-card ul { margin: 0; padding-left: 18px; }

.editorial-box {
  margin-top: 24px;
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.editorial-box h3 { margin-top: 0; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  margin: 10px 0;
  overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: color-mix(in srgb, var(--brand) 60%, var(--border)); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 46px 14px 16px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  font-family: "Space Grotesk", sans-serif;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-2), var(--accent-2));
  color: #fff; border-radius: 50%; font-weight: 800;
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq details p { padding: 0 16px 16px; margin: 0; color: var(--text-dim); }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 60px;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(124,77,255,.15), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  color: var(--text-dim);
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
@media (min-width: 1100px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}
.footer-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px; margin: 0 0 8px;
  color: var(--text);
}
.site-footer h3 {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 6px 0; }
.site-footer a { color: var(--text-dim); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.muted { color: var(--muted); font-size: 14px; }

/* ---------- PLAY button (hero) ---------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 26px 0 8px;
  scroll-margin-top: 84px;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 10px 28px -6px rgba(255, 122, 198, .55), 0 0 0 0 rgba(255, 209, 102, .55); }
  50%      { box-shadow: 0 18px 40px -6px rgba(255, 122, 198, .75), 0 0 0 12px rgba(255, 209, 102, 0); }
}
@keyframes playShine {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  60%  { transform: translateX(240%)  skewX(-20deg); }
  100% { transform: translateX(240%)  skewX(-20deg); }
}

.btn-play {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #1a0a12;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  background:
    linear-gradient(135deg, #ffd166 0%, #ffa647 35%, #ff7ac6 70%, #b388ff 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  border: 2px solid rgba(255, 255, 255, .35);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  animation: playPulse 2.4s var(--ease) infinite;
  transition: transform .2s var(--ease), background-position .5s var(--ease);
}
.btn-play:hover {
  color: #1a0a12;
  background-position: 100% 100%;
  transform: translateY(-2px) scale(1.02);
}
.btn-play:active { transform: translateY(0) scale(.99); }
.btn-play:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 209, 102, .55), 0 18px 40px -6px rgba(255, 122, 198, .75);
}

.btn-play-icon {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #1a0a12;
  color: #ffd166;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.2);
  flex: 0 0 auto;
}
.btn-play:hover .btn-play-icon { color: #ff7ac6; }

.btn-play-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.btn-play-text strong {
  font-size: 18px;
  letter-spacing: .08em;
}
.btn-play-text small {
  font-size: 11.5px;
  font-weight: 600;
  color: #4a1b2d;
  letter-spacing: .02em;
  margin-top: 3px;
  opacity: .85;
}

.btn-play-shine {
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  pointer-events: none;
  animation: playShine 3.2s var(--ease) infinite;
  z-index: 1;
}
.btn-play > :not(.btn-play-shine) { position: relative; z-index: 2; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background .2s, color .2s, border-color .2s;
}
.btn-ghost:hover {
  background: var(--surface-2);
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
}

.cta-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .btn-play { animation: none; }
  .btn-play-shine { display: none; }
}

@media (max-width: 420px) {
  .btn-play { width: 100%; justify-content: center; }
  .btn-ghost { width: 100%; justify-content: center; }
}

/* Header nav CTA: brighten to match */
.nav-list .nav-cta {
  background: linear-gradient(135deg, #ffd166, #ff7ac6 60%, #b388ff);
  background-size: 200% 200%;
  color: #1a0a12 !important;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 8px 20px -6px rgba(255, 122, 198, .55);
  transition: background-position .4s var(--ease), transform .2s;
}
.nav-list .nav-cta:hover {
  background-position: 100% 100%;
  transform: translateY(-1px);
}

/* ---------- Floating PLAY (always visible) ---------- */
.fab-play {
  position: fixed;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .1em;
  color: #1a0a12;
  background: linear-gradient(135deg, #ffd166, #ff7ac6 60%, #b388ff);
  background-size: 200% 200%;
  border: 2px solid rgba(255,255,255,.35);
  box-shadow: 0 14px 30px -8px rgba(255, 122, 198, .6), 0 0 0 0 rgba(255, 209, 102, .5);
  z-index: 45;
  animation: playPulse 2.4s var(--ease) infinite;
  transition: transform .2s var(--ease), background-position .4s var(--ease);
}
.fab-play:hover {
  color: #1a0a12;
  transform: translateY(-2px) scale(1.03);
  background-position: 100% 100%;
}
.fab-play:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,209,102,.55), 0 14px 30px -8px rgba(255,122,198,.75);
}
.fab-play svg {
  background: #1a0a12;
  color: #ffd166;
  border-radius: 50%;
  padding: 5px;
  width: 26px; height: 26px;
}

@media (prefers-reduced-motion: reduce) {
  .fab-play { animation: none; }
}

/* Push back-to-top up a bit when fab is present on small screens */
@media (max-width: 560px) {
  .fab-play { padding: 10px 14px; font-size: 13px; }
  .fab-play svg { width: 22px; height: 22px; padding: 4px; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 16px; bottom: 16px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2), var(--accent-2));
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 40;
}
.back-to-top.visible { opacity: 1; transform: none; }
.back-to-top:focus-visible { box-shadow: var(--shadow-lg), var(--focus); }

/* ---------- Cookie consent banner ---------- */
#cc-root {
  position: fixed;
  inset: auto 16px 16px auto;
  z-index: 60;
  max-width: 420px;
  width: calc(100vw - 32px);
  animation: ccIn .3s var(--ease);
}
@keyframes ccIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.cc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.cc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
}
.cc-close {
  background: transparent; border: 0;
  color: var(--muted); font-size: 22px; line-height: 1;
  cursor: pointer; padding: 0 4px;
}
.cc-close:hover { color: var(--text); }
.cc-text { margin: 0 0 10px; color: var(--text-dim); }
.cc-text a { color: var(--accent); }
.cc-opts {
  border: 0; padding: 0; margin: 0 0 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.cc-opts label {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
}
.cc-opts label input:disabled + span { color: var(--muted); }
.cc-opts label strong { color: var(--text); }
.cc-actions {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;
}
.cc-btn {
  border: 0; border-radius: 999px; padding: 9px 14px;
  font-weight: 700; font-size: 13px; cursor: pointer;
  font-family: inherit;
  transition: transform .15s var(--ease), background .2s;
}
.cc-btn:hover { transform: translateY(-1px); }
.cc-btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.cc-btn-ghost:hover { background: var(--surface-2); }
.cc-btn-primary {
  background: linear-gradient(135deg, #ffd166, #ff7ac6 60%, #b388ff);
  color: #1a0a12;
  box-shadow: 0 8px 20px -8px rgba(255, 122, 198, .55);
}

@media (max-width: 560px) {
  #cc-root { inset: auto 8px 8px 8px; max-width: none; }
  .cc-actions { justify-content: stretch; }
  .cc-btn { flex: 1 1 auto; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .toc, .back-to-top, .disclaimer { display: none !important; }
  body { background: #fff; color: #000; }
  .content h2::before { display: none; }
  a { color: #000; text-decoration: underline; }
  .container { max-width: 100%; padding: 0; }
}
