@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url("/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: url("/fonts/inter-800.woff2") format("woff2");
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #faf8f5;
  --white: #fff;
  --surf: #f5f2ee;
  --surf2: #eee9e2;
  --border: #c8bfb0;
  --border2: #d8d0c4;
  --accent: #c0271c;
  --accent-d: #a01e15;
  --accent-bg: rgba(192, 39, 28, 0.06);
  --gold: #c9820a;
  --gold-d: #a86b00;
  --gold-bg: rgba(201, 130, 10, 0.08);
  --gold-glow: rgba(201, 130, 10, 0.35);
  --gold-text: #8a5700;
  --gold-bright: #f5c46a;
  --green: #c0271c;
  --blue: #0e7490;
  --purple: #7c1d12;
  --nav-bg: #0e0806;
  --dark: #180c08;
  --dark2: #221008;
  --nav-txt: rgba(255, 255, 255, 0.5);
  --txt: #1c1208;
  --txt2: #3a2e20;
  --txt3: #6b5e48;
  --f: "Inter", system-ui, -apple-system, sans-serif;
  --r: 12px;
  --r2: 16px;
  --pill: 999px;
  --mw: 1140px;
  --gutter: max(14px, env(safe-area-inset-left, 14px));
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 1px 3px rgba(24, 12, 8, 0.07), 0 1px 2px rgba(24, 12, 8, 0.05);
  --shadow-md:
    0 4px 16px rgba(24, 12, 8, 0.09), 0 1px 4px rgba(24, 12, 8, 0.05);
  --shadow-lg:
    0 8px 32px rgba(24, 12, 8, 0.11), 0 2px 8px rgba(24, 12, 8, 0.06);
  --shadow-glow:
    0 0 30px rgba(192, 39, 28, 0.14), 0 0 60px rgba(192, 39, 28, 0.07);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --tap: 44px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
}
a {
  color: var(--gold-text);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  touch-action: manipulation;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  content-visibility: auto;
}
::selection {
  background: rgba(192, 39, 28, 0.15);
  color: var(--txt);
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
.reveal,
.js .reveal,
.js .reveal.visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.page-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.skip {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 999;
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 0 0 var(--r) 0;
}
.skip:focus {
  top: 0;
}
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.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;
}
html:not(.js) .nav-burger,
html:not(.js) .m-ov,
html:not(.js) .m-dr {
  display: none;
}
html:not(.js) .nav-links {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  margin-left: auto;
}
html:not(.js) .nav-links::-webkit-scrollbar {
  display: none;
}
html:not(.js) .nav-cta {
  display: none;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 8, 6, 0.93);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  transition:
    background 0.3s,
    box-shadow 0.3s;
  contain: layout style;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}
.nav.scrolled {
  background: rgba(14, 8, 6, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  max-width: var(--mw);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: var(--tap);
}
.nav-logo-img {
  height: 30px;
  width: auto;
}
.nav-links {
  display: none;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--nav-txt);
  padding: 7px 12px;
  border-radius: var(--r);
  transition: all 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
}
.nav-links a.active {
  color: #fff;
  background: rgba(192, 39, 28, 0.15);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-cta {
  margin-left: auto;
  padding: 10px 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #c0271c, #e03420);
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  box-shadow:
    0 2px 12px rgba(192, 39, 28, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.nav-burger {
  display: flex;
  width: var(--tap);
  height: var(--tap);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: border-color 0.2s;
  touch-action: manipulation;
}
.nav-burger span {
  width: 16px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  transition:
    transform 0.3s,
    opacity 0.2s;
}
.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  width: 0;
  transition: width 0.15s linear;
  will-change: width;
  contain: strict;
}
.m-ov {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  will-change: opacity;
  contain: strict;
}
.m-ov.open {
  opacity: 1;
  pointer-events: auto;
}
.m-dr {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 82vw);
  z-index: 201;
  background: var(--nav-bg);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
  will-change: transform;
  overscroll-behavior: contain;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
}
.m-dr.open {
  transform: translateX(0);
}
.m-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.m-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.m-logo {
  height: 26px;
  width: auto;
}
.m-brand span {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
}
.m-x {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  background: none;
  border: none;
  cursor: pointer;
  width: var(--tap);
  height: var(--tap);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  transition: all 0.2s;
  touch-action: manipulation;
}
.m-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 8px 0;
}
.m-body a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  min-height: 50px;
  transition: all 0.2s;
  border-radius: 0 var(--r) var(--r) 0;
  margin-right: 12px;
  touch-action: manipulation;
}
.m-body a.m-active {
  color: #fff;
  background: rgba(192, 39, 28, 0.1);
  border-left: 3px solid var(--accent);
  font-weight: 600;
}
.m-cta {
  padding: 12px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.m-cta .cta-bl {
  margin: 0;
  font-size: 0.8125rem;
}
.m-foot {
  padding: 16px 20px;
  padding-bottom: calc(16px + var(--safe-b));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}
.m-foot a {
  color: #f5c46a;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}
.hero-zone {
  position: relative;
  overflow: hidden;
}
.hero-zone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 340px;
  background: linear-gradient(180deg, #0e0806 0%, #180c08 45%, var(--bg) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-zone .layout {
  position: relative;
  z-index: 1;
}
.hero-zone .sec:first-child {
  padding-top: 6px;
}
.particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 340px;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  contain: strict;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  opacity: 0;
  animation: pFloat linear infinite;
  will-change: transform, opacity;
  contain: strict;
}
.particle:nth-child(1) {
  left: 10%;
  background: #c9820a;
  animation-duration: 9s;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 25%;
  background: #e03420;
  animation-duration: 12s;
  animation-delay: 1.5s;
}
.particle:nth-child(3) {
  left: 40%;
  background: #f59e0b;
  animation-duration: 10s;
  animation-delay: 3s;
}
.particle:nth-child(4) {
  left: 55%;
  background: #f59e0b;
  animation-duration: 11s;
  animation-delay: 0.5s;
}
.particle:nth-child(5) {
  left: 70%;
  background: #c9820a;
  animation-duration: 13s;
  animation-delay: 2s;
}
.particle:nth-child(6) {
  left: 85%;
  background: #e03420;
  animation-duration: 10s;
  animation-delay: 4s;
}
.particle:nth-child(7) {
  left: 15%;
  background: #f59e0b;
  width: 2px;
  height: 2px;
  animation-duration: 14s;
  animation-delay: 6s;
}
.particle:nth-child(8) {
  left: 60%;
  background: #f59e0b;
  width: 2px;
  height: 2px;
  animation-duration: 11s;
  animation-delay: 2.5s;
}
@keyframes pFloat {
  0% {
    transform: translateY(340px);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(-10px);
    opacity: 0;
  }
}
.sec.sec--dark {
  background: linear-gradient(165deg, #180a06 0%, #221008 50%, #180a06 100%);
  padding: 28px 18px 24px;
  border-radius: var(--r2);
  margin-top: 12px;
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.sec.sec--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 52, 32, 0.2),
    rgba(201, 130, 10, 0.15),
    transparent
  );
}
.sec--dark,
.sec--dark h2,
.sec--dark h3 {
  color: #fff;
}
.sec--dark h2::before {
  background: linear-gradient(180deg, #f59e0b, var(--gold));
}
.sec--dark .bonus {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.sec--dark .bonus-name {
  color: #fff;
}
.sec--dark .bonus-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #c8b8a0;
}
.sec--dark .bonus-row {
  border-color: rgba(255, 255, 255, 0.16);
}
.sec--dark .bonus-body,
.sec--dark .bonus-body span {
  color: #eadbc9;
}
.sec--dark .bonus-body strong {
  color: #fff;
}
.sec--dark .br-v {
  color: #fff;
}
.sec--dark .br-l {
  color: #cdb7a4;
  font-size: 0.75rem;
}
.sec--dark + .sec::before {
  display: none;
}
.layout {
  max-width: var(--mw);
  margin: 0 auto;
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
  min-width: 0;
}
.game-embed {
  border-radius: var(--r2);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  border: 1px solid rgba(192, 39, 28, 0.2);
  order: 0;
  box-shadow:
    0 8px 40px rgba(14, 8, 6, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  contain: layout paint;
  background: #0e0806;
  min-width: 0;
  max-width: 100%;
  min-height: 210px;
}
.ge-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.game-embed.is-loaded .ge-frame {
  opacity: 1;
}
.game-embed.is-loaded .ge-overlay {
  opacity: 0;
  pointer-events: none;
}
.ge-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 6s ease;
}
.ge-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 16px 18px;
  background: linear-gradient(
    to top,
    rgba(14, 8, 6, 0.92) 0%,
    rgba(14, 8, 6, 0.4) 40%,
    rgba(14, 8, 6, 0.08) 70%,
    transparent 100%
  );
  transition: opacity 0.4s ease;
}
.ge-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.ge-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  font-family: var(--f);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--r);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  min-height: var(--tap);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  touch-action: manipulation;
}
.ge-btn--demo {
  background: linear-gradient(135deg, #c0271c, #e03420);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(192, 39, 28, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.ge-btn--real {
  background: rgba(201, 130, 10, 0.12);
  color: var(--gold-bright);
  border: 1px solid rgba(201, 130, 10, 0.3);
  backdrop-filter: blur(8px);
}
.ge-btn:active {
  transform: scale(0.96);
  transition-duration: 0.1s;
}
.ge-note {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0;
}
.demo-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(192, 39, 28, 0.2);
  border-radius: var(--r2);
  background: #0e0806;
  background-image:
    linear-gradient(135deg, rgba(126, 18, 90, 0.42), rgba(224, 52, 32, 0.38)),
    url("/img/joker-stoker-demo-preview-800x400.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  position: relative;
  display: grid;
  place-items: center;
}
.demo-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.demo-load {
  min-height: var(--tap);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r);
  background: linear-gradient(135deg, #c0271c, #e03420);
  color: #fff;
  font: 800 0.8125rem/1 var(--f);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 22px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(14, 8, 6, 0.28);
}
.demo-embed.is-loaded {
  background-image: none;
}
.demo-embed.is-loaded .demo-load {
  display: none;
}
.side {
  order: 2;
  min-width: 0;
  max-width: 100%;
}
.side-card {
  background: linear-gradient(165deg, #180a06, #221008);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  contain: layout paint;
}
.side-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 52, 32, 0.15),
    transparent
  );
  z-index: 1;
}
.side-hero {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
}
.side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 120px;
  opacity: 0.88;
}
.side-intro {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.side-title {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 4px;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff, #e8d8c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.side-desc {
  font-size: 0.7188rem;
  color: #c8a888;
  line-height: 1.55;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-body {
  padding: 14px 16px;
}
.side-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 10px;
  margin-bottom: 14px;
}
.side-specs--single {
  grid-template-columns: 1fr;
}
.side-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7188rem;
  padding: 5px 0;
  border-radius: 4px;
}
.side-row-label {
  color: #c8a888;
  font-weight: 500;
}
.side-row-val {
  font-weight: 700;
  color: #fff;
  text-align: right;
}
.v-a {
  color: #ff6a4d;
}
.v-gr {
  color: #ef6444;
}
.v-go {
  color: #f59e0b;
}
.side-row--full {
  grid-column: 1/-1;
}
.vol-bar {
  display: flex;
  gap: 3px;
  align-items: center;
}
.vol-pip {
  width: 16px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}
.vol-pip.on {
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  box-shadow: 0 0 6px rgba(201, 130, 10, 0.25);
}
.side-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}
.side-rating-stars {
  color: #f59e0b;
  font-size: 0.875rem;
}
.side-rating-score {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
}
.side-rating-count {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.6875rem;
}
.side-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.side-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-family: var(--f);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #c0271c, #e03420);
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  min-height: var(--tap);
  box-shadow:
    0 2px 12px rgba(192, 39, 28, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}
.side-cta:active {
  transform: scale(0.97);
}
.side-cta--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.side-trust {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  padding: 4px 0 0;
  letter-spacing: 0;
}
.content {
  order: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.sec {
  padding: 28px 0 22px;
  min-width: 0;
  max-width: 100%;
}
.sec + .sec {
  padding-top: 24px;
  margin-top: 6px;
  position: relative;
}
.sec + .sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border),
    rgba(201, 130, 10, 0.12),
    var(--border),
    transparent
  );
}
.sec h1 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 12px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--txt);
  text-wrap: balance;
}
.sec h1::before {
  content: "";
  width: 4px;
  height: 24px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold), var(--accent));
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(192, 39, 28, 0.2);
}
.sec h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 14px;
  line-height: 1.12;
  display: flex;
  align-items: center;
  gap: 9px;
  text-wrap: balance;
}
.sec h2::before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 130, 10, 0.5));
  flex-shrink: 0;
}
.sec h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 22px 0 8px;
  letter-spacing: 0;
  color: var(--txt);
  text-wrap: balance;
}
.sec p {
  font-size: 0.9375rem;
  color: var(--txt2);
  margin-bottom: 12px;
  line-height: 1.75;
  max-width: 72ch;
  text-wrap: pretty;
  overflow-wrap: break-word;
}
.sec p:last-child {
  margin-bottom: 0;
}
.sec p strong {
  color: var(--txt);
  font-weight: 600;
}
.sec p a {
  color: var(--gold-text);
  border-bottom: 1px solid currentColor;
}
.sec.sec--dark p {
  color: #c8b0a0;
  max-width: 72ch;
}
.sec.sec--dark p strong {
  color: #fff;
}
.tw {
  position: relative;
  margin: 14px 0;
  border-radius: var(--r2);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  min-width: 0;
}
.tw-s {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
  max-width: 100%;
  min-width: 0;
}
.tw-s:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}
.tw-s::-webkit-scrollbar {
  height: 3px;
}
.tw-s::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
.tw::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, transparent, var(--white) 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 0.6875rem;
  color: var(--txt3);
}
.tw.has-scroll::after {
  opacity: 1;
}
.dt {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
  min-width: 460px;
}
.dt th {
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(165deg, var(--dark), var(--dark2));
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}
.dt th:first-child {
  border-radius: var(--r2) 0 0 0;
}
.dt th:last-child {
  border-radius: 0 var(--r2) 0 0;
}
.dt td {
  padding: 10px 14px;
  color: var(--txt2);
  border-bottom: 1px solid var(--border2);
  white-space: nowrap;
  transition: background 0.15s;
}
.dt tbody tr:nth-child(even) {
  background: var(--surf2);
}
.dt td:first-child {
  font-weight: 500;
  color: var(--txt);
}
.hi {
  color: var(--gold-text);
  font-weight: 700;
}
.ok {
  color: var(--green);
  font-weight: 600;
}

/* GEO TABLE */
.geo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7813rem;
  min-width: 500px;
}
.geo-table th {
  text-align: left;
  padding: 11px 14px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(165deg, #1a0c08, #221008);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}
.geo-table th:first-child {
  border-radius: var(--r2) 0 0 0;
}
.geo-table th:last-child {
  border-radius: 0 var(--r2) 0 0;
}
.geo-table td {
  padding: 11px 14px;
  color: var(--txt2);
  border-bottom: 1px solid var(--border2);
  transition: background 0.15s;
  vertical-align: middle;
}
.geo-table tbody tr:nth-child(even) {
  background: var(--surf2);
}
.geo-table tbody tr:hover td {
  background: rgba(192, 39, 28, 0.04);
}
.geo-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
}
.geo-rank.r1 {
  background: linear-gradient(135deg, #ffd700, #d4a000);
  color: #180a00;
  box-shadow: 0 0 10px rgba(212, 160, 0, 0.4);
}
.geo-rank.r2 {
  background: linear-gradient(135deg, #c0c0c0, #989898);
  color: #180a00;
}
.geo-rank.r3 {
  background: linear-gradient(135deg, #cd7f32, #a05020);
  color: #fff;
}
.geo-rank.rn {
  background: var(--surf2);
  color: var(--txt3);
  border: 1px solid var(--border2);
}
.flag-gap {
  margin-right: 6px;
}
.geo-region {
  color: var(--txt3);
  font-size: 0.6875rem;
}
.geo-casino-count {
  font-weight: 700;
  color: var(--gold);
}
.geo-pop-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}
.geo-pop-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--txt);
  min-width: 28px;
}
.geo-payment {
  font-size: 0.7188rem;
  color: var(--txt2);
}
.geo-note-cell {
  font-size: 0.6875rem;
  color: var(--txt3);
  max-width: 200px;
  white-space: normal;
}
.geo-bar {
  display: inline-block;
  height: 6px;
  border-radius: 3px;
  vertical-align: middle;
}
.geo-bar-wrap {
  width: 90px;
  height: 6px;
  background: var(--border2);
  border-radius: 3px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}
.geo-bar--in {
  width: 96%;
  background: linear-gradient(90deg, #c9820a, #f59e0b);
}
.geo-bar--bd {
  width: 91%;
  background: linear-gradient(90deg, #c0271c, #e03420);
}
.geo-bar--pk {
  width: 84%;
  background: linear-gradient(90deg, #c9820a, #e03420);
}
.geo-bar--br {
  width: 73%;
  background: linear-gradient(90deg, #0e7490, #22d3ee);
}
.geo-bar--ng {
  width: 68%;
  background: linear-gradient(90deg, #0e7490, #22d3ee);
}
.geo-bar--de {
  width: 62%;
  background: linear-gradient(90deg, #7c3d12, #c0271c);
}
.geo-bar--at {
  width: 60%;
  background: linear-gradient(90deg, #7c3d12, #c0271c);
}
.geo-bar--nz {
  width: 57%;
  background: linear-gradient(90deg, #0e7490, #22d3ee);
}
.geo-bar--lk {
  width: 55%;
  background: linear-gradient(90deg, #c9820a, #f59e0b);
}
.geo-bar--id {
  width: 52%;
  background: linear-gradient(90deg, #0e7490, #22d3ee);
}
.geo-bar--ie {
  width: 49%;
  background: linear-gradient(90deg, #7c3d12, #c0271c);
}
.geo-bar--ke {
  width: 46%;
  background: linear-gradient(90deg, #0e7490, #22d3ee);
}
.pill--micro {
  font-size: 0.6875rem;
  padding: 3px 9px;
  min-height: 0;
  margin: 0;
}

.cd {
  padding: 16px;
  border-radius: var(--r2);
  background: var(--surf);
  border: 1px solid var(--border2);
  margin-bottom: 8px;
  transition: all 0.25s var(--ease);
  position: relative;
}
.cd--a {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}
.cd--go {
  border-left: 3px solid var(--gold);
  background: var(--gold-bg);
  padding-left: 18px;
}
.cd--gr {
  border-left: 3px solid var(--green);
  padding-left: 18px;
}
.cd--gold-left {
  border-left-color: var(--gold);
}
.cd--accent-left {
  border-left-color: var(--accent);
}
.cd-t {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
}
.cd p {
  font-size: 0.7813rem;
  color: var(--txt2);
  line-height: 1.7;
  margin: 0;
}
.pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 12px 0 18px;
  overflow: visible;
  padding-bottom: 4px;
  max-width: 100%;
  min-width: 0;
}
.pills::-webkit-scrollbar {
  display: none;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: normal;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--pill);
  background: var(--surf);
  border: 1px solid var(--border2);
  color: var(--txt2);
  letter-spacing: 0;
  flex: 0 1 auto;
  max-width: 100%;
  box-shadow: var(--shadow-sm);
  min-height: 32px;
  transition: all 0.2s var(--ease);
}
.pill b {
  color: var(--txt);
  font-weight: 700;
}
.pill--gr {
  background: rgba(224, 52, 32, 0.04);
  border-color: rgba(224, 52, 32, 0.15);
  color: var(--green);
}
.pill--gr b {
  color: var(--green);
}
.pill--go {
  background: rgba(201, 130, 10, 0.05);
  border-color: rgba(201, 130, 10, 0.18);
  color: var(--gold-text);
}
.pill--go b {
  color: var(--gold-text);
}
.pill--a {
  background: rgba(14, 116, 144, 0.04);
  border-color: rgba(14, 116, 144, 0.12);
  color: var(--blue);
}
.pill--a b {
  color: var(--blue);
}
.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}
.bonus {
  padding: 0;
  border-radius: var(--r2);
  background: var(--white);
  border: 1px solid var(--border2);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  position: relative;
  contain: layout paint;
}
.bonus-img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  display: block;
  content-visibility: auto;
}
.bonus-inner {
  padding: 14px 16px;
}
.bonus--red {
  border-color: rgba(192, 39, 28, 0.12);
}
.bonus--red .bonus-bar {
  background: linear-gradient(90deg, #c0271c, #e03420);
}
.bonus--green {
  border-color: rgba(201, 130, 10, 0.12);
}
.bonus--green .bonus-bar {
  background: linear-gradient(90deg, #c9820a, #f59e0b);
}
.bonus--blue {
  border-color: rgba(14, 116, 144, 0.12);
}
.bonus--blue .bonus-bar {
  background: linear-gradient(90deg, #0e7490, #22d3ee);
}
.bonus--gold {
  border-color: rgba(201, 130, 10, 0.15);
}
.bonus--gold .bonus-bar {
  background: linear-gradient(90deg, var(--gold), #f59e0b);
}
.bonus-bar {
  height: 3px;
  width: 100%;
  opacity: 0.7;
}
.bonus .cta-bl {
  margin-top: 14px;
}
.bonus-bar--1xbet {
  background: linear-gradient(90deg, #1a4a7a, #1a4a7abb);
}
.bonus-bar--parimatch {
  background: linear-gradient(90deg, #c9820a, #c9820abb);
}
.bonus-bar--4rabet {
  background: linear-gradient(90deg, #c0271c, #c0271cbb);
}
.bonus-bar--batery {
  background: linear-gradient(90deg, #7c3d12, #7c3d12bb);
}
.bonus-bar--melbet {
  background: linear-gradient(90deg, #0e5a82, #0e5a82bb);
}
.bonus-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.bonus-ico {
  font-size: 1.25rem;
  line-height: 1;
}
.bonus-name {
  font-size: 0.9375rem;
  font-weight: 700;
}
.bonus-tag {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: var(--pill);
  background: var(--surf2);
  color: var(--txt3);
  border: 1px solid var(--border2);
}
.bonus-tag--gold {
  color: var(--gold-bright);
}
.bonus-body {
  font-size: 0.7813rem;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.bonus-body strong {
  color: var(--txt);
}
.bonus-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 14px 0 4px;
  margin-top: 14px;
  border-top: 1px solid var(--border2);
}
.br-v {
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.br-l {
  font-size: 0.5rem;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  text-align: center;
  margin-top: 2px;
}
.steps {
  counter-reset: s;
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.steps li {
  counter-increment: s;
  position: relative;
  padding: 13px 14px 13px 48px;
  font-size: 0.9375rem;
  color: var(--txt2);
  line-height: 1.7;
  border-radius: var(--r);
  background: var(--surf);
  border: 1px solid var(--border2);
  min-height: var(--tap);
  display: flex;
  align-items: center;
  transition: all 0.2s var(--ease);
  text-wrap: pretty;
  overflow-wrap: break-word;
}
.steps li::before {
  content: counter(s);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192, 39, 28, 0.15);
}
.steps li strong {
  color: var(--txt);
}
.warn {
  padding: 14px 16px;
  border-radius: var(--r2);
  background: rgba(201, 130, 10, 0.04);
  border: 1px solid rgba(201, 130, 10, 0.1);
  border-left: 3px solid var(--gold);
  margin: 16px 0;
  box-shadow: var(--shadow-sm);
}
.warn strong,
.warn h2 {
  display: block;
  font-size: 1rem;
  color: var(--txt);
  margin: 0 0 6px;
  line-height: 1.25;
}
.warn,
.warn p {
  font-size: 0.875rem;
  color: var(--txt2);
  line-height: 1.7;
  margin: 0;
}
.mt-16 {
  margin-top: 16px;
}
.mt-18 {
  margin-top: 18px;
}
.risk-high {
  color: var(--accent);
  font-weight: 700;
}
.widget {
  padding: 28px 20px;
  border-radius: var(--r2);
  background: linear-gradient(150deg, #180a06 0%, #281408 50%, #180a06 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--gold),
    var(--blue),
    var(--purple)
  );
}
.widget-t {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
  line-height: 1.25;
}
.widget-d {
  font-size: 0.7813rem;
  color: #c8a888;
  margin-bottom: 14px;
  line-height: 1.6;
}
.cta-bl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  font-family: var(--f);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #c0271c, #e03420);
  border: none;
  border-radius: var(--r);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s var(--ease);
  margin: 16px 0;
  text-decoration: none;
  cursor: pointer;
  min-height: var(--tap);
  box-shadow:
    0 2px 16px rgba(192, 39, 28, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}
.cta-bl:active {
  transform: scale(0.97);
}
.cta-bl--gold {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
}
.cta-bl--ghost {
  background: var(--surf2);
  color: var(--txt);
}
.cta-bl--compact {
  max-width: 160px;
}
.cta-bl--center {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.not-found {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.not-found-code {
  font-size: 6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.not-found h1 {
  margin: 12px 0;
}
.not-found-text {
  color: var(--txt3);
  margin-bottom: 28px;
}
.not-found-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.faq {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq details {
  border-radius: var(--r2);
  background: var(--surf);
  border: 1px solid var(--border2);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq details[open] {
  border-color: var(--border);
  border-left: 3px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.faq summary {
  padding: 0 16px;
  min-height: 52px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: color 0.2s;
  color: var(--txt);
  touch-action: manipulation;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::marker {
  content: "";
}
.faq summary::after {
  content: "+";
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt3);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surf2);
  transition: all 0.3s var(--ease);
}
.faq details[open] summary::after {
  content: "−";
  color: var(--gold);
  background: var(--gold-bg);
}
.faq-b {
  padding: 0 16px 14px;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: var(--txt2);
}
.faq-b strong {
  color: var(--txt);
}
.g2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 12px 0;
}
.geo-cards {
  gap: 10px;
  margin: 12px 0 18px;
}
.ft {
  background: var(--nav-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 30px var(--gutter) 90px;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
}
.ft::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 52, 32, 0.1),
    transparent
  );
}
.ft-inner {
  max-width: var(--mw);
  margin: 0 auto;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 14px;
  margin-bottom: 24px;
}
.ft-brand {
  grid-column: span 2;
}
.ft-logo-img {
  width: auto;
  height: 28px;
  margin-bottom: 8px;
}
.ft-brand p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 50ch;
}
.ft-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ft-col b {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 3px;
}
.ft-col a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 5px 0;
  min-height: var(--tap);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.ft-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  margin: 18px 0;
}
.ft-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.ft-badges img {
  height: 34px;
  width: auto;
  opacity: 0.68;
  filter: brightness(2);
}
.ft-badges a {
  display: flex;
  line-height: 0;
  min-height: var(--tap);
  align-items: center;
}
.ft-bottom {
  text-align: center;
}
.ft-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.ft-disc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
  max-width: 80ch;
  margin: 0 auto;
}
.ft-disc a {
  color: #f5c46a;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}
.mob-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 10px var(--gutter);
  padding-bottom: max(10px, var(--safe-b));
  display: flex;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  contain: layout style;
}
.mob-cta.show {
  transform: translateY(0);
}
.mob-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-family: var(--f);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--r);
  min-height: var(--tap);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease);
}
.mc-p {
  background: linear-gradient(135deg, #c0271c, #e03420);
  color: #fff;
  box-shadow: 0 2px 10px rgba(192, 39, 28, 0.25);
}
.mc-s {
  background: none;
  color: var(--gold-text);
  border: 2px solid var(--gold-text);
}
#btt {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: calc(74px + var(--safe-b));
  z-index: 85;
  width: var(--tap);
  height: var(--tap);
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--txt3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-md);
}
#btt.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#btt svg {
  width: 16px;
  height: 16px;
}
.ck {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--nav-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s var(--ease);
  pointer-events: none;
  padding-bottom: var(--safe-b);
}
.ck.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.ck-in {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.ck-in p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}
.ck-in p strong {
  color: rgba(255, 255, 255, 0.82);
}
.ck-btns {
  display: flex;
  gap: 8px;
}
.ck-btn {
  padding: 9px 18px;
  border-radius: var(--r);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  min-height: var(--tap);
}
.ck-y {
  background: var(--gold);
  color: var(--nav-bg);
  border-color: var(--gold);
}
.ck-n {
  background: none;
  color: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.28);
}
.sec-img {
  width: 100%;
  border-radius: var(--r2);
  margin: 14px 0;
  border: 1px solid var(--border2);
  box-shadow: var(--shadow-sm);
}
.sec.sec--dark .sec-img {
  border-color: rgba(255, 255, 255, 0.08);
}
/* Hero-zone child pages: light text over dark gradient */
.hero-zone main > .sec:first-child h1,
.hero-zone main > .sec:first-child > p {
  color: #ede4d8;
}
.hero-zone main > #intro h1 {
  color: var(--txt);
}
.hero-zone main > #intro > p {
  color: var(--txt2);
}
.hero-zone main > #intro > p strong {
  color: var(--txt);
}
.hero-zone main > #strategy-intro h1 {
  color: var(--txt);
}
.hero-zone main > #strategy-intro > p {
  color: var(--txt2);
}
.hero-zone main > #strategy-intro > p strong {
  color: var(--txt);
}
.sec--dark a,
.sec--dark .hi {
  color: var(--gold-bright);
}
.hero-zone main > .sec:first-child h1 {
  color: #fff;
}
.hero-zone main > .sec:first-child > p strong {
  color: #fff;
}
.hero-zone main > #intro h1,
.hero-zone main > #strategy-intro h1 {
  color: var(--txt);
}
.hero-zone main > #intro > p strong,
.hero-zone main > #strategy-intro > p strong {
  color: var(--txt);
}
.hero-zone main > .sec:first-child > p a {
  color: #f5c46a;
  border-color: rgba(245, 196, 106, 0.3);
}
.hero-zone main > .sec:first-child .sec-img {
  border-color: rgba(255, 255, 255, 0.1);
}
.hero-zone main > .sec:first-child .dt th {
  color: rgba(255, 255, 255, 0.8);
}
.hero-zone main > .sec:first-child .dt td {
  color: #d4c4b0;
}
.hero-zone main > .sec:first-child .dt td:first-child {
  color: #ede4d8;
}
.hero-zone main > .sec:first-child .tw {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(24, 12, 8, 0.5);
}
.hero-zone main > .sec:first-child .tw::after {
  background: linear-gradient(to right, transparent, rgba(24, 12, 8, 0.5) 40%);
  color: #c8a888;
}
.hero-zone main > .sec:first-child .dt tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.hero-zone main > .sec:first-child .dt td {
  border-color: rgba(255, 255, 255, 0.06);
}

/* Page cross-links grid */
.page-links {
  margin: 32px 0 16px;
  padding: 28px 0 0;
  border-top: 1px solid var(--border2);
}
.page-links-t {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--txt3);
  margin-bottom: 14px;
}
.page-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.pl-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r);
  background: var(--surf);
  border: 1px solid var(--border2);
  text-decoration: none;
  transition: all 0.2s var(--ease);
  min-height: var(--tap);
}
.pl-card:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
  box-shadow: var(--shadow-sm);
}
.pl-ico {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--border2);
}
.pl-txt {
  flex: 1;
  min-width: 0;
}
.pl-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--txt);
  display: block;
  margin-bottom: 2px;
}
.pl-desc {
  font-size: 0.6875rem;
  color: var(--txt3);
  display: block;
  line-height: 1.4;
}
@media (min-width: 480px) {
  .page-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .page-links-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.child-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px var(--gutter) 40px;
}
.child-page h1 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
.child-page > p {
  font-size: 0.875rem;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.child-sec {
  margin-bottom: 36px;
}
.child-sec h2 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.child-sec h3 {
  font-size: 0.9375rem;
  margin: 18px 0 8px;
}
.child-sec p {
  font-size: 1rem;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: 10px;
}
.child-page > p a,
.child-sec p a,
.cd p a {
  color: var(--gold-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}
@media (pointer: coarse) {
  .child-sec a[target="_blank"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 8px;
  }
}
@media (min-width: 480px) {
  .game-embed {
    aspect-ratio: 16/8;
  }
  .ge-btn {
    padding: 13px 26px;
  }
  .side-hero {
    grid-template-columns: 130px 1fr;
  }
  .pills {
    flex-wrap: wrap;
  }
  .ck-in {
    flex-direction: row;
    text-align: left;
  }
  .ck-in p {
    flex: 1;
  }
}
@media (min-width: 640px) {
  :root {
    --gutter: 20px;
  }
  .nav {
    height: 60px;
  }
  .game-embed {
    aspect-ratio: 16/9;
  }
  .side-hero {
    grid-template-columns: 160px 1fr;
  }
  .sec.sec--dark {
    padding: 32px 24px 28px;
  }
  .g2 {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .bonus-inner {
    padding: 18px 20px;
  }
  .cd {
    padding: 18px;
  }
  .steps li {
    font-size: 0.8438rem;
    padding: 14px 16px 14px 52px;
  }
  .dt {
    font-size: 0.8125rem;
  }
  .dt th,
  .dt td {
    padding: 11px 16px;
  }
  .ft-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ft-brand {
    grid-column: span 3;
  }
  .ft {
    padding-bottom: 90px;
  }
}
@media (min-width: 768px) {
  :root {
    --gutter: 24px;
  }
  .sec {
    padding: 34px 0 26px;
  }
  .sec.sec--dark {
    padding: 36px 30px 30px;
  }
  .ft-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }
  .ft-brand {
    grid-column: span 1;
  }
  .ft {
    padding-bottom: 48px;
  }
}
@media (min-width: 960px) {
  .geo-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 960px) {
  :root {
    --gutter: 24px;
  }
  .mob-cta {
    display: none;
  }
  #btt {
    bottom: 20px;
    right: 20px;
  }
  .ft {
    padding-bottom: 48px;
  }
  .layout {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 12px 32px;
    align-items: start;
  }
  .game-embed {
    order: 0;
    grid-column: 1;
    grid-row: 1;
  }
  .side {
    order: 0;
    grid-column: 2;
    grid-row: 1/3;
    position: sticky;
    top: 76px;
  }
  .content {
    order: 0;
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
  }
  .side-hero {
    display: block;
  }
  .side-img {
    width: 100%;
    aspect-ratio: 16/10;
    min-height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .side-intro {
    padding: 20px 22px 6px;
  }
  .side-title {
    font-size: 1.375rem;
  }
  .side-body {
    padding: 18px 22px 22px;
  }
  .side-specs {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 18px;
  }
  .side-row {
    font-size: 0.7813rem;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
  }
  .side-row:last-child {
    border-bottom: none;
  }
  .side-ctas {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: flex;
  }
  .nav-burger {
    display: none;
  }
  .nav {
    height: 64px;
  }
  .sec h2 {
    font-size: 1.5rem;
  }
  .dt {
    min-width: 0;
  }
  .tw::after {
    display: none;
  }
}
@media (min-width: 1140px) {
  .layout {
    grid-template-columns: 1fr 340px;
    gap: 14px 42px;
  }
  .sec.sec--dark {
    padding: 42px 38px 36px;
  }
  .bonus-inner {
    padding: 24px 28px;
  }
}
.sec h1 {
  font-size: 1.5rem;
  text-wrap: balance;
}
.sec h2 {
  font-size: 1.25rem;
  text-wrap: balance;
}
.sec h3 {
  font-size: 1rem;
  text-wrap: balance;
}
.sec p,
.child-page > p,
.child-sec p,
.steps li,
.faq-b,
.cd p,
.bonus-body {
  text-wrap: pretty;
  overflow-wrap: break-word;
}
.sec p {
  font-size: 0.9375rem;
}
.steps li {
  font-size: 0.9375rem;
}
@media (min-width: 640px) {
  .sec h1 {
    font-size: 1.875rem;
  }
  .sec h2 {
    font-size: 1.5rem;
  }
  .sec p {
    font-size: 1rem;
  }
  .steps li {
    font-size: 0.9375rem;
  }
}
@media (min-width: 960px) {
  .sec h1 {
    font-size: 2rem;
  }
  .sec h2 {
    font-size: 1.5rem;
  }
  .sec p {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .particle {
    display: none;
    animation: none;
  }
  .m-ov,
  .m-dr,
  .mob-cta,
  #btt,
  .ck {
    transition: none !important;
  }
}
