:root {
  color-scheme: dark;
  --bg: #07131a;
  --panel: #0d2230;
  --panel-2: #102b38;
  --text: #f3fbff;
  --muted: #b6c9d3;
  --ice: #72e1ff;
  --ice-2: #d8f8ff;
  --gold: #ffd329;
  --gold-2: #f4a300;
  --red: #ff5c55;
  --green: #58d47d;
  --line: rgba(216, 248, 255, .18);
  --shadow: 0 18px 48px rgba(0, 0, 0, .34);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    repeating-linear-gradient(112deg, rgba(255,255,255,.025) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #061018 0%, #0a1c25 44%, #07131a 100%);
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(114,225,255,.05), transparent 26%, rgba(255,211,41,.04) 70%, transparent),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255,255,255,.025) 43px 44px);
  opacity: .7;
  z-index: -1;
}
.frost-ambience {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.snow {
  position: absolute;
  top: -24px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(216,248,255,.82);
  box-shadow: 0 0 12px rgba(114,225,255,.72);
  animation: snowDrift 15s linear infinite;
  opacity: .42;
}
.snow-1 { left: 7%; animation-delay: -1s; animation-duration: 16s; }
.snow-2 { left: 17%; animation-delay: -8s; animation-duration: 22s; }
.snow-3 { left: 26%; animation-delay: -4s; animation-duration: 18s; }
.snow-4 { left: 35%; animation-delay: -12s; animation-duration: 24s; }
.snow-5 { left: 44%; animation-delay: -6s; animation-duration: 17s; }
.snow-6 { left: 53%; animation-delay: -14s; animation-duration: 23s; }
.snow-7 { left: 62%; animation-delay: -3s; animation-duration: 19s; }
.snow-8 { left: 71%; animation-delay: -10s; animation-duration: 21s; }
.snow-9 { left: 80%; animation-delay: -5s; animation-duration: 25s; }
.snow-10 { left: 88%; animation-delay: -13s; animation-duration: 20s; }
.snow-11 { left: 94%; animation-delay: -7s; animation-duration: 18s; }
.snow-12 { left: 2%; animation-delay: -16s; animation-duration: 26s; }
a { color: var(--ice-2); text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 32px)); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 10px;
  transform: translateY(-140%);
  background: var(--gold);
  color: #1b1400;
  padding: 10px 14px;
  z-index: 50;
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); outline: 3px solid var(--ice); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 10px clamp(14px, 3vw, 34px);
  background: rgba(4, 16, 24, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 150px;
}
.brand-mark {
  width: 48px;
  height: 34px;
  background: url("/images/logos/logo.webp") center / contain no-repeat;
  flex: 0 0 auto;
}
.brand-text {
  color: var(--ice-2);
  font-weight: 1000;
  letter-spacing: 0;
  font-size: 1.05rem;
  text-shadow: 0 2px 0 #006aa4, 0 8px 18px rgba(0,0,0,.35);
}
.nav { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 2vw, 22px); }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 750;
  font-size: .94rem;
  padding: 8px 2px;
}
.nav a:hover, .nav a:focus-visible { color: var(--ice-2); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  color: #10202a;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.1;
  white-space: nowrap;
}
.btn-primary { background: linear-gradient(180deg, var(--gold), var(--gold-2)); box-shadow: 0 8px 0 rgba(125, 70, 0, .45); }
.btn-primary:hover { color: #10202a; filter: brightness(1.04); transform: translateY(-1px); }
.btn-secondary { background: rgba(216, 248, 255, .12); color: var(--ice-2); border: 1px solid var(--line); }
.btn-secondary:hover { color: var(--gold); border-color: rgba(255,211,41,.55); }
.btn-small { min-height: 40px; padding: 9px 14px; }
.btn-full { width: 100%; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(216,248,255,.08);
  padding: 10px;
}
.mobile-menu-btn span { display: block; height: 2px; background: var(--ice-2); margin: 5px 0; }
.hero {
  position: relative;
  min-height: min(720px, 78svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-sub { min-height: min(560px, 64svh); }
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 12, 19, .92) 0%, rgba(3, 12, 19, .72) 44%, rgba(3, 12, 19, .28) 100%),
              linear-gradient(180deg, rgba(7,19,26,.10), rgba(7,19,26,.72));
}
.hero-inner { position: relative; z-index: 1; padding: 62px 0 54px; max-width: 760px; margin-left: max(16px, calc((100vw - 1120px) / 2)); }
.hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.25rem, 6vw, 5.6rem);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 0 #006aa4, 0 14px 30px rgba(0,0,0,.5);
}
.hero-summary { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ice-2); max-width: 700px; margin: 0 0 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.age-chip, .eyebrow {
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}
.freshness-badge {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 7px 10px;
  border: 1px solid rgba(114,225,255,.28);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(0,0,0,.28);
  font-size: .88rem;
}
.topic-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 211, 41, .26);
  background: linear-gradient(90deg, rgba(114,225,255,.12), rgba(255,211,41,.12), rgba(255,92,85,.10));
  padding: 10px 0;
}
.topic-ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: topicScroll 30s linear infinite;
}
.topic-ticker-track a {
  white-space: nowrap;
  border: 1px solid rgba(216,248,255,.2);
  background: rgba(5, 18, 27, .72);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--ice-2);
  text-decoration: none;
  font-weight: 900;
}
.topic-ticker-track a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.topic-ticker-track a:hover { color: var(--gold); border-color: rgba(255,211,41,.48); }
.link-river {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7,24,34,.92), rgba(13,34,48,.74)),
    repeating-linear-gradient(135deg, rgba(216,248,255,.055) 0 1px, transparent 1px 18px);
}
.link-river::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(114,225,255,.08), transparent);
  animation: iceSweep 9s ease-in-out infinite;
  pointer-events: none;
}
.link-river-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}
.link-river h2 { font-size: clamp(1.3rem, 2vw, 1.75rem); margin-bottom: 8px; }
.trail-readout { margin: 0; color: var(--ice-2); }
.trail-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.trail-map a {
  position: relative;
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 13px;
  border: 1px solid rgba(216,248,255,.2);
  border-radius: var(--radius);
  background: rgba(4,16,24,.62);
  text-decoration: none;
  overflow: hidden;
}
.trail-map a::after {
  content: "";
  position: absolute;
  inset: auto 12px 10px 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--gold));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .28s ease;
}
.trail-map a:hover::after, .trail-map a:focus-visible::after { transform: scaleX(1); }
.trail-map span { color: var(--gold); font-weight: 1000; font-size: .78rem; }
.trail-map strong { color: var(--ice-2); line-height: 1.18; }
.trail-map small { color: var(--muted); line-height: 1.35; }
.content-band { padding: clamp(42px, 7vw, 78px) 0; border-bottom: 1px solid var(--line); }
.frost-band { background: linear-gradient(180deg, rgba(114,225,255,.08), rgba(16,43,56,.42)); }
.intro-band { padding-top: 34px; }
.two-col, .split-media, .demo-shell, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .8fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: start;
}
.split-media { grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); align-items: center; }
.reverse { grid-template-columns: minmax(280px, .95fr) minmax(0, 1.05fr); }
.answer-box, .disclosure {
  border: 1px solid rgba(114,225,255,.32);
  background: rgba(7, 24, 34, .72);
  border-radius: var(--radius);
  padding: 16px;
  margin: 0 0 20px;
  box-shadow: var(--shadow);
}
.disclosure { border-color: rgba(255,211,41,.34); color: var(--ice-2); font-size: .95rem; }
.toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  background: rgba(13,34,48,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.toc strong { color: var(--gold); }
.toc a { color: var(--ice-2); text-decoration: none; padding: 8px 10px; border-radius: 6px; background: rgba(216,248,255,.06); }
.toc a:hover { background: rgba(255,211,41,.14); color: var(--gold); }
h2, h3 { line-height: 1.16; letter-spacing: 0; }
h2 { font-size: clamp(1.7rem, 3vw, 2.65rem); margin: 6px 0 18px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin: 18px 0 8px; color: var(--ice-2); }
p { color: var(--muted); }
.feature-grid, .casino-grid, .testimonials-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.feature-grid article, .casino-card, .testimonial {
  background: rgba(13,34,48,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.feature-grid article h3, .casino-card h3 { margin-top: 0; }
.compare-promo-band {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(30px, 5vw, 52px);
  background: linear-gradient(180deg, rgba(255,211,41,.06), rgba(7,24,34,.2));
}
.compare-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(210px, .68fr);
  gap: clamp(18px, 4vw, 32px);
  align-items: center;
  overflow: hidden;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255,211,41,.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(13,34,48,.9), rgba(5,18,27,.82));
  box-shadow: var(--shadow);
}
.compare-promo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ice), var(--gold), var(--red));
}
.compare-promo-copy, .compare-promo-figure { min-width: 0; }
.compare-promo h2 {
  max-width: 760px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  margin-bottom: 12px;
}
.compare-promo p { margin-bottom: 0; }
.compare-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.compare-points li {
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(216,248,255,.18);
}
.compare-points strong {
  display: block;
  color: var(--gold);
  line-height: 1.2;
}
.compare-points span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.42;
}
.compare-promo-figure {
  margin: 0;
  display: grid;
  gap: 8px;
}
.compare-promo-image {
  display: block;
  width: 100%;
  max-height: 220px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 6px;
  background: #07131a;
}
.compare-promo-figure figcaption {
  padding: 0;
  font-size: .86rem;
}
.offer { color: var(--gold); font-weight: 900; font-size: 1.05rem; }
.promo-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin: 12px 0; }
code { padding: 8px 10px; border-radius: 6px; background: rgba(0,0,0,.32); color: var(--ice-2); border: 1px dashed rgba(114,225,255,.4); }
.copy-code { border: 1px solid rgba(255,211,41,.45); background: rgba(255,211,41,.12); color: var(--gold); border-radius: 6px; min-height: 40px; padding: 0 12px; cursor: pointer; font-weight: 800; }
.fact-table { width: 100%; table-layout: fixed; border-collapse: collapse; margin: 22px 0; overflow: hidden; border-radius: var(--radius); }
.fact-table th, .fact-table td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; overflow-wrap: anywhere; }
.fact-table th { color: var(--ice-2); background: rgba(114,225,255,.08); }
.media-frame, .gallery-grid figure, .symbol-strip figure, .author-frame {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(5,18,27,.72);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-frame img, .gallery-grid img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.comparison-frame img { aspect-ratio: 16 / 10; object-fit: contain; background: #07131a; }
.support-image { aspect-ratio: auto; object-fit: contain; background: #081923; }
figcaption { padding: 10px 12px; color: var(--muted); font-size: .9rem; }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.symbol-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 26px 0; }
.symbol-strip img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 18px; background: radial-gradient(circle at 50% 36%, rgba(114,225,255,.18), rgba(4,16,24,.1)); }
.calculator-container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 420px); gap: 28px; align-items: center; }
.calculator, .contact-form {
  display: grid;
  gap: 10px;
  background: rgba(13,34,48,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
label { color: var(--ice-2); font-weight: 850; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid rgba(216,248,255,.24);
  background: rgba(2, 10, 16, .8);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}
textarea { resize: vertical; }
output { color: var(--gold); font-weight: 900; }
.testimonial p { color: var(--ice-2); }
.testimonial cite { color: var(--gold); font-style: normal; font-weight: 800; }
.verdict-band { background: linear-gradient(180deg, rgba(255,211,41,.08), rgba(7,19,26,.2)); }
.author-strip {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13,34,48,.72);
}
.author-title { color: var(--gold); font-weight: 900; }
.author-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.author-social a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(114,225,255,.26);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(216,248,255,.08);
  color: var(--ice-2);
  text-decoration: none;
  font-weight: 850;
}
.author-social a:hover { color: var(--gold); border-color: rgba(255,211,41,.5); }
.author-strip .author-photo { width: 90px; height: 90px; border-radius: 8px; object-fit: cover; }
.author-photo { border-radius: 8px; object-fit: cover; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13,34,48,.8);
  margin: 10px 0;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  min-height: 54px;
  padding: 14px 48px 14px 16px;
  text-align: left;
  color: var(--ice-2);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  position: relative;
}
.faq-question::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.4rem; }
.faq-item.active .faq-question::after { content: "-"; }
.faq-answer { display: none; padding: 0 16px 16px; }
.faq-item.active .faq-answer { display: block; }
.check-list { color: var(--muted); }
.check-list li { margin: 8px 0; }
.quick-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chart-panel, .diagram-panel, .flow-panel {
  margin: 24px 0;
  padding: clamp(16px, 3vw, 24px);
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(216,248,255,.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13,34,48,.82), rgba(5,18,27,.78));
  box-shadow: var(--shadow);
}
.chart-panel {
  display: grid;
  grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr);
  gap: clamp(16px, 3vw, 26px);
  align-items: center;
}
.chart-copy, .chart-bars, .chart-row, .chart-row-head, .chart-track { min-width: 0; }
.chart-copy h3, .diagram-copy h3, .flow-panel h3 { margin-top: 5px; }
.chart-bars { display: grid; gap: 13px; }
.chart-row { display: grid; gap: 5px; }
.chart-row-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.chart-row-head strong { color: var(--ice-2); overflow-wrap: anywhere; }
.chart-row-head span { color: var(--gold); font-weight: 900; max-width: 100%; text-align: right; overflow-wrap: anywhere; }
.chart-row small { color: var(--muted); }
.chart-track {
  height: 13px;
  border: 1px solid rgba(216,248,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.24);
  overflow: hidden;
}
.chart-fill {
  display: block;
  height: 100%;
  width: var(--meter);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ice), var(--gold), var(--red));
  transform-origin: left;
  animation: meterGrow 1.1s ease both;
}
.meter-0 { --meter: 0%; }
.meter-5 { --meter: 5%; }
.meter-10 { --meter: 10%; }
.meter-15 { --meter: 15%; }
.meter-20 { --meter: 20%; }
.meter-25 { --meter: 25%; }
.meter-30 { --meter: 30%; }
.meter-35 { --meter: 35%; }
.meter-40 { --meter: 40%; }
.meter-45 { --meter: 45%; }
.meter-50 { --meter: 50%; }
.meter-55 { --meter: 55%; }
.meter-60 { --meter: 60%; }
.meter-65 { --meter: 65%; }
.meter-70 { --meter: 70%; }
.meter-75 { --meter: 75%; }
.meter-80 { --meter: 80%; }
.meter-85 { --meter: 85%; }
.meter-90 { --meter: 90%; }
.meter-95 { --meter: 95%; }
.meter-100 { --meter: 100%; }
.sector-diagram {
  display: grid;
  grid-template-columns: 1.6fr 1fr .72fr;
  gap: 12px;
  align-items: stretch;
}
.sector-card {
  position: relative;
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(216,248,255,.18);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 32%, rgba(114,225,255,.2), rgba(4,16,24,.74));
  overflow: hidden;
}
.sector-card i {
  position: absolute;
  inset: 14px 14px auto auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 7px solid rgba(114,225,255,.42);
  border-top-color: var(--gold);
  animation: iceSpin 10s linear infinite;
}
.sector-card strong { color: var(--ice-2); font-size: 1.05rem; }
.sector-card span { color: var(--gold); font-weight: 900; }
.sector-mid { background: radial-gradient(circle at 50% 32%, rgba(88,212,125,.2), rgba(4,16,24,.74)); }
.sector-small { background: radial-gradient(circle at 50% 32%, rgba(255,92,85,.22), rgba(4,16,24,.74)); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.flow-step {
  position: relative;
  min-height: 128px;
  padding: 14px;
  border: 1px solid rgba(216,248,255,.18);
  border-radius: var(--radius);
  background: rgba(4,16,24,.62);
}
.flow-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--gold);
  color: #10202a;
  font-weight: 1000;
}
.flow-step strong { display: block; color: var(--ice-2); }
.flow-step small { color: var(--muted); }
.motion-card { animation: riseIn .7s ease both; }
.site-footer {
  background: #041018;
  border-top: 1px solid var(--line);
  padding: 42px 0 110px;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.site-footer h2 { font-size: 1rem; margin: 0 0 10px; color: var(--gold); }
.site-footer a { display: block; color: var(--muted); text-decoration: none; margin: 7px 0; }
.site-footer a:hover { color: var(--ice-2); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.trust-badge { width: auto; max-height: 44px; object-fit: contain; background: rgba(255,255,255,.04); border-radius: 6px; padding: 4px; }
.footer-bottom { margin-top: 22px; color: var(--muted); font-size: .92rem; }
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255,211,41,.45);
  border-radius: var(--radius);
  background: rgba(4,16,24,.94);
  box-shadow: var(--shadow);
}
.sticky-cta.is-visible { display: flex; }
.sticky-cta span { color: var(--ice-2); font-weight: 900; }
.cookie-consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  width: min(420px, calc(100% - 32px));
  background: rgba(7,19,26,.96);
  border: 1px solid rgba(114,225,255,.32);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}
.cookie-consent.is-hidden { display: none; }
.cookie-consent p { margin: 0 0 12px; }
.cookie-consent div { display: flex; gap: 10px; justify-content: flex-end; }
@keyframes topicScroll { to { transform: translateX(-50%); } }
@keyframes snowDrift {
  0% { transform: translate3d(0, -20px, 0); opacity: 0; }
  12% { opacity: .45; }
  100% { transform: translate3d(36px, 110vh, 0); opacity: 0; }
}
@keyframes iceSweep {
  0%, 100% { transform: translateX(-55%); opacity: .18; }
  50% { transform: translateX(55%); opacity: .46; }
}
@keyframes meterGrow {
  from { transform: scaleX(.12); }
  to { transform: scaleX(1); }
}
@keyframes iceSpin { to { transform: rotate(360deg); } }
@keyframes riseIn {
  from { opacity: .72; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 920px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .nav {
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(4,16,24,.98);
    box-shadow: var(--shadow);
  }
  .nav.nav--open { display: grid; }
  .nav a { min-height: 44px; display: flex; align-items: center; padding: 9px 10px; }
  .mobile-menu-btn { display: inline-block; justify-self: end; }
  .header-play { justify-self: end; min-height: 42px; padding-inline: 12px; }
  .brand { min-width: 104px; }
  .brand-text { display: none; }
  .hero { min-height: 70svh; }
  .hero-sub { min-height: 58svh; }
  .hero-inner { padding: 44px 0; margin-left: auto; }
  .two-col, .split-media, .reverse, .demo-shell, .contact-grid, .calculator-container { grid-template-columns: 1fr; }
  .toc { position: static; }
  .link-river-inner, .chart-panel, .compare-promo { grid-template-columns: 1fr; }
  .trail-map { grid-template-columns: 1fr 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .feature-grid, .casino-grid, .testimonials-grid, .gallery-grid, .symbol-strip { grid-template-columns: 1fr 1fr; }
  .compare-points { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container, .narrow { width: min(100% - 24px, 1120px); }
  .site-header { min-height: 64px; padding: 9px 12px; gap: 8px; }
  .nav { top: 64px; }
  .hero h1 { font-size: clamp(2rem, 12vw, 3.4rem); }
  .hero-summary { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .feature-grid, .casino-grid, .testimonials-grid, .gallery-grid, .symbol-strip, .footer-grid { grid-template-columns: 1fr; }
  .trail-map, .sector-diagram, .flow-steps, .compare-points { grid-template-columns: 1fr; }
  .trail-map a { min-height: 104px; }
  .chart-row-head { align-items: flex-start; flex-direction: column; gap: 2px; }
  .author-strip { grid-template-columns: 1fr; }
  .author-strip .author-photo { width: 120px; height: 120px; }
  .trust-row { gap: 10px; }
  .trust-badge { max-width: 132px; }
  .cookie-consent { bottom: 84px; }
  .topic-ticker-track { animation-duration: 40s; }
  .fact-table th, .fact-table td { padding: 10px 8px; font-size: .9rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
