/* 2HC design system (FIX_PLAN §4.1 / Appendix B).
   Injected as a BASE layer before the page's own CSS so every site looks
   intentional by default. Brand colors are overridden per project by the
   pipeline (the :root block below is replaced with the brand palette). */
:root{
  /* Brand colors — overridden per project */
  --color-primary:   #00ff66;
  --color-accent:    #00d15e;
  --color-bg:        #1f2528;
  --color-bg-2:      #101619;
  --color-text:      #ffffff;
  --color-muted:     #9fb0ab;
  --color-cta:       #00d15e;
  --color-cta-hover: #00c24f;

  /* Spacing scale (8px base) */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-6: 1.5rem; --s-8: 2rem; --s-12: 3rem; --s-16: 4rem; --s-24: 6rem;

  /* Radii */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;

  /* Elevation */
  --shadow-1: 0 1px 2px rgba(0,0,0,.4);
  --shadow-2: 0 8px 24px rgba(0,0,0,.45);
  --shadow-glow: 0 0 0 1px rgba(0,255,102,.25), 0 8px 30px rgba(0,255,102,.25);

  /* Layout + type */
  --container: 1180px;
  --section-y: clamp(3rem, 7vw, 6rem);
  --fs-h1: clamp(2.2rem, 5vw, 3.4rem);
  --fs-h2: clamp(1.6rem, 3.5vw, 2.3rem);
  --fs-body: 1.0625rem;
  --lh-body: 1.65;
}*,*::before,*::after{ box-sizing: border-box; }body,h1,h2,h3,p,ul,ol,figure,blockquote{ margin: 0; padding: 0; }body{
  background: radial-gradient(1200px 600px at 50% -10%, #243033 0%, var(--color-bg) 40%, var(--color-bg-2) 100%);
  color: var(--color-text);
  font-family: Inter, system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}.x0456-container{ width: min(100% - 2rem, var(--container)); margin-inline: auto; }section{ padding-block: var(--section-y); }section + section{ padding-block-start: 0; }h1{ font-size: var(--fs-h1); line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }h2{ font-size: var(--fs-h2); line-height: 1.15; font-weight: 700; margin-bottom: var(--s-6); }p{ color: var(--color-text); max-width: 68ch; }/* CTA button with glow */
.x0456-btn{
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: var(--r-pill);
  font-weight: 700; text-decoration: none;
  background: linear-gradient(180deg, var(--color-primary), var(--color-cta));
  color: #06210f; box-shadow: var(--shadow-glow);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}.x0456-btn:hover{ transform: translateY(-2px); filter: brightness(1.05);
  box-shadow: 0 0 0 1px rgba(0,255,102,.4), 0 12px 38px rgba(0,255,102,.35); }.x0456-btn:focus-visible{ outline: 3px solid var(--color-primary); outline-offset: 3px; }/* Game card — real image,gradient ONLY as overlay{
  position: relative; aspect-ratio: 3/4; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-2);
}/* Tables (bonus terms,payments,limits) */
table{ width: 100%; max-width: 100%; border-collapse: collapse; border-radius: var(--r-md); overflow: hidden; }caption{ text-align: left; font-weight: 700; margin-bottom: var(--s-3); }th,td{ padding: .85rem 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); overflow-wrap: anywhere; }thead th{ background: rgba(255,255,255,.05); }@media (prefers-reduced-motion: reduce){*,*::before,*::after{ animation: none !important; transition: none !important; }}@media (prefers-reduced-motion: no-preference){html{ scroll-behavior: smooth; }}

/* ── Content panels over image-backed sections ──────────────────────────────
   The CWV step injects a fal.ai background-image onto #bonus/#hero. fal casino
   images often bake the word "BONUS" into the picture, so a data panel sitting
   directly on that section lets the art bleed through behind the terms table and
   obscure values (vision-gate HOLD, Basswin 2026-06-16). Give content panels an
   OPAQUE surface so the table is always readable. */
.bonus-card,.steps,.step{
  background: var(--color-bg-2, #101619);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md, 14px);
  padding: clamp(1.1rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-2, 0 8px 24px rgba(0,0,0,.45));
  position: relative; z-index: 1;
}
.bonus-card table{ background: transparent; }

/* ── FAQ accordion ───────────────────────────────────────────────────────────
   Bare <details> render as broken/empty with dead whitespace (vision). Give
   items a surface, padding and a +/- affordance so even a collapsed FAQ reads
   as an intentional accordion. */
.faq{ display: flex; flex-direction: column; gap: .6rem; max-width: 820px; margin-inline: auto; }
.x0456-faq-item{
  background: color-mix(in srgb, var(--color-bg-2, #101619) 80%, transparent);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-sm, 8px);
  padding: .9rem 1.1rem;
}
.x0456-faq-item>summary{
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--color-text);
}
.x0456-faq-item>summary::-webkit-details-marker{ display: none; }
.x0456-faq-item>summary::after{ content: "+"; font-size: 1.3em; line-height: 1; opacity: .7; }
.x0456-faq-item[open]>summary::after{ content: "\2013"; }
.x0456-faq-item>*:not(summary){ margin-top: .7rem; }

/* ── Image-free build helpers (text logo / text payment pills / text game tiles)
   These give an intentional look when the project is generated with no pictures
   (logo as text, favicon only). Harmless when images ARE used — themes/layout
   CSS override the .game-card gradient. */
.x0456-brand-mark--text{ font-weight: 800; font-size: 1.45rem; letter-spacing: -.02em;
  color: var(--color-text); text-decoration: none; display: inline-flex; align-items: center; }
.x0456-brand-mark--text.brand-mark--footer{ font-size: 1.05rem; }
.x0456-pay,.payment-pill{ display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .7rem; border-radius: var(--r-sm, 8px); border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); font-size: .8rem; font-weight: 600; color: var(--color-text); }
.game-card:not(:has(img)){ display: flex; align-items: center; justify-content: center;
  text-align: center; min-height: 90px; padding: .75rem; border-radius: var(--r-md, 14px);
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--color-primary, #4f46e5) 30%, #0b0b14),
    color-mix(in srgb, var(--color-accent, #a855f7) 24%, #0b0b14));
  border: 1px solid rgba(255,255,255,.10); font-weight: 700; color: var(--color-text); }
.x0456-game-name{ display: flex; align-items: center; justify-content: center; text-align: center;
  padding: .5rem; font-weight: 600; color: var(--color-text); }
/* Games grid — responsive columns. design-system OWNS this so it applies in
   NO-IMAGES mode too: generate_images only injects the grid on the image path,
   so the phased writer's <div class="games-grid"> was otherwise unstyled →
   full-width stacked bars that read as "broken artwork" (vision-gate 2026-06). */
.games-grid,.game-grid{ display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--s-4, 1rem); }

/* ── page-specific CSS ── */
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
  margin: 0;
  padding: 0;
}
:root {
  --color-primary: #ff6813;
  --color-accent: #d43a09;
  --color-bg: #1b204f;
  --color-bg-2: #111645;
  --color-text: #ffffff;
  --color-muted: #b0b8e8;
  --color-secondary: #ff5823;
  --color-cta: #d43a09;
  --color-cta-hover: #c52b00;
  --color-card: #1e2458;
  --color-card-border: rgba(255,104,19,0.25);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-24: 96px;
  --container: 1200px;
  --shadow-1: 0 2px 12px rgba(0,0,0,0.35);
  --shadow-2: 0 6px 28px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 24px rgba(255,104,19,0.45);
}
html {
  scroll-behavior: auto;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--color-bg-2);
  color: var(--color-text);
  min-height: 100vh;
}
.x0456-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
}
.x0456-skip:focus {
  position: fixed;
  left: var(--s-4);
  top: var(--s-4);
  width: auto;
  height: auto;
  z-index: 9999;
  background: var(--color-primary);
  color: #fff;
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-sm);
  font-weight: 700;
  outline: 3px solid #fff;
}
.x0456-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-4);
}
@media (min-width: 768px) {
  .x0456-container {
    padding: 0 var(--s-6);
  }
}
.x0456-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  border: none;
  line-height: 1.2;
}
.x0456-btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}
.x0456-btn-primary {
  background-color: var(--color-cta);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}
.x0456-btn-primary:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(255,104,19,0.6);
}
.x0456-btn-ghost {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}
.x0456-btn-ghost:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.card {
  background-color: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.glass {
  background: rgba(27, 32, 79, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,104,19,0.3);
  border-radius: var(--r-lg);
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
  }
}
.x0456-section-y {
  padding: var(--s-16) 0;
}
@media (min-width: 768px) {
  .x0456-section-y {
    padding: var(--s-24) 0;
  }
}
.x0456-section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--s-4);
}
.x0456-section-sub {
  color: var(--color-muted);
  margin-bottom: var(--s-8);
  max-width: 640px;
}
.x0456-text-orange {
  color: var(--color-primary);
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.x0456-text-center {
  text-align: center;
}
.x0456-text-center .x0456-section-sub {
  margin-left: auto;
  margin-right: auto;
}
.x0456-pay-pill {
  display: inline-block;
  padding: var(--s-2) var(--s-4);
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.01em;
}
site-header {
  display: block;
}
.x0456-site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: rgba(17, 22, 69, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,104,19,0.2);
}
.x0456-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--s-4);
}
.x0456-brand-mark {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.x0456-brand-mark img {
  height: 40px;
  width: auto;
}
#menu-toggle {
  display: none;
}
.x0456-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: var(--s-2);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  flex-shrink: 0;
}
.x0456-menu-btn span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.x0456-site-nav {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background-color: var(--color-bg-2);
  border-bottom: 1px solid rgba(255,104,19,0.2);
  padding: var(--s-4);
  flex-direction: column;
  gap: var(--s-2);
}
#menu-toggle:checked ~ .x0456-site-nav {
  display: flex;
}
.x0456-site-nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.x0456-site-nav a:hover {
  color: var(--color-text);
  background: rgba(255,104,19,0.12);
}
.x0456-site-nav a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.header-cta {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .x0456-menu-btn {
    display: none;
  }
  .x0456-site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    gap: var(--s-2);
    align-items: center;
  }
}
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-2) 60%, #0d1035 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,22,69,0.92) 0%, rgba(27,32,79,0.75) 60%, rgba(13,16,53,0.88) 100%);
  z-index: 1;
}
.x0456-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.x0456-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s-4);
}
#hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--s-3);
  color: var(--color-text);
}
.x0456-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-muted);
  margin-bottom: var(--s-6);
  font-weight: 400;
}
.x0456-hero-badge {
  display: inline-block;
  padding: var(--s-3) var(--s-6);
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s-6);
  box-shadow: var(--shadow-glow);
}
.x0456-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.x0456-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.x0456-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 700;
}
.x0456-trust-item .x0456-trust-icon {
  font-size: 16px;
}
#bonus {
  background-color: var(--color-bg);
}
.x0456-bonus-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}
@media (min-width: 768px) {
  .x0456-bonus-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
  }
}
.x0456-step-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  text-align: center;
}
.x0456-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s-3);
}
.x0456-step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.x0456-step-card p {
  font-size: 14px;
  color: var(--color-muted);
}
.x0456-bonus-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--s-6);
  border-radius: var(--r-md);
}
.x0456-bonus-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--color-card);
  border-radius: var(--r-md);
  overflow: hidden;
}
.x0456-bonus-table-wrap caption {
  caption-side: top;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-muted);
  padding: var(--s-2) 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.x0456-bonus-table-wrap thead th {
  background: rgba(255,104,19,0.15);
  color: var(--color-primary);
  padding: var(--s-3) var(--s-4);
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-card-border);
}
.x0456-bonus-table-wrap tbody td {
  padding: var(--s-3) var(--s-4);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--color-text);
}
.x0456-bonus-table-wrap tbody tr:last-child td {
  border-bottom: none;
}
.x0456-bonus-tc {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: var(--s-6);
}
#faq {
  background-color: var(--color-bg-2);
}
.x0456-faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  max-width: 800px;
  margin: 0 auto;
}
.x0456-faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.x0456-faq-toggle {
  display: none;
}
.x0456-faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-6);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  gap: var(--s-4);
  user-select: none;
}
.x0456-faq-label:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}
.x0456-faq-label::after {
  content: '+';
  font-size: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  display: inline-block;
}
.x0456-faq-toggle:checked ~ .x0456-faq-label::after {
  transform: rotate(45deg);
}
.x0456-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.x0456-faq-toggle:checked ~ .x0456-faq-body {
  max-height: 400px;
}
.x0456-faq-body p {
  padding: 0 var(--s-6) var(--s-4);
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
}
.x0456-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(17,22,69,0.97);
  border-top: 1px solid rgba(255,104,19,0.3);
  padding: var(--s-3) var(--s-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.x0456-sticky-bar-text {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 700;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.x0456-sticky-bar-text strong {
  color: var(--color-primary);
}
.x0456-sticky-bar .x0456-btn {
  padding: 10px 22px;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .x0456-sticky-bar {
    display: none;
  }
}
.x0456-pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: var(--r-pill);
  margin: var(--s-3) 0 var(--s-6);
}
.x0456-text-center .section-divider {
  margin-left: auto;
  margin-right: auto;
}
footer {
  background-color: #0a0d28;
  border-top: 1px solid rgba(255,104,19,0.2);
  padding: var(--s-12) 0 var(--s-6);
}
.x0456-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
}
@media (min-width: 768px) {
  .x0456-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.x0456-footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: var(--s-3);
}
.x0456-footer-brand p {
  font-size: 13px;
  color: var(--color-muted);
  max-width: 340px;
  line-height: 1.65;
}
.x0456-footer-nav-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s-4);
}
.x0456-footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.x0456-footer-nav ul a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.x0456-footer-nav ul a:hover {
  color: var(--color-primary);
}
.x0456-footer-nav ul a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.x0456-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.x0456-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.x0456-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.x0456-rg-bar {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.x0456-rg-bar span {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 700;
}
.x0456-license-text {
  font-size: 11px;
  color: rgba(176,184,232,0.6);
  line-height: 1.6;
}
.x0456-copyright {
  font-size: 12px;
  color: rgba(176,184,232,0.45);
  margin-top: var(--s-4);
}
.x0456-cookie-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #0d1035;
  border-top: 1px solid rgba(255,104,19,0.3);
  padding: var(--s-3) var(--s-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.x0456-cookie-strip p {
  font-size: 12px;
  color: var(--color-muted);
  flex: 1;
  min-width: 220px;
}
#cookie-close {
  display: none;
}
#cookie-close:checked ~ .x0456-cookie-strip {
  display: none;
}
.x0456-cookie-close-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  white-space: nowrap;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm);
  border: 1px solid var(--color-primary);
  background: transparent;
  transition: background 0.15s;
}
.x0456-cookie-close-btn:hover {
  background: rgba(255,104,19,0.12);
}
#bonus, section#bonus, .bonus-section, [id*="bonus"] { background-image: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../images/bonus_bg.jpg') !important; background-size: cover !important; background-position: center !important; }
img[src*="hero"], img[src*="bonus_bg"], img.hero-image, img.bonus-banner { width: 100% !important; height: auto !important; max-height: 60vh !important; aspect-ratio: 16 / 9 !important; object-fit: cover !important; display: block !important; }
