/* ==========================================================================
   FreeSlotsMachines — neon video-slot cabinet
   --------------------------------------------------------------------------
   The visitor should feel seated at a modern illuminated slot machine on a
   dark casino floor: purple/magenta neon, gold payout accents, chrome bevels.
   Layout order:
     01. Tokens
     02. Reset + base typography
     03. Utilities + a11y
     04. Floor atmosphere (body lights, bokeh)
     05. Buttons
     06. Header + navigation
     07. Machine floor hero + cockpit
     08. Neon cabinet (signature)
     09. USP ribbon
     10. Sections, game grid, rails
     11. Casinos (rails, list, profile)
     12. Providers, themes, guides, FAQ, how-it-works
     13. Slot page (player, preplay, demo, specs, modal)
     14. SEO article fold, 1UP, 404, contact
     15. Footer
     16. Age gate
     17. Keyframes
     18. Responsive
     19. Reduced motion + print
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Tokens
   -------------------------------------------------------------------------- */
:root {
  --void: #05040c;
  --floor: #0a0718;
  --panel: #12101f;
  --panel-2: #1a152c;
  --neon: #b026ff;
  --neon-2: #ff2bd6;
  --neon-3: #7b5cff;
  --gold: #ffd24a;
  --gold-2: #ffe89a;
  --cyan: #4de8ff;
  --chrome: #c8d0e0;
  --text: #f4f0ff;
  --muted: #9a93b5;
  --line: rgba(176, 38, 255, 0.35);
  --glow-neon: 0 0 18px rgba(176, 38, 255, .55), 0 0 42px rgba(255, 43, 214, .25);
  --glow-gold: 0 0 16px rgba(255, 210, 74, .45);
  --font: "Exo 2", "Segoe UI", sans-serif;
  --display: "Orbitron", "Exo 2", sans-serif;
  --wrap: min(1240px, calc(100% - 1.5rem));
  --radius: 14px;
  --radius-lg: 22px;

  /* derived surfaces */
  --line-soft: rgba(200, 208, 224, 0.14);
  --line-gold: rgba(255, 210, 74, 0.4);
  --glass: rgba(18, 16, 31, 0.72);
  --glass-2: rgba(26, 21, 44, 0.82);
  --chrome-hi: #e6ebf5;
  --chrome-lo: #6f7891;
  --shadow-1: 0 10px 28px rgba(3, 2, 10, 0.55);
  --shadow-2: 0 24px 60px rgba(3, 2, 10, 0.7);
  --inset-chrome: inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(0, 0, 0, 0.55);
  --grad-neon: linear-gradient(135deg, var(--neon-2) 0%, var(--neon) 48%, var(--neon-3) 100%);
  --grad-gold: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 52%, #d9a017 100%);
  --grad-chrome: linear-gradient(180deg, var(--chrome-hi) 0%, var(--chrome) 42%, var(--chrome-lo) 100%);
  --ease: cubic-bezier(.22, .68, .36, 1);
  --header-h: 68px;
}

/* --------------------------------------------------------------------------
   02. Reset + base typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  font-size: clamp(0.97rem, 0.94rem + 0.15vw, 1.04rem);
  line-height: 1.62;
  color: var(--text);
  background: var(--void);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 .55rem;
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: .01em;
  color: var(--text);
  /* Long localised words must never push a grid column open. */
  overflow-wrap: anywhere;
}

h1 { font-size: clamp(1.75rem, 1.25rem + 2.2vw, 2.8rem); }
h2 { font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem); }
h3 { font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.22rem); }
h4 { font-size: 1rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--text);
  text-decoration: none;
  transition: color .18s var(--ease), opacity .18s var(--ease);
}
a:hover { color: var(--gold-2); }

img,
svg,
video,
iframe { max-width: 100%; }
img { height: auto; border: 0; }

ul, ol { margin: 0 0 1rem; padding-left: 1.1rem; }

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; }

hr {
  height: 1px;
  margin: 2rem 0;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

table { border-collapse: collapse; width: 100%; }

strong, b { font-weight: 700; }

::selection {
  background: rgba(176, 38, 255, .45);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   03. Utilities + a11y
   -------------------------------------------------------------------------- */
.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-main {
  display: block;
  min-height: 60vh;
  padding-bottom: 3.5rem;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 400;
  padding: .7rem 1.1rem;
  border-radius: 0 0 var(--radius) 0;
  background: var(--panel-2);
  border: 1px solid var(--line);
  box-shadow: var(--glow-neon);
}
.skip:focus { left: 0; }

.is-hidden { display: none !important; }
.hide-sm { display: block; }

.muted { color: var(--muted); }
.legal { font-size: .76rem; color: var(--muted); }

.lede {
  max-width: 62ch;
  color: #d7d0ec;
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.12rem);
  line-height: 1.66;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .55rem;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--neon-2);
  text-shadow: 0 0 14px rgba(255, 43, 214, .5);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-2);
  box-shadow: 0 0 10px var(--neon-2), 0 0 22px rgba(255, 43, 214, .7);
  animation: neon-pulse 2.4s ease-in-out infinite;
}

.empty {
  margin: 0;
  padding: 2rem 1.2rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(18, 16, 31, .5);
}

.pill {
  display: inline-block;
  padding: .16rem .55rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #1a0f28;
  background: var(--grad-gold);
  box-shadow: var(--glow-gold);
}

/* --------------------------------------------------------------------------
   04. Floor atmosphere
   -------------------------------------------------------------------------- */
body.theme-machines,
body.theme-arcade {
  background:
    radial-gradient(1200px 620px at 12% -8%, rgba(176, 38, 255, .28), transparent 62%),
    radial-gradient(1000px 560px at 92% 4%, rgba(255, 43, 214, .2), transparent 60%),
    radial-gradient(900px 700px at 50% 108%, rgba(123, 92, 255, .22), transparent 64%),
    linear-gradient(180deg, var(--void) 0%, var(--floor) 46%, #07050f 100%);
  background-attachment: fixed;
}

/* Bokeh: soft out-of-focus casino floor lights drifting behind the content. */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -10% -10% -20%;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}
body::before {
  background:
    radial-gradient(circle 90px at 8% 22%, rgba(176, 38, 255, .32), transparent 70%),
    radial-gradient(circle 54px at 22% 68%, rgba(255, 43, 214, .26), transparent 70%),
    radial-gradient(circle 120px at 78% 18%, rgba(123, 92, 255, .22), transparent 72%),
    radial-gradient(circle 42px at 62% 82%, rgba(255, 210, 74, .18), transparent 70%),
    radial-gradient(circle 70px at 92% 62%, rgba(77, 232, 255, .14), transparent 72%);
  filter: blur(2px);
  animation: bokeh-drift 34s ease-in-out infinite alternate;
}
body::after {
  background:
    radial-gradient(circle 36px at 34% 12%, rgba(255, 210, 74, .2), transparent 68%),
    radial-gradient(circle 64px at 48% 46%, rgba(176, 38, 255, .18), transparent 70%),
    radial-gradient(circle 28px at 70% 34%, rgba(255, 43, 214, .24), transparent 66%),
    radial-gradient(circle 90px at 14% 90%, rgba(123, 92, 255, .16), transparent 72%);
  filter: blur(3px);
  animation: bokeh-drift 46s ease-in-out infinite alternate-reverse;
}

body.lamp-off::before,
body.lamp-off::after { opacity: .16; }
body.lamp-off .neon-cabinet { filter: saturate(.7) brightness(.9); }

.site-header,
.site-main,
.site-footer { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   05. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .72rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  background: rgba(26, 21, 44, .8);
  color: var(--text);
  transition: transform .16s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn.is-disabled,
.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--grad-neon);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
  box-shadow: var(--inset-chrome), var(--glow-neon);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: var(--inset-chrome), 0 0 26px rgba(176, 38, 255, .7), 0 0 60px rgba(255, 43, 214, .35);
}

.btn-ghost {
  background: rgba(10, 7, 24, .55);
  border-color: var(--line);
  color: var(--text);
  box-shadow: inset 0 0 18px rgba(176, 38, 255, .12);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(176, 38, 255, .8);
  box-shadow: inset 0 0 22px rgba(176, 38, 255, .2), 0 0 20px rgba(176, 38, 255, .35);
}

.btn-offer {
  background: var(--grad-gold);
  border-color: rgba(255, 255, 255, .35);
  color: #221503;
  box-shadow: var(--inset-chrome), var(--glow-gold);
}
.btn-offer:hover {
  color: #1a1002;
  box-shadow: var(--inset-chrome), 0 0 26px rgba(255, 210, 74, .65);
}

.btn-demo {
  min-width: min(320px, 100%);
  min-height: 54px;
  font-size: .95rem;
  letter-spacing: .14em;
  background: var(--grad-neon);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
  box-shadow: var(--inset-chrome), var(--glow-neon);
}
.btn-demo:hover { color: #fff; box-shadow: var(--inset-chrome), 0 0 30px rgba(176, 38, 255, .75); }

.btn-action {
  min-height: 42px;
  padding: .55rem 1rem;
  font-size: .74rem;
  background: rgba(18, 16, 31, .9);
  border-color: var(--line-soft);
  color: var(--chrome);
}
.btn-action:hover { border-color: var(--line); color: #fff; }

.btn-sm {
  min-height: 40px;
  padding: .48rem .95rem;
  font-size: .72rem;
  letter-spacing: .09em;
}

.btn-collect {
  width: 100%;
  min-height: 44px;
  padding: .6rem 1rem;
  border: 1px solid rgba(255, 210, 74, .55);
  border-radius: 999px;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #221503;
  background: var(--grad-gold);
  box-shadow: var(--inset-chrome), var(--glow-gold);
  transition: transform .16s var(--ease), box-shadow .2s var(--ease);
}
.btn-collect:hover { transform: translateY(-2px); box-shadow: var(--inset-chrome), 0 0 26px rgba(255, 210, 74, .7); }
.btn-collect:active { transform: translateY(1px); }

/* --------------------------------------------------------------------------
   06. Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: linear-gradient(180deg, rgba(9, 7, 20, .92), rgba(9, 7, 20, .76));
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 43, 214, .18), 0 10px 30px rgba(3, 2, 10, .55);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon) 18%, var(--neon-2) 50%, var(--neon-3) 82%, transparent);
  opacity: .85;
  filter: blur(.3px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: .5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex: 0 0 auto;
  min-height: 44px;
}
.logo:hover { color: var(--text); }

.logo-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--gold-2);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, .22), transparent 58%),
    radial-gradient(circle at 50% 120%, rgba(176, 38, 255, .55), transparent 70%),
    #140f24;
  border: 2px solid rgba(176, 38, 255, .85);
  box-shadow:
    inset 0 0 12px rgba(176, 38, 255, .5),
    0 0 14px rgba(176, 38, 255, .55),
    0 0 30px rgba(255, 43, 214, .25);
}

.logo-word {
  display: grid;
  line-height: 1.05;
}
.logo-brand {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 16px rgba(176, 38, 255, .55);
}
.logo-word small,
.logo-tag {
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
  flex-wrap: wrap;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .4rem .62rem;
  border-radius: 10px;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #cfc7e6;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: .62rem;
  right: .62rem;
  bottom: .3rem;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
  box-shadow: var(--glow-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: #fff; }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-1up {
  color: var(--gold-2) !important;
}
.nav-1up[data-count]:not([data-count="0"])::before {
  content: attr(data-count);
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-right: .35rem;
  padding: 0 .25rem;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  color: #1a0f28;
  background: var(--grad-gold);
  box-shadow: var(--glow-gold);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 0 0 auto;
}

.header-search { display: flex; }
.header-search input {
  width: clamp(120px, 15vw, 190px);
  min-height: 44px;
  padding: .5rem .9rem;
  border-radius: 999px;
  color: var(--text);
  background: rgba(6, 5, 15, .8);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 14px rgba(176, 38, 255, .14);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), width .2s var(--ease);
}
.header-search input::placeholder { color: var(--muted); }
.header-search input:focus {
  outline: none;
  border-color: var(--neon-2);
  box-shadow: inset 0 0 16px rgba(176, 38, 255, .22), 0 0 18px rgba(255, 43, 214, .4);
}

.lang-switch { position: relative; }
.lang-switch summary {
  display: grid;
  place-items: center;
  min-width: 46px;
  min-height: 44px;
  padding: 0 .7rem;
  border-radius: 999px;
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--chrome);
  background: rgba(26, 21, 44, .8);
  border: 1px solid var(--line-soft);
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover { color: #fff; border-color: var(--line); }
.lang-switch[open] summary {
  color: #fff;
  border-color: var(--neon);
  box-shadow: 0 0 16px rgba(176, 38, 255, .45);
}
.lang-switch ul {
  position: absolute;
  right: 0;
  top: calc(100% + .5rem);
  z-index: 140;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: .1rem;
  width: max-content;
  max-width: min(420px, 88vw);
  max-height: 62vh;
  overflow-y: auto;
  margin: 0;
  padding: .45rem;
  list-style: none;
  border-radius: var(--radius);
  background: rgba(12, 10, 24, .97);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2), 0 0 26px rgba(176, 38, 255, .28);
}
.lang-switch li { margin: 0; }
.lang-switch ul a {
  display: block;
  padding: .5rem .7rem;
  border-radius: 8px;
  font-size: .84rem;
  color: #d9d2f0;
}
.lang-switch ul a:hover { background: rgba(176, 38, 255, .18); color: #fff; }
.lang-switch ul a[aria-current="page"] {
  color: var(--gold-2);
  background: rgba(255, 210, 74, .1);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  min-width: 44px;
  margin-left: auto;
  padding: .5rem .85rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(26, 21, 44, .85);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 14px rgba(176, 38, 255, .18);
}
.nav-toggle:hover { border-color: var(--neon-2); }

/* --------------------------------------------------------------------------
   07. Machine floor hero + cockpit
   -------------------------------------------------------------------------- */
.machine-floor,
.floor-hero {
  position: relative;
  padding: clamp(1.5rem, 1rem + 3vw, 3.2rem) 0 clamp(1.75rem, 1rem + 3vw, 3rem);
  overflow: hidden;
}
.machine-floor::before,
.floor-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(176, 38, 255, .22), transparent 70%),
    radial-gradient(520px 300px at 8% 88%, rgba(255, 43, 214, .14), transparent 72%);
}
.machine-floor::after,
.floor-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1100px, 96%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.machine-cockpit,
.floor-hero-inner {
  position: relative;
  display: grid;
  gap: clamp(1rem, .6rem + 1.4vw, 1.8rem);
  align-items: start;
}
.machine-cockpit { grid-template-columns: 240px minmax(0, 1fr) 240px; }
.floor-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 560px); align-items: center; }

.floor-copy { max-width: min(44rem, 100%); }
.floor-copy h1 {
  margin: 0 0 .7rem;
  text-shadow: 0 0 30px rgba(176, 38, 255, .45);
}
.floor-copy .lede { margin-bottom: 1.35rem; }

.brand-hero {
  margin: 0 0 .5rem;
  font-family: var(--display);
  /* 6.4vw keeps the single long brand word inside the column on phones. */
  font-size: clamp(1.15rem, min(6.4vw, 1.1rem + 2.4vw), 2.6rem);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.brand-hero span {
  background: linear-gradient(180deg, #fff 8%, var(--gold-2) 42%, var(--gold) 62%, #d99b12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 210, 74, .45));
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.15rem;
}

.niche-lanes {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.lane-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: .38rem .85rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #cdc5e8;
  background: rgba(18, 16, 31, .7);
  border: 1px solid var(--line-soft);
  transition: color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .16s var(--ease);
}
.lane-chip:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: var(--line);
  box-shadow: 0 0 18px rgba(176, 38, 255, .35);
}

.floor-stage {
  display: grid;
  justify-items: center;
  min-width: 0;
}

/* Cockpit side panels ---------------------------------------------------- */
.cockpit-side {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-width: 0;
}

.jackpot-panel,
.coins-panel,
.featured-panel,
.cockpit-panel {
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--glass-2), rgba(10, 7, 24, .8));
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), var(--shadow-1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.jackpot-panel {
  text-align: center;
  border-color: var(--line-gold);
  box-shadow: var(--inset-chrome), inset 0 0 26px rgba(255, 210, 74, .1), var(--glow-gold);
}
.jackpot-panel h2,
.jackpot-panel h3,
.jackpot-label {
  margin: 0 0 .4rem;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.jackpot-value {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.05;
  color: var(--gold-2);
  text-shadow: 0 0 12px rgba(255, 210, 74, .7), 0 0 34px rgba(255, 210, 74, .35);
  animation: neon-pulse 3.2s ease-in-out infinite;
}
.jackpot-panel small,
.jackpot-note {
  display: block;
  margin-top: .35rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.coins-panel h2,
.coins-panel h3,
.coins-label {
  margin: 0 0 .55rem;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon-2);
}
.coins-boxes,
.coins-countdown {
  display: flex;
  justify-content: center;
  gap: .35rem;
  margin-bottom: .7rem;
}
.coins-box,
.coins-boxes span,
.coins-countdown span {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 44px;
  padding: .3rem .35rem;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(180deg, #0b0818, #16112a);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 14px rgba(176, 38, 255, .25), 0 2px 8px rgba(0, 0, 0, .5);
}
.coins-panel p { margin: 0 0 .7rem; font-size: .8rem; color: var(--muted); }
.coins-title { margin: 0 0 .55rem; font-family: var(--display); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--neon-2); }
.coins-copy { margin: 0 0 .85rem; }
.jackpot-sub { display: block; margin-top: .4rem; font-size: .72rem; color: var(--muted); line-height: 1.35; }
.featured-label,
.hot-label {
  margin: 0;
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--neon-2);
}
.featured-name { margin: 0; font-size: .95rem; }
.featured-provider { margin: 0; color: var(--muted); font-size: .74rem; }
.featured-art { display: block; }
.cockpit-center { min-width: 0; display: grid; gap: .75rem; justify-items: center; }
.neon-brand { text-align: center; width: 100%; }
.neon-now {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .65rem;
  align-items: baseline;
  justify-content: center;
  margin: .55rem 0 0;
  font-size: .78rem;
  color: var(--muted);
}
.neon-now span {
  font-family: var(--display);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.neon-now strong { color: var(--text); font-size: .9rem; }

.featured-panel { display: grid; gap: .65rem; }
.featured-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 0 20px rgba(176, 38, 255, .28);
}
.featured-panel h2,
.featured-panel h3 {
  margin: 0;
  font-size: .95rem;
  letter-spacing: .04em;
}
.featured-panel small { color: var(--muted); font-size: .74rem; }
.featured-panel .btn { width: 100%; }

.hot-list {
  display: grid;
  gap: .3rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hot-list li { margin: 0; }
.hot-list a,
.hot-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .35rem .5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background-color .18s var(--ease), border-color .18s var(--ease);
}
.hot-list a:hover,
.hot-row:hover {
  background: rgba(176, 38, 255, .12);
  border-color: var(--line);
}
.hot-list img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}
.hot-list strong {
  overflow: hidden;
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hot-list small { color: var(--muted); font-size: .7rem; }

/* --------------------------------------------------------------------------
   08. Neon cabinet (signature)
   -------------------------------------------------------------------------- */
.neon-cabinet {
  --cab-w: min(560px, 100%);
  position: relative;
  width: var(--cab-w);
  display: grid;
  gap: .85rem;
  padding: clamp(.85rem, .6rem + .8vw, 1.35rem);
  border-radius: clamp(18px, 1.4vw + 14px, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1) 0%, transparent 12%),
    linear-gradient(180deg, #241c3d 0%, #170f2c 34%, #120d22 68%, #0b0816 100%);
  border: 1px solid rgba(200, 208, 224, .3);
  box-shadow:
    /* chrome bevel */
    inset 0 1px 0 rgba(255, 255, 255, .35),
    inset 0 -2px 0 rgba(0, 0, 0, .7),
    inset 2px 0 0 rgba(255, 255, 255, .06),
    inset -2px 0 0 rgba(0, 0, 0, .35),
    /* rim light */
    0 0 0 1px rgba(176, 38, 255, .45),
    0 0 26px rgba(176, 38, 255, .5),
    0 0 70px rgba(255, 43, 214, .28),
    /* floor shadow */
    0 26px 60px rgba(2, 1, 8, .78);
}
/* Outer chrome rails on both flanks. */
.neon-cabinet::before,
.neon-cabinet::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 5px;
  border-radius: 4px;
  background: var(--grad-chrome);
  box-shadow: 0 0 14px rgba(176, 38, 255, .5);
  opacity: .55;
  pointer-events: none;
}
.neon-cabinet::before { left: -3px; }
.neon-cabinet::after { right: -3px; }

.neon-cabinet.is-pulled {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .35),
    inset 0 -2px 0 rgba(0, 0, 0, .7),
    0 0 0 1px rgba(255, 43, 214, .7),
    0 0 40px rgba(255, 43, 214, .6),
    0 0 100px rgba(176, 38, 255, .4),
    0 26px 60px rgba(2, 1, 8, .78);
}

/* Topper -------------------------------------------------------------- */
.neon-topper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  padding: .6rem .8rem;
  border-radius: 14px;
  text-align: center;
  background:
    radial-gradient(120% 160% at 50% -40%, rgba(255, 43, 214, .3), transparent 62%),
    linear-gradient(180deg, #1d1636, #0e0a1d);
  border: 1px solid rgba(255, 43, 214, .4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    inset 0 0 24px rgba(255, 43, 214, .2),
    0 0 22px rgba(255, 43, 214, .35);
}
.neon-topper-win,
.neon-topper-play {
  font-family: var(--display);
  font-size: clamp(1rem, .8rem + 1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}
.neon-topper-win {
  color: var(--gold-2);
  text-shadow:
    0 0 6px rgba(255, 232, 154, .9),
    0 0 18px rgba(255, 210, 74, .7),
    0 0 40px rgba(255, 210, 74, .35);
  animation: neon-pulse 2.8s ease-in-out infinite;
}
.neon-topper-play {
  color: #ffd8f4;
  text-shadow:
    0 0 6px rgba(255, 216, 244, .9),
    0 0 20px rgba(255, 43, 214, .8),
    0 0 46px rgba(255, 43, 214, .4);
  animation: neon-pulse 2.8s ease-in-out .7s infinite;
}

/* Body: lever rail + screen ------------------------------------------- */
.neon-body {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: .6rem;
}

.neon-screen {
  position: relative;
  padding: clamp(.6rem, .4rem + .6vw, .9rem);
  border-radius: 16px;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(176, 38, 255, .22), transparent 62%),
    linear-gradient(180deg, #07050f, #050409 70%, #08060f);
  border: 1px solid rgba(176, 38, 255, .55);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .8),
    inset 0 0 40px rgba(0, 0, 0, .9),
    inset 0 0 24px rgba(176, 38, 255, .22),
    0 0 20px rgba(176, 38, 255, .4);
}
/* Purple rim light sweeping the glass. */
.neon-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), transparent 34%);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: .3rem;
}

.reel-cell {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 42px;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(180deg, #14102a 0%, #0b0817 62%, #0e0a1c 100%);
  border: 1px solid rgba(176, 38, 255, .38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 -6px 14px rgba(0, 0, 0, .6),
    0 0 10px rgba(176, 38, 255, .18);
}
.reel-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), transparent 45%);
  pointer-events: none;
}

.reel-cell .sym {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--display);
  font-size: clamp(1.05rem, .7rem + 1.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--text);
  text-shadow: 0 0 10px rgba(176, 38, 255, .7), 0 0 24px rgba(255, 43, 214, .35);
  will-change: transform, filter;
}
.reel-cell .sym-bar {
  font-size: clamp(.68rem, .5rem + .7vw, .95rem);
  letter-spacing: .06em;
  color: var(--gold-2);
  text-shadow: 0 0 10px rgba(255, 210, 74, .75), 0 0 26px rgba(255, 210, 74, .4);
}
.reel-cell .sym-wild {
  font-size: clamp(.6rem, .45rem + .6vw, .82rem);
  letter-spacing: .08em;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 43, 214, .9), 0 0 30px rgba(176, 38, 255, .6);
}
/* Center wild cell reads as the paying position. */
.reel-cell:has(.sym-wild) {
  border-color: rgba(255, 43, 214, .8);
  background: linear-gradient(180deg, #2a1140 0%, #170a26 70%);
  box-shadow:
    inset 0 0 18px rgba(255, 43, 214, .35),
    0 0 18px rgba(255, 43, 214, .5);
}

/* Spinning state: JS adds .is-spinning (or .is-pulled during a lever pull). */
.neon-cabinet.is-spinning .reel-cell .sym,
.neon-cabinet.is-pulled .reel-cell .sym {
  animation: reel-blur .42s linear infinite;
}
.neon-cabinet.is-spinning .reel-cell:nth-child(5n + 2) .sym,
.neon-cabinet.is-pulled .reel-cell:nth-child(5n + 2) .sym { animation-duration: .5s; }
.neon-cabinet.is-spinning .reel-cell:nth-child(5n + 3) .sym,
.neon-cabinet.is-pulled .reel-cell:nth-child(5n + 3) .sym { animation-duration: .58s; }
.neon-cabinet.is-spinning .reel-cell:nth-child(5n + 4) .sym,
.neon-cabinet.is-pulled .reel-cell:nth-child(5n + 4) .sym { animation-duration: .66s; }
.neon-cabinet.is-spinning .reel-cell:nth-child(5n + 5) .sym,
.neon-cabinet.is-pulled .reel-cell:nth-child(5n + 5) .sym { animation-duration: .74s; }
.neon-cabinet.is-spinning .neon-screen,
.neon-cabinet.is-pulled .neon-screen {
  border-color: rgba(255, 43, 214, .85);
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, .9),
    inset 0 0 30px rgba(255, 43, 214, .3),
    0 0 32px rgba(255, 43, 214, .55);
}

/* Featured game art strip inside the glass. */
.neon-feature-art {
  display: block;
  margin-top: .5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, .7), 0 0 16px rgba(176, 38, 255, .3);
}
.neon-feature-art img {
  display: block;
  width: 100%;
  height: clamp(46px, 8vw, 74px);
  object-fit: cover;
  opacity: .92;
}

/* Lever ---------------------------------------------------------------- */
.neon-lever {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 0;
  width: 66px;
  height: clamp(150px, 24vw, 210px);
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transform-origin: 50% 100%;
  transition: transform .18s var(--ease);
}
/* Recessed track so the shaft reads as mounted into the cabinet flank. */
.neon-lever::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16%;
  bottom: 2px;
  width: 20px;
  transform: translateX(-50%);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18));
  box-shadow:
    inset 0 0 12px rgba(0, 0, 0, .85),
    inset 0 0 0 1px rgba(176, 38, 255, .28),
    0 0 12px rgba(176, 38, 255, .2);
}
.neon-lever-ball {
  position: relative;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #ffffff 0%, #f0c2ff 12%, var(--neon-2) 42%, var(--neon) 70%, #5a0f8a 100%);
  box-shadow:
    inset 0 -3px 8px rgba(0, 0, 0, .45),
    0 0 16px rgba(255, 43, 214, .8),
    0 0 38px rgba(176, 38, 255, .5);
  transition: box-shadow .2s var(--ease);
}
.neon-lever-shaft {
  position: relative;
  z-index: 1;
  display: block;
  width: 9px;
  height: clamp(78px, 13vw, 118px);
  margin-top: -4px;
  border-radius: 5px;
  background: linear-gradient(90deg, #6f7891 0%, #eef2f9 34%, #c8d0e0 56%, #59617a 100%);
  box-shadow: 0 0 10px rgba(200, 208, 224, .35), inset 0 0 4px rgba(0, 0, 0, .5);
}
.neon-lever-base {
  position: relative;
  z-index: 1;
  display: block;
  width: 44px;
  height: 18px;
  border-radius: 8px 8px 5px 5px;
  background: linear-gradient(180deg, #9aa2b8, #3a4055 70%, #1c2030);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .4),
    0 4px 12px rgba(0, 0, 0, .6),
    0 0 14px rgba(176, 38, 255, .3);
}
.neon-lever:hover .neon-lever-ball {
  box-shadow:
    inset 0 -3px 8px rgba(0, 0, 0, .45),
    0 0 22px rgba(255, 43, 214, 1),
    0 0 52px rgba(176, 38, 255, .65);
}
.neon-lever.is-pulled,
.cabinet-lever.is-pulled {
  animation: lever-pull .45s var(--ease);
}
.neon-lever:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; border-radius: 12px; }

/* Controls ------------------------------------------------------------- */
.neon-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  flex-wrap: wrap;
  padding: .75rem .6rem .5rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .07), transparent 30%),
    linear-gradient(180deg, #1b1533, #0d0a1b);
  border: 1px solid rgba(200, 208, 224, .18);
  box-shadow: var(--inset-chrome), inset 0 0 26px rgba(176, 38, 255, .12);
}

.neon-spin {
  display: inline-grid;
  place-items: center;
  min-width: min(230px, 62vw);
  min-height: 62px;
  padding: .9rem 2rem;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  font-family: var(--display);
  font-size: clamp(1rem, .85rem + .5vw, 1.3rem);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  cursor: pointer;
  background:
    radial-gradient(120% 160% at 50% -30%, rgba(255, 255, 255, .45), transparent 55%),
    var(--grad-neon);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .45),
    inset 0 -5px 10px rgba(0, 0, 0, .45),
    0 8px 0 #3c0b5f,
    0 0 30px rgba(176, 38, 255, .7),
    0 0 70px rgba(255, 43, 214, .35);
  transition: transform .12s var(--ease), box-shadow .18s var(--ease);
}
.neon-spin:hover {
  color: #fff;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .5),
    inset 0 -5px 10px rgba(0, 0, 0, .45),
    0 8px 0 #3c0b5f,
    0 0 40px rgba(176, 38, 255, .9),
    0 0 90px rgba(255, 43, 214, .45);
}
.neon-spin:active,
.neon-spin.is-pulled {
  transform: translateY(5px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .3),
    inset 0 -3px 8px rgba(0, 0, 0, .5),
    0 3px 0 #3c0b5f,
    0 0 26px rgba(176, 38, 255, .7);
}
.neon-spin:disabled,
.neon-spin[disabled] {
  cursor: not-allowed;
  filter: grayscale(.55);
  opacity: .55;
  transform: none;
}

.neon-bet {
  display: inline-grid;
  place-items: center;
  min-width: 130px;
  min-height: 48px;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  color: #1b2030;
  background: var(--grad-chrome);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .8),
    inset 0 -4px 8px rgba(0, 0, 0, .3),
    0 5px 0 #3d4356,
    0 0 18px rgba(200, 208, 224, .22);
  transition: transform .12s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.neon-bet:hover {
  color: #0f1220;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -4px 8px rgba(0, 0, 0, .3),
    0 5px 0 #3d4356,
    0 0 24px rgba(176, 38, 255, .45);
}
.neon-bet:active { transform: translateY(3px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 2px 0 #3d4356; }

.neon-now {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0;
  text-align: center;
}
.neon-now span {
  font-family: var(--display);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon-2);
}
.neon-now strong {
  font-family: var(--display);
  font-size: .95rem;
  letter-spacing: .03em;
  color: var(--text);
  text-shadow: 0 0 14px rgba(176, 38, 255, .5);
}
.neon-now small { color: var(--muted); font-size: .74rem; }

.cabinet-legal {
  margin: 0;
  text-align: center;
  font-size: .68rem;
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--muted);
}

/* Legacy cabinet hooks kept alive so old markup never breaks. */
.cabinet { position: relative; }
.cabinet-preplay { position: relative; z-index: 2; }
.machine-seat { display: block; }
.cabinet-bezel {
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .7);
}
.cabinet-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-soft);
  background: rgba(10, 7, 24, .6);
}

/* --------------------------------------------------------------------------
   09. USP ribbon
   -------------------------------------------------------------------------- */
.usp-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem 1.2rem;
  width: var(--wrap);
  margin: 0 auto 1.6rem;
  padding: .85rem 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--glass), rgba(10, 7, 24, .7));
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), var(--shadow-1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.usp-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex: 1 1 190px;
  min-height: 44px;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #d5cdee;
}
.usp-item svg,
.usp-item .usp-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--gold-2);
  background: radial-gradient(circle at 34% 28%, rgba(176, 38, 255, .5), rgba(10, 7, 24, .9));
  border: 1px solid var(--line);
  box-shadow: 0 0 14px rgba(176, 38, 255, .35);
}

/* --------------------------------------------------------------------------
   10. Sections, game grid, rails
   -------------------------------------------------------------------------- */
.section {
  margin-top: clamp(2rem, 1.4rem + 2vw, 3.4rem);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line-soft);
}
.section-head h2 {
  margin: 0;
  text-shadow: 0 0 22px rgba(176, 38, 255, .35);
}
.section-head > a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--neon-2);
}
.section-head > a:hover { color: var(--gold-2); }

.page-intro { margin-bottom: 1.4rem; }
.page-title { margin: 0 0 .5rem; }

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: .9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-card-wrap {
  position: relative;
  margin: 0;
  min-width: 0;
}

/* Faceplate tile: dark panel, purple rim light on hover. */
.game-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 62%, #0c0918);
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), 0 6px 18px rgba(2, 1, 8, .5);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .22s var(--ease);
}
.game-card:hover {
  transform: translateY(-4px);
  color: var(--text);
  border-color: rgba(176, 38, 255, .8);
  box-shadow:
    var(--inset-chrome),
    0 0 0 1px rgba(176, 38, 255, .45),
    0 0 24px rgba(176, 38, 255, .45),
    0 16px 32px rgba(2, 1, 8, .6);
}
.game-card .thumb {
  display: block;
  position: relative;
  overflow: hidden;
  background: #08060f;
  border-bottom: 1px solid var(--line-soft);
}
.game-card .thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s var(--ease), filter .3s var(--ease);
}
.game-card:hover .thumb img { transform: scale(1.06); filter: saturate(1.15) brightness(1.05); }
.game-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 4, 14, .8));
  opacity: .85;
}
.game-card .meta {
  display: grid;
  gap: .12rem;
  align-content: start;
  padding: .6rem .7rem .7rem;
}
.game-card .meta strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.25;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.game-card .meta small {
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.fav-btn {
  position: absolute;
  top: .45rem;
  right: .45rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  color: var(--chrome);
  background: rgba(8, 6, 16, .78);
  border: 1px solid var(--line-soft);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color .18s var(--ease), border-color .18s var(--ease), box-shadow .2s var(--ease), transform .16s var(--ease);
}
.fav-btn:hover { transform: scale(1.06); color: var(--gold-2); border-color: var(--line-gold); }
.fav-btn.is-on {
  color: #221503;
  background: var(--grad-gold);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: var(--glow-gold);
}
.fav-btn-lg {
  position: static;
  width: auto;
  min-width: 68px;
  height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
}

/* Provider + casino rails ---------------------------------------------- */
.provider-rail,
.casino-rail {
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  padding-bottom: .6rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--neon) transparent;
}
.provider-rail::-webkit-scrollbar,
.casino-rail::-webkit-scrollbar { height: 8px; }
.provider-rail::-webkit-scrollbar-track,
.casino-rail::-webkit-scrollbar-track { background: rgba(255, 255, 255, .05); border-radius: 999px; }
.provider-rail::-webkit-scrollbar-thumb,
.casino-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon), var(--neon-2));
}

.provider-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex: 0 0 auto;
  min-height: 52px;
  padding: .55rem .95rem;
  scroll-snap-align: start;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--glass-2), rgba(10, 7, 24, .8));
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .16s var(--ease);
}
.provider-chip:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(176, 38, 255, .7);
  box-shadow: var(--inset-chrome), 0 0 22px rgba(176, 38, 255, .4);
}
.provider-chip img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  padding: 2px;
}
.provider-chip span {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.provider-chip small {
  padding: .1rem .45rem;
  border-radius: 999px;
  font-size: .66rem;
  color: var(--gold-2);
  background: rgba(255, 210, 74, .12);
  border: 1px solid rgba(255, 210, 74, .3);
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .9rem;
}
.provider-card {
  display: grid;
  justify-items: center;
  gap: .35rem;
  padding: 1.15rem .9rem;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 70%, #0c0918);
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), var(--shadow-1);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .22s var(--ease);
}
.provider-card:hover {
  transform: translateY(-4px);
  color: var(--text);
  border-color: rgba(176, 38, 255, .75);
  box-shadow: var(--inset-chrome), 0 0 26px rgba(176, 38, 255, .4);
}
.provider-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  padding: 5px;
  background: rgba(255, 255, 255, .93);
}
.provider-card strong {
  font-family: var(--display);
  font-size: .9rem;
  letter-spacing: .02em;
}
.provider-card span { font-size: .74rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   11. Casinos
   -------------------------------------------------------------------------- */
.cage-section .cage-lede {
  max-width: 68ch;
  margin: -.35rem 0 1.1rem;
  color: var(--muted);
}

.casino-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: .5rem;
  flex: 0 0 min(240px, 78vw);
  padding: 1.1rem .95rem;
  scroll-snap-align: start;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 68%, #0c0918);
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), var(--shadow-1);
  transition: border-color .2s var(--ease), box-shadow .22s var(--ease), transform .18s var(--ease);
}
.casino-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-gold);
  box-shadow: var(--inset-chrome), 0 0 24px rgba(255, 210, 74, .3);
}
.casino-card-logo {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  padding: .5rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .5);
}
.casino-card-logo img { max-width: 100%; height: auto; object-fit: contain; }
.casino-card h3 { margin: 0; font-size: .98rem; }
.casino-card-bonus {
  margin: 0;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gold-2);
}
.casino-card .muted { margin: 0; font-size: .8rem; }
.casino-card .btn { width: 100%; }

/* Compare list --------------------------------------------------------- */
.casinos-page { display: block; }
.casinos-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.casinos-intro-actions,
.casinos-footnote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.casino-compare-head {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr) 96px minmax(0, 1.1fr);
  gap: 1rem;
  align-items: center;
  padding: .6rem 1.1rem;
  border-radius: 12px 12px 0 0;
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(10, 7, 24, .8);
  border: 1px solid var(--line-soft);
  border-bottom: 0;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.casino-list {
  display: grid;
  gap: .55rem;
  margin-bottom: 1.8rem;
}
.casino-row {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.6fr) 96px minmax(0, 1.1fr);
  gap: 1rem;
  align-items: center;
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--glass-2), rgba(10, 7, 24, .8));
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome);
  transition: border-color .2s var(--ease), box-shadow .22s var(--ease);
}
.casino-row:hover {
  border-color: rgba(176, 38, 255, .6);
  box-shadow: var(--inset-chrome), 0 0 22px rgba(176, 38, 255, .28);
}
.casino-row.is-featured {
  border-color: var(--line-gold);
  box-shadow: var(--inset-chrome), inset 0 0 26px rgba(255, 210, 74, .08), 0 0 22px rgba(255, 210, 74, .22);
}
.casino-row-brand {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: .7rem;
  min-width: 0;
}
.casino-rank {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: rgba(176, 38, 255, .8);
  text-shadow: 0 0 14px rgba(176, 38, 255, .55);
}
.casino-row-logo {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: .35rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .45);
}
.casino-row-logo img { max-width: 100%; height: auto; object-fit: contain; }
.casino-row-meta { min-width: 0; }
.casino-row-meta h2 {
  margin: 0 0 .2rem;
  font-size: 1rem;
  letter-spacing: .02em;
}
.casino-bonus-mobile {
  display: none;
  margin: .25rem 0 0;
  font-size: .8rem;
  color: var(--gold-2);
}
.casino-row-bonus strong {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gold-2);
}
.casino-row-score {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  justify-content: center;
}
.casino-row-score small { color: var(--muted); font-size: .72rem; }
.score-badge {
  display: inline-grid;
  place-items: center;
  padding: .3rem .6rem;
  border-radius: 10px;
  font-family: var(--display);
  font-size: .86rem;
  font-weight: 700;
  color: #221503;
  background: var(--grad-gold);
  box-shadow: var(--glow-gold);
}
.score-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.casino-row-actions {
  display: grid;
  gap: .4rem;
  align-content: center;
}
.casino-row-actions .btn { width: 100%; }

.casinos-footnote {
  display: grid;
  gap: .9rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(10, 7, 24, .6);
  border: 1px dashed var(--line-soft);
}
.casinos-footnote p { margin: 0; font-size: .84rem; }

/* Casino profile ------------------------------------------------------- */
.casino-profile { display: block; }
.casino-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 1.4rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 260px at 12% -20%, rgba(176, 38, 255, .25), transparent 68%),
    linear-gradient(180deg, var(--glass-2), rgba(10, 7, 24, .84));
  border: 1px solid var(--line);
  box-shadow: var(--inset-chrome), var(--shadow-2), 0 0 30px rgba(176, 38, 255, .2);
}
.casino-logo {
  width: 104px;
  height: 104px;
  padding: .6rem;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .55);
}
.casino-hero-copy h1 { margin: 0 0 .5rem; }
.casino-hero-copy .bonus,
.casino-profile .bonus {
  margin: .5rem 0 .9rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-2);
  text-shadow: 0 0 18px rgba(255, 210, 74, .35);
}
.casino-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.casino-toc {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.4rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line-soft);
}
.casino-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .4rem .9rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #cdc5e8;
  background: rgba(18, 16, 31, .7);
  border: 1px solid var(--line-soft);
}
.casino-toc a:hover { color: #fff; border-color: var(--line); }
.casino-toc .toc-visit {
  color: #221503;
  background: var(--grad-gold);
  border-color: rgba(255, 255, 255, .4);
  box-shadow: var(--glow-gold);
}
.casino-toc .toc-visit:hover { color: #1a1002; }
.casino-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(176, 38, 255, .16), rgba(10, 7, 24, .85));
  border: 1px solid var(--line);
  box-shadow: var(--inset-chrome), var(--shadow-1);
}
.casino-bottom-cta h2 { margin: 0 0 .3rem; font-size: 1.25rem; }
.casino-bottom-cta p { margin: 0; }

/* --------------------------------------------------------------------------
   12. Themes, guides, how-it-works, FAQ, filters, prose
   -------------------------------------------------------------------------- */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .9rem;
}
.theme-card {
  display: grid;
  gap: .3rem;
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(176, 38, 255, .18), rgba(18, 16, 31, .9) 55%);
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), var(--shadow-1);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .22s var(--ease);
}
.theme-card:hover {
  transform: translateY(-4px);
  color: var(--text);
  border-color: rgba(176, 38, 255, .75);
  box-shadow: var(--inset-chrome), 0 0 26px rgba(176, 38, 255, .4);
}
.theme-card strong {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .02em;
}
.theme-card span,
.theme-card small { font-size: .78rem; color: var(--muted); }

.guide-grid,
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .9rem;
}
.guide-card,
.blog-card {
  display: grid;
  gap: .45rem;
  align-content: start;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel) 70%, #0c0918);
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), var(--shadow-1);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .22s var(--ease);
}
.guide-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(176, 38, 255, .7);
  box-shadow: var(--inset-chrome), 0 0 24px rgba(176, 38, 255, .35);
}
.guide-card h3,
.blog-card h3 { margin: 0; font-size: 1.02rem; line-height: 1.3; }
.guide-card p,
.blog-card p { margin: 0; font-size: .88rem; color: var(--muted); }
.blog-card time { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--neon-2); }

.how-grid h2 { margin-bottom: 1.1rem; }
.how-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .9rem;
}
.how-cards article {
  position: relative;
  padding: 1.5rem 1.15rem 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--glass-2), rgba(10, 7, 24, .82));
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), var(--shadow-1);
}
.how-cards article::before {
  content: attr(data-step);
  position: absolute;
  top: .7rem;
  right: .9rem;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(176, 38, 255, .7);
  text-shadow: 0 0 20px rgba(176, 38, 255, .35);
}
.how-cards h3 { margin: 0 0 .35rem; font-size: 1rem; }
.how-cards p { margin: 0; font-size: .88rem; color: var(--muted); }

.faq-block h2 { margin-bottom: 1rem; }
.faq-list { display: grid; gap: .5rem; }
.faq-item {
  border-radius: 12px;
  background: rgba(18, 16, 31, .72);
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome);
  transition: border-color .2s var(--ease);
}
.faq-item[open] {
  border-color: var(--line);
  box-shadow: var(--inset-chrome), 0 0 20px rgba(176, 38, 255, .22);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  min-height: 52px;
  padding: .8rem 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: var(--font);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--neon-2);
  border: 1px solid var(--line);
  transition: transform .2s var(--ease), color .2s var(--ease);
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); color: var(--gold-2); }
.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #cfc8e6;
  font-size: .92rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.1rem;
  padding: .85rem;
  border-radius: var(--radius);
  background: rgba(10, 7, 24, .7);
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome);
}
.filters input,
.filters select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 46px;
  padding: .6rem .9rem;
  border-radius: 10px;
  color: var(--text);
  background: rgba(6, 5, 15, .85);
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, .5);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.filters input { flex: 1 1 200px; }
.filters select { flex: 0 1 180px; }
.filters input:focus,
.filters select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, .5), 0 0 18px rgba(176, 38, 255, .35);
}
.filters input::placeholder { color: var(--muted); }
.filters select option { background: #0d0a1b; color: var(--text); }

.pager {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-top: 1.6rem;
}
.pager a {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 .6rem;
  border-radius: 10px;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 600;
  color: #cdc5e8;
  background: rgba(18, 16, 31, .75);
  border: 1px solid var(--line-soft);
}
.pager a:hover { color: #fff; border-color: var(--line); box-shadow: 0 0 16px rgba(176, 38, 255, .3); }
.pager a.is-active {
  color: #fff;
  background: var(--grad-neon);
  border-color: rgba(255, 255, 255, .3);
  box-shadow: var(--glow-neon);
}

.prose {
  max-width: 76ch;
  color: #ddd7ef;
}
.prose h2 {
  margin-top: 2rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--line-soft);
}
.prose h3 { margin-top: 1.5rem; }
.prose p,
.prose li { line-height: 1.75; }
.prose ul,
.prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose a {
  color: var(--neon-2);
  text-decoration: underline;
  text-decoration-color: rgba(255, 43, 214, .45);
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--gold-2); text-decoration-color: var(--gold); }
.prose blockquote {
  margin: 1.4rem 0;
  padding: .8rem 1.1rem;
  border-left: 3px solid var(--neon);
  border-radius: 0 10px 10px 0;
  background: rgba(176, 38, 255, .1);
  color: #e6e0f7;
}
.prose code {
  padding: .1rem .35rem;
  border-radius: 6px;
  font-size: .9em;
  background: rgba(255, 255, 255, .07);
  color: var(--cyan);
}
.prose img { border-radius: var(--radius); border: 1px solid var(--line-soft); }
.prose table { margin: 1.2rem 0; }

.attr-table {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(18, 16, 31, .7);
  border: 1px solid var(--line-soft);
}
.attr-table th,
.attr-table td {
  padding: .7rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: .9rem;
}
.attr-table tr:last-child th,
.attr-table tr:last-child td { border-bottom: 0; }
.attr-table th {
  width: 42%;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
}
.attr-table td { color: var(--text); }

/* --------------------------------------------------------------------------
   13. Slot page — player, preplay, demo, specs, modal
   -------------------------------------------------------------------------- */
.slot-page { display: block; }

.breadcrumb {
  margin: 1rem auto .3rem;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--neon-2); }

.slot-title { margin: .6rem auto 1.2rem; }
.slot-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.slot-title h1 {
  margin: 0;
  font-size: clamp(1.45rem, 1.1rem + 1.6vw, 2.25rem);
  text-shadow: 0 0 26px rgba(176, 38, 255, .4);
}
.slot-title .lede { margin-top: .55rem; }

.player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.2rem;
  align-items: start;
}

/* Game page: the demo sits inside the same neon cabinet as the home floor. */
.player-cabinet {
  --cab-w: 100%;
  width: 100%;
  max-width: none;
}
.player-cabinet .neon-body-player {
  align-items: stretch;
}
.player-cabinet .neon-lever {
  align-self: center;
}
.player-cabinet .neon-screen-player {
  padding: .45rem;
  min-height: 0;
}
.player-cabinet .player-stage {
  min-height: min(68vh, 620px);
  height: 100%;
  border-radius: 12px;
}

/* The player is the cabinet glass: chrome frame, purple inner rim. */
.player-stage {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(176, 38, 255, .2), transparent 62%),
    #050409;
  border: 1px solid rgba(200, 208, 224, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    inset 0 0 0 1px rgba(176, 38, 255, .28),
    inset 0 0 80px rgba(0, 0, 0, .85),
    0 0 26px rgba(176, 38, 255, .3),
    0 22px 50px rgba(2, 1, 8, .7);
}

.preplay {
  min-height: 480px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  padding: 2rem 1.4rem;
  text-align: center;
}
.preplay-offer {
  width: min(360px, 100%);
  display: grid;
  justify-items: center;
  gap: .85rem;
  padding: 1.5rem 1.3rem 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(176, 38, 255, .22), rgba(10, 7, 24, .82));
  border: 1px solid var(--line);
  box-shadow: var(--inset-chrome), 0 0 26px rgba(176, 38, 255, .28), var(--shadow-1);
}
.offer-logo-wrap {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  padding: .8rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .55);
}
.offer-logo-wrap.is-empty {
  background: linear-gradient(160deg, var(--panel-2), #0b0817);
  border-color: var(--line);
}
.offer-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.offer-logo-fallback {
  font-family: var(--display);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.offer-bonus {
  margin: 0;
  max-width: 28ch;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--gold-2);
  text-shadow: 0 0 16px rgba(255, 210, 74, .35);
}
.preplay-legal {
  margin: .2rem 0 0;
  font-size: .74rem;
  color: var(--muted) !important;
}
.preplay-coming {
  margin: .35rem 0 0;
  font-size: .82rem;
  color: var(--gold-2) !important;
}

.demo-frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.demo-frame iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  background: #000;
}
.demo-unavailable {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: 1.4rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(26, 11, 44, .96), rgba(5, 4, 12, .96));
}
.demo-unavailable-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.demo-unavailable-body {
  margin: 0;
  max-width: 34rem;
  font-size: .94rem;
  color: var(--muted);
}

/* Freedemo widget host — functional sizing + offer suppression. */
.demo-widget-host {
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}
.demo-widget-host .freedemo-game-widget,
.demo-widget-host .freedemo-game-widget > * {
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
}
.demo-widget-host iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  min-height: 360px;
}
.demo-widget-host.is-skipping-offer .stb2_fdg-wrapper,
.demo-widget-host.is-skipping-offer .stb2_fdg-content,
.demo-widget-host.is-skipping-offer .stb2_fdg-widget-link,
.demo-widget-host.is-skipping-offer .fdg-widget-wrapper:not(:has(iframe)),
.demo-widget-host.is-skipping-offer .fdg-widget-claim-bonus-btn,
.demo-widget-host.is-skipping-offer .stb2_fdg-widget-claim-bonus-btn,
.demo-widget-host.is-skipping-offer .fdg-widget-bonus-img,
.demo-widget-host.is-skipping-offer .stb2_fdg-widget-bonus-img,
.demo-widget-host.is-skipping-offer .fdg-widget-bonus-text,
.demo-widget-host.is-skipping-offer .stb2_fdg-widget-bonus-text,
.demo-widget-host.is-skipping-offer .fdg-promo-modal-v2,
.demo-widget-host.is-skipping-offer .stb2_modal {
  opacity: 0 !important;
  pointer-events: none !important;
}
.demo-widget-host.is-skipping-offer .fdg-widget-play-demo,
.demo-widget-host.is-skipping-offer button.fdg-widget-play-demo {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0.01 !important;
  pointer-events: auto !important;
}

.demo-theater-bar {
  display: none;
  flex: 0 0 auto;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .55rem 3.25rem .55rem .75rem;
  z-index: 6;
  color: #221503;
  background: var(--grad-gold);
  border-bottom: 1px solid rgba(0, 0, 0, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}
.demo-theater-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  max-width: calc(100% - .5rem);
  color: inherit;
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.demo-theater-cta:hover { color: inherit; }
.demo-theater-cta.is-disabled { opacity: .82; pointer-events: none; }
.demo-theater-ext { flex: 0 0 auto; opacity: .8; }
.demo-theater-gift {
  display: none;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-right: .2rem;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 32% 28%, var(--neon-2), #6c0f9c);
  border: 1px solid rgba(0, 0, 0, .4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 2px 8px rgba(0, 0, 0, .45);
  transform-origin: 50% 60%;
}
.demo-theater-gift svg {
  display: block;
  transform-origin: center;
  animation: gift-tilt .9s ease-in-out infinite;
}
body.is-demo-theater .demo-theater-gift {
  display: inline-grid;
  animation: gift-pop 1.1s ease-in-out infinite;
}
.demo-theater-close {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--gold-2);
  background: rgba(12, 8, 24, .9);
  border: 1px solid rgba(0, 0, 0, .5);
}
.demo-theater-close:hover { color: #fff; }
.demo-theater-close:focus-visible { outline: 2px solid #221503; outline-offset: 2px; }

.gift-fab {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #221503;
  background: radial-gradient(circle at 32% 28%, var(--gold-2), var(--gold) 52%, #cf9a12);
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    0 4px 16px rgba(0, 0, 0, .55),
    0 0 0 4px rgba(255, 210, 74, .12);
  animation: neon-pulse 3s ease-in-out infinite;
}
.gift-fab:hover { color: #120b01; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 0 26px rgba(255, 210, 74, .7); }

.specs-panel {
  position: sticky;
  top: calc(var(--header-h) + .8rem);
  padding: 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--glass-2), rgba(10, 7, 24, .84));
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), var(--shadow-1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.specs-panel dl {
  display: grid;
  gap: .1rem;
  margin: 0 0 .9rem;
}
.specs-panel dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .8rem;
  padding: .5rem .2rem;
  border-bottom: 1px dashed rgba(255, 255, 255, .08);
}
.specs-panel dl > div:last-child { border-bottom: 0; }
.specs-panel dt {
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.specs-panel dd {
  margin: 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}
.specs-panel dd a { color: var(--neon-2); }
.specs-panel dd a:hover { color: var(--gold-2); }
.specs-more {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--neon-2);
}
.specs-more:hover { color: var(--gold-2); }

.rating-bar {
  margin: 1rem auto 0;
  padding: .7rem 1rem;
  border-radius: 12px;
  font-size: .86rem;
  color: var(--muted);
  background: rgba(18, 16, 31, .6);
  border: 1px solid var(--line-soft);
}
.rating-bar p { margin: 0; }

.where-to-play .section-head { border-bottom-color: var(--line-gold); }

/* Offer modal ---------------------------------------------------------- */
.offer-modal {
  width: min(460px, calc(100% - 2rem));
  max-width: none;
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--text);
  background:
    radial-gradient(600px 260px at 50% -30%, rgba(176, 38, 255, .35), transparent 66%),
    linear-gradient(180deg, #17122b, #0a0718);
  box-shadow: var(--shadow-2), 0 0 40px rgba(176, 38, 255, .35);
}
.offer-modal::backdrop {
  background: rgba(4, 3, 10, .78);
  backdrop-filter: blur(4px);
}
.offer-modal h2 {
  margin: 0 0 1rem;
  padding-right: 2.2rem;
  font-size: 1.15rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-shadow: var(--glow-gold);
}
.modal-close {
  position: absolute;
  top: .6rem;
  right: .6rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--chrome);
  background: rgba(8, 6, 16, .8);
  border: 1px solid var(--line-soft);
}
.modal-close:hover { color: #fff; border-color: var(--line); }
.modal-offer {
  display: grid;
  justify-items: center;
  gap: .7rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(6, 5, 15, .6);
  border: 1px solid var(--line-soft);
  text-align: center;
}
.modal-offer img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  padding: .35rem;
  border-radius: 12px;
  background: #fff;
}
.modal-offer p { margin: 0; font-size: .92rem; color: var(--gold-2); font-weight: 600; }
.modal-offer .legal { color: var(--muted); font-weight: 400; }
.modal-offer .btn { width: 100%; }
.modal-actions {
  display: grid;
  gap: .45rem;
  margin-top: 1rem;
}
.jackpot-bell h2 { animation: neon-pulse 2.6s ease-in-out infinite; }

/* --------------------------------------------------------------------------
   14. SEO fold, 1UP, 404, contact
   -------------------------------------------------------------------------- */
.seo-article { margin-top: clamp(2rem, 1.4rem + 2vw, 3.2rem); }
.seo-article-shell { position: relative; }
.seo-article-shell.is-collapsed {
  max-height: 320px;
  overflow: hidden;
}
.seo-article-shell.is-expanded { max-height: none; }
.seo-article-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--floor) 88%);
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.seo-article-shell.is-collapsed .seo-article-fade { opacity: 1; }
.seo-prose {
  max-width: 76ch;
  color: #ddd7ef;
}
.seo-prose h2,
.seo-prose h3 { margin-top: 1.6rem; }
.seo-prose h2:first-child,
.seo-prose h3:first-child { margin-top: 0; }
.seo-prose p,
.seo-prose li { line-height: 1.75; }
.seo-prose a { color: var(--neon-2); text-decoration: underline; text-underline-offset: 3px; }
.seo-prose a:hover { color: var(--gold-2); }
.seo-article-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 1rem;
  padding: .6rem 1.3rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(10, 7, 24, .7);
  border: 1px solid var(--line);
  box-shadow: inset 0 0 18px rgba(176, 38, 255, .14);
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.seo-article-toggle:hover {
  border-color: var(--neon-2);
  box-shadow: inset 0 0 22px rgba(176, 38, 255, .22), 0 0 20px rgba(176, 38, 255, .4);
}

.favorites-page .oneup-root { min-height: 160px; }
.oneup-hint {
  margin-top: 1rem;
  font-size: .82rem;
}

.game-over-404 {
  display: grid;
  place-items: center;
  min-height: 58vh;
  text-align: center;
}
.game-over-cabinet {
  width: min(620px, 100%);
  padding: clamp(1.5rem, 1rem + 3vw, 2.8rem) 1.4rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px 220px at 50% -10%, rgba(176, 38, 255, .32), transparent 68%),
    linear-gradient(180deg, #191330, #0a0718);
  border: 1px solid var(--line);
  box-shadow: var(--inset-chrome), var(--shadow-2), 0 0 34px rgba(176, 38, 255, .32);
}
.game-over-cabinet .brand-hero { font-size: clamp(2.6rem, 2rem + 4vw, 4.5rem); }
.game-over-cabinet .eyebrow { justify-content: center; }
.game-over-cabinet .lede { margin-inline: auto; }
.game-over-cabinet .hero-cta { justify-content: center; margin-top: 1.2rem; margin-bottom: 0; }

.contact-page .contact-intro { margin-bottom: 1.4rem; }
.contact-form {
  display: grid;
  gap: .35rem;
  max-width: 34rem;
  margin-top: 1.2rem;
  padding: 1.3rem;
  border-radius: var(--radius);
  background: rgba(10, 7, 24, .7);
  border: 1px solid var(--line-soft);
  box-shadow: var(--inset-chrome), var(--shadow-1);
}
.contact-form label {
  margin-top: .6rem;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { margin-top: 1.1rem; justify-self: start; }
.contact-hp { position: absolute; left: -9999px; }
.contact-captcha {
  display: grid;
  gap: .35rem;
  margin: 1rem 0 0;
  padding: .9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(6, 5, 15, .6);
}
.contact-captcha legend {
  padding: 0 .4rem;
  font-family: var(--display);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--neon-2);
}
.contact-captcha input { max-width: 8rem; }
.contact-captcha-hint { margin: .3rem 0 0; font-size: .76rem; }
.contact-flash {
  margin: 1rem 0;
  padding: .8rem 1rem;
  border-radius: 12px;
  font-size: .9rem;
  border: 1px solid var(--line-soft);
}
.contact-flash.is-ok {
  color: #d8ffe9;
  background: rgba(46, 204, 128, .14);
  border-color: rgba(46, 204, 128, .45);
}
.contact-flash.is-err {
  color: #ffe0e8;
  background: rgba(255, 60, 110, .14);
  border-color: rgba(255, 60, 110, .45);
}

/* Legacy arcade widgets (only render if a template asks for them). */
.arcade-marquee {
  overflow: hidden;
  padding: .45rem 0;
  border-block: 1px solid var(--line-soft);
  background: rgba(6, 5, 15, .7);
}
.arcade-marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  font-family: var(--display);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--neon-2);
  will-change: transform;
}
.pulse-challenge {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  padding: .8rem 1rem;
  border-radius: var(--radius);
  background: rgba(18, 16, 31, .7);
  border: 1px solid var(--line-soft);
}
.pulse-pip {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid var(--line-soft);
}
.pulse-pip.is-on {
  background: var(--grad-neon);
  border-color: rgba(255, 255, 255, .3);
  box-shadow: 0 0 12px rgba(176, 38, 255, .7);
}
.pulse-challenge.is-clear { border-color: var(--line-gold); box-shadow: var(--glow-gold); }
.pulse-challenge.is-boss-clear { border-color: var(--neon-2); box-shadow: var(--glow-neon); }
.hud-value { font-family: var(--display); color: var(--gold-2); }
.hud-value.hud-blink { animation: neon-pulse 1.6s ease-in-out infinite; }
#crt-toggle.is-off { opacity: .55; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  padding: 2rem 0 2.4rem;
  background: linear-gradient(180deg, rgba(10, 7, 24, .2), rgba(4, 3, 10, .95));
  border-top: 1px solid var(--line);
  box-shadow: 0 -1px 0 rgba(255, 43, 214, .18);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}
.footer-inner p {
  margin: 0;
  font-size: .82rem;
  color: var(--muted);
}
.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem 1rem;
}
.footer-inner nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #b9b0d6;
}
.footer-inner nav a:hover { color: var(--gold-2); }

/* --------------------------------------------------------------------------
   16. Age gate (dormant unless the layout renders it)
   -------------------------------------------------------------------------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(4, 3, 10, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.age-gate-panel,
.age-gate > div {
  width: min(440px, 100%);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #191330, #0a0718);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2), 0 0 34px rgba(176, 38, 255, .35);
}
.age-gate h2 {
  font-size: 1.25rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-shadow: var(--glow-gold);
}
.age-gate .btn { min-width: 8rem; }
.age-gate-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}
.age-gate-blink { animation: neon-pulse 2s ease-in-out infinite; }

/* --------------------------------------------------------------------------
   17. Keyframes
   -------------------------------------------------------------------------- */
@keyframes reel-blur {
  0%   { transform: translateY(0) scaleY(1); filter: blur(0); }
  20%  { transform: translateY(-58%) scaleY(1.18); filter: blur(2.5px); }
  50%  { transform: translateY(-100%) scaleY(1.3); filter: blur(3.5px); opacity: .55; }
  51%  { transform: translateY(100%) scaleY(1.3); filter: blur(3.5px); opacity: .55; }
  80%  { transform: translateY(42%) scaleY(1.18); filter: blur(2.5px); }
  100% { transform: translateY(0) scaleY(1); filter: blur(0); }
}

@keyframes lever-pull {
  0%   { transform: rotate(0) translateY(0); }
  35%  { transform: rotate(16deg) translateY(10px); }
  60%  { transform: rotate(20deg) translateY(14px); }
  100% { transform: rotate(0) translateY(0); }
}

@keyframes neon-pulse {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50%      { opacity: .82; filter: brightness(1.28); }
}

@keyframes bokeh-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2.5%, -2%, 0) scale(1.05); }
  100% { transform: translate3d(-2%, 2.5%, 0) scale(1.02); }
}

@keyframes gift-tilt {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg); }
}

@keyframes gift-pop {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .machine-cockpit { grid-template-columns: 210px minmax(0, 1fr) 210px; }
  .floor-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 480px); }
}

@media (max-width: 1040px) {
  :root { --header-h: 62px; }

  .site-nav {
    order: 4;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
  .header-inner { flex-wrap: wrap; }
  .header-tools { order: 2; margin-left: auto; }
  .header-search input { width: clamp(110px, 22vw, 160px); }

  .machine-cockpit { grid-template-columns: minmax(0, 1fr) 220px; }
  .machine-cockpit .cockpit-side:first-of-type { grid-column: 1 / -1; }

  .floor-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }
  .floor-copy { max-width: min(46rem, 100%); }
  .floor-copy .eyebrow,
  .floor-copy .hero-cta,
  .floor-copy .niche-lanes { justify-content: center; }
  .floor-copy .lede { margin-inline: auto; }
  /* Machine leads on tablet: cockpit stacks with the cabinet first. */
  .floor-stage { order: -1; width: 100%; }

  .player-layout { grid-template-columns: minmax(0, 1fr); }
  .specs-panel { position: static; }
}

@media (max-width: 900px) {
  /* Fixed backgrounds and large blurred layers repaint badly on phones. */
  body.theme-machines,
  body.theme-arcade { background-attachment: scroll; }
  body::before { opacity: .4; filter: none; }
  body::after { display: none; }

  /* Nav collapses behind the Menu button. */
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    width: 100%;
    margin-top: .5rem;
    padding: .5rem;
    border-radius: var(--radius);
    background: rgba(10, 7, 24, .96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
  }
  .site-header.is-open .site-nav { display: flex; }
  .site-nav a { min-height: 48px; padding-inline: .8rem; font-size: .8rem; }
  .site-nav a::after { display: none; }
  .site-nav a:hover { background: rgba(176, 38, 255, .16); }

  .nav-toggle { order: 1; margin-left: auto; }
  .header-tools { order: 2; margin-left: .3rem; }
  .header-search input { width: clamp(104px, 30vw, 170px); }

  /* Cockpit: single column, cabinet first, side panels compressed below. */
  .machine-cockpit { grid-template-columns: minmax(0, 1fr); }
  .machine-cockpit .neon-cabinet,
  .machine-cockpit .floor-stage { order: -1; }
  .cockpit-side {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    display: grid;
  }
  .jackpot-panel,
  .coins-panel,
  .featured-panel { padding: .85rem; }
  .jackpot-value { font-size: 1.6rem; }

  .neon-cabinet { --cab-w: 100%; }
  .neon-body { grid-template-columns: 54px minmax(0, 1fr); gap: .4rem; }
  .neon-lever { width: 54px; height: clamp(130px, 30vw, 170px); }
  .neon-lever-shaft { height: clamp(64px, 16vw, 96px); }

  .casinos-intro { grid-template-columns: minmax(0, 1fr); }
  .casino-compare-head { display: none; }
  .casino-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .7rem 1rem;
  }
  .casino-row-brand { grid-column: 1; }
  .casino-row-score { grid-column: 2; justify-content: flex-end; }
  .casino-row-actions { grid-column: 1 / -1; grid-auto-flow: column; }
  .casino-bonus-mobile { display: block; }
  .hide-sm { display: none; }

  .casino-hero { grid-template-columns: minmax(0, 1fr); justify-items: center; text-align: center; }
  .casino-hero-actions { justify-content: center; }
  .casino-bottom-cta { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .casino-bottom-cta .casino-hero-actions { justify-content: center; }

  /* Mobile demo theater takes the whole viewport. */
  html.is-demo-theater,
  body.is-demo-theater {
    overflow: hidden;
    height: 100%;
    overscroll-behavior: none;
  }
  body.is-demo-theater .site-header,
  body.is-demo-theater .site-footer,
  body.is-demo-theater .breadcrumb,
  body.is-demo-theater .slot-title,
  body.is-demo-theater .specs-panel,
  body.is-demo-theater .rating-bar,
  body.is-demo-theater .slot-page > .section,
  body.is-demo-theater .slot-page > .wrap.section,
  body.is-demo-theater .offer-modal {
    display: none !important;
  }
  body.is-demo-theater::before,
  body.is-demo-theater::after { display: none; }
  body.is-demo-theater .site-main { padding: 0; margin: 0; }
  body.is-demo-theater .player-layout {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  body.is-demo-theater .player-layout.wrap { padding-left: 0; padding-right: 0; }
  body.is-demo-theater .player-cabinet {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #000;
    box-shadow: none;
  }
  body.is-demo-theater .player-cabinet::before,
  body.is-demo-theater .player-cabinet::after,
  body.is-demo-theater .player-cabinet .neon-topper,
  body.is-demo-theater .player-cabinet .neon-lever,
  body.is-demo-theater .player-cabinet .neon-controls,
  body.is-demo-theater .player-cabinet .neon-now,
  body.is-demo-theater .player-cabinet .cabinet-legal {
    display: none !important;
  }
  body.is-demo-theater .player-cabinet .neon-body-player {
    display: block;
  }
  body.is-demo-theater .player-cabinet .neon-screen-player {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #000;
  }
  body.is-demo-theater .player-cabinet .neon-screen-player::after { display: none; }
  body.is-demo-theater .player-stage {
    position: fixed;
    inset: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #000;
  }
  body.is-demo-theater .demo-frame { position: absolute; inset: 0; }
  body.is-demo-theater .demo-theater-bar { display: flex; }
  body.is-demo-theater .gift-fab { display: none; }
  body.is-demo-theater .demo-widget-host,
  body.is-demo-theater .demo-widget-host .freedemo-game-widget { height: 100%; }
}

@media (max-width: 700px) {
  :root { --wrap: calc(100% - 1.1rem); }

  .game-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .6rem; }
  .neon-topper { padding: .5rem .6rem; }
  .neon-controls { padding: .6rem .5rem .45rem; }
  /* Spin outranks the secondary link once the controls stack. */
  .neon-spin { order: -1; min-width: 100%; }
  .neon-bet { flex: 1 1 100%; min-width: 0; min-height: 44px; }

  .usp-ribbon { gap: .5rem .9rem; padding: .75rem .9rem; }
  .usp-item { flex: 1 1 100%; }

  /* 18 locales cannot fit beside a phone header: drop a full-width sheet. */
  .lang-switch ul {
    position: fixed;
    left: .5rem;
    right: .5rem;
    width: auto;
    max-width: none;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

  .player-stage,
  .preplay { min-height: 400px; }
  .btn-demo { min-width: 100%; }

  .section-head { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .offer-modal { width: calc(100% - 1rem); padding: 1.2rem 1.1rem; }
  .prose, .seo-prose { max-width: none; }
}

@media (max-width: 560px) {
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-hero { font-size: min(1.7rem, 6.2vw); }

  .neon-cabinet { padding: .7rem; border-radius: 18px; }
  .neon-body { grid-template-columns: 46px minmax(0, 1fr); }
  .neon-lever { width: 46px; height: 120px; }
  .neon-lever-ball { width: 28px; height: 28px; }
  .neon-lever-shaft { width: 8px; height: 58px; }
  .neon-lever-base { width: 34px; height: 13px; }
  .reel-grid { gap: .2rem; }
  .reel-cell { border-radius: 7px; min-height: 34px; }
  .neon-topper-win,
  .neon-topper-play { font-size: .95rem; letter-spacing: .06em; }

  .casino-card { flex-basis: min(210px, 82vw); }
  .casino-row-actions { grid-auto-flow: row; }
  .cockpit-side { grid-template-columns: minmax(0, 1fr); }
  .filters { padding: .7rem; }
  .filters input,
  .filters select { flex: 1 1 100%; }
  .contact-form { padding: 1rem; }
  .attr-table th { width: 48%; }
}

/* --------------------------------------------------------------------------
   19. Reduced motion + print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  body::before,
  body::after,
  .eyebrow::before,
  .gift-fab,
  .jackpot-value,
  .neon-topper-win,
  .neon-topper-play,
  .hud-value.hud-blink,
  .age-gate-blink,
  .arcade-marquee-track,
  .demo-theater-gift svg,
  .neon-cabinet.is-spinning .reel-cell .sym,
  .neon-cabinet.is-pulled .reel-cell .sym,
  .neon-lever.is-pulled,
  .cabinet-lever.is-pulled { animation: none !important; }

  .btn:hover,
  .game-card:hover,
  .provider-card:hover,
  .provider-chip:hover,
  .casino-card:hover,
  .guide-card:hover,
  .blog-card:hover,
  .theme-card:hover,
  .lane-chip:hover { transform: none; }
}

@media print {
  body {
    background: #fff;
    color: #000;
  }
  body::before,
  body::after,
  .site-header,
  .site-footer,
  .neon-cabinet,
  .player-stage,
  .fav-btn,
  .gift-fab,
  .offer-modal,
  .usp-ribbon,
  .filters,
  .pager { display: none !important; }
  a { color: #000; text-decoration: underline; }
  .prose, .seo-prose { max-width: none; color: #000; }
}
