/* ═══════════════════════════════════════════════════════════
   SlotExplorer Design System — main.css
   Tokens → Reset → Typography → Components → Templates
═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --ground:    #070605;
  --surface:   #100e0c;
  --surface2:  #181614;
  --surface3:  #1e1c18;
  --border:    rgba(249, 115, 22, 0.16);
  --border2:   rgba(249, 115, 22, 0.32);
  --text:      #fafaf8;
  --muted:     rgba(250, 250, 248, 0.44);
  --accent:    #f97316;
  --amber:     #f59e0b;
  --danger:    #ef4444;

  --glow-sm:   0 0 14px rgba(249, 115, 22, 0.22);
  --glow-md:   0 0 32px rgba(249, 115, 22, 0.40);
  --glow-lg:   0 0 90px rgba(249, 115, 22, 0.16);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --nav-h:     60px;
  --sidebar-w: 264px;
  --mono:      'Cascadia Code', 'SF Mono', ui-monospace, monospace;
  --font-body: 'Mulish', system-ui, sans-serif;
  --font-ui:   'Rajdhani', system-ui, sans-serif;
  --font-disp: 'Space Grotesk', system-ui, sans-serif;

  --transition: 0.18s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  background: var(--ground);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-disp); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; text-transform: capitalize; }
h1 { font-size: clamp(36px, 6vw, 76px); }
h2 { font-size: clamp(24px, 3.5vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
p  { color: var(--muted); line-height: 1.7; }

/* ── Containers ── */
.se-container         { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.se-container--narrow { max-width: 820px; }

/* ══════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════ */
.se-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(7, 6, 5, 0.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.se-nav__inner {
  max-width: 1280px; margin: 0 auto;
  height: 100%; padding: 0 40px;
  display: flex; align-items: center; gap: 28px;
}
.se-nav__logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  text-decoration: none;
}
.se-nav__logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  box-shadow: var(--glow-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.se-nav__logo-mark .se-logo-mark { width: 100%; height: 100%; display: block; }
.se-nav__logo-text { font-family: var(--font-disp); font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.se-nav__links { flex: 1; }
.se-nav__menu  { display: flex; gap: 2px; }
.se-nav__menu li a, .se-nav__menu a {
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  color: var(--muted); padding: 6px 14px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.se-nav__menu li a:hover, .se-nav__menu a:hover,
.se-nav__menu .current-menu-item a { color: var(--text); background: rgba(249,115,22,.08); }

/* Dropdown */
.se-nav__menu > li { position: relative; }
.se-nav__menu > li > ul {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 170px; z-index: 200;
  padding: 4px 0; box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.se-nav__menu > li:hover > ul { display: block; }
.se-nav__menu > li > ul > li > a {
  display: block; padding: 9px 16px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  border-radius: 0; background: none;
}
.se-nav__menu > li > ul > li > a:hover { color: var(--text); background: rgba(249,115,22,.08); }

.se-nav__right { margin-left: auto; display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.se-nav__live  { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.se-nav__live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 6px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.2} }
.se-nav__burger { display: none; flex-direction: column; gap: 5px; padding: 7px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.se-nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: var(--transition); }
.se-nav__mobile { position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 40px; z-index: 190; max-height: calc(100vh - var(--nav-h)); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.se-nav__mobile-menu li a { display: block; padding: 12px 0; font-family: var(--font-ui); font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--border); }
.se-nav__cta { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════ */
.se-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  background: var(--accent); color: var(--ground);
  font-family: var(--font-ui); font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: var(--glow-sm); border: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.se-btn-primary:hover { box-shadow: var(--glow-md); transform: translateY(-2px); }

.se-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  background: transparent; color: var(--text);
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}
.se-btn-ghost:hover { border-color: var(--border2); background: rgba(249,115,22,.06); }
.se-btn-ghost--sm { padding: 8px 16px; font-size: 13px; }

/* ══════════════════════════════════════════════════════════
   BADGES / PILLS / TAGS
══════════════════════════════════════════════════════════ */
.se-badge {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
.se-badge--popular { border: 1px solid var(--accent); color: var(--accent); background: rgba(249,115,22,.10); }
.se-badge--new     { border: 1px solid var(--amber);  color: var(--amber);  background: rgba(245,158,11,.10); }
.se-badge--mech    { border: 1px solid var(--border); color: var(--muted);  background: var(--surface2); }

.se-pill {
  display: inline-block; padding: 7px 16px; border-radius: 100px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); color: var(--muted); background: var(--surface2);
  transition: all var(--transition);
}
.se-pill:hover   { border-color: var(--border2); color: var(--text); }
.se-pill.is-active, .se-pill.is-on { border-color: var(--accent); color: var(--accent); background: rgba(249,115,22,.10); box-shadow: var(--glow-sm); }
.se-pill--sm { padding: 3px 10px; font-size: 11px; }

.se-tag {
  display: inline-block; padding: 4px 10px; border-radius: var(--radius-sm);
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  border: 1px solid var(--border); color: var(--muted);
  transition: all var(--transition);
}
.se-tag:hover { border-color: var(--accent); color: var(--accent); }
.se-tag.is-on { border-color: var(--accent); color: var(--accent); background: rgba(249,115,22,.1); }

/* ══════════════════════════════════════════════════════════
   HERO (front-page)
══════════════════════════════════════════════════════════ */
.se-hero {
  min-height: 100vh; padding: calc(var(--nav-h) + 80px) 60px 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 90% at 50% 42%,
      rgba(255,122,0,0.24) 0%,
      rgba(255,100,0,0.07) 32%,
      transparent 60%),
    var(--ground);
}
.se-hero__glow { display: none; }
.se-hero__eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.se-hero__eyebrow::before, .se-hero__eyebrow::after {
  content: ''; display: block; width: 36px; height: 1px;
  background: var(--accent); opacity: 0.44;
}
.se-hero__content { position: relative; z-index: 1; max-width: 760px; }
.se-hero__title { margin-bottom: 20px; }
.se-hero__title em { font-style: normal; color: var(--accent); }
.se-hero__sub { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto 36px; }
.se-hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 54px; }

/* ── Shared hero dot-grid + vignette treatment ── */
.se-hero::before,
.se-tax-hero::before,
.se-prov-hero::before,
.se-prio-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(255,170,90,0.16) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}
.se-hero::after,
.se-tax-hero::after,
.se-prov-hero::after,
.se-prio-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  box-shadow: inset 0 0 160px 40px rgba(0,0,0,0.75);
}

/* Hero visual */
.se-hero-visual {
  display: flex; gap: 14px; margin-bottom: 0; flex-wrap: nowrap;
  position: relative; z-index: 1;
}
@media (max-width: 768px) {
  .se-hero-visual { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .se-hero-card { width: 130px; flex-shrink: 0; }
  /* The slot-machine variant must shrink to fit the viewport, not scroll like the card row. */
  /* min-width:0 lets these flex items shrink below the machine's 640px content
     width; without it the cabinet stays 640 and overflows the phone viewport. */
  .se-hero-visual--machine { overflow-x: visible; padding-bottom: 0; width: 100%; min-width: 0; }
  .se-slot-machine { width: 100%; min-width: 0; max-width: 100%; }
}
.se-hero-visual--machine {
  flex-direction: column; align-items: center; gap: 12px;
}

/* ── Three.js slot machine mount ───────────────────────────── */
.se-slot-machine {
  position: relative;
  width: 640px;
  max-width: 100%;
  /* keep the machine's proportions when it shrinks on mobile, so the cabinet art
     and the CREDITS/BET/SPIN overlays stay aligned (no fixed height to distort it) */
  aspect-ratio: 640 / 420;
  border-radius: 14px;
  border: 1px solid rgba(249,115,22,0.2);
  box-shadow: 0 0 48px rgba(249,115,22,0.12), 0 24px 48px rgba(0,0,0,0.6);
  /* overflow visible — Three.js canvas fills the box; DOM overlays must not be clipped */
  overflow: visible;
  background: #0c0a09;
}
.se-slot-machine canvas { display: block; border-radius: 14px; max-width: 100%; }

/* ── CSS placeholder ────────────────────────────────────────── */
.se-sm-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
/* Force-hide when JS marks it hidden — overrides display:flex above */
.se-sm-placeholder[hidden],
.se-sm-placeholder[style*="display: none"],
.se-sm-placeholder[style*="display:none"] {
  display: none !important;
}
.se-sm-reels-wrap {
  display: flex; gap: 8px;
}
.se-sm-reel-window {
  width: 108px; height: 108px;
  background: #141210;
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.se-sm-reel-window--mid {
  border-color: rgba(249,115,22,0.5);
  box-shadow: 0 0 20px rgba(249,115,22,0.15);
}
.se-reel {
  font-size: 52px; line-height: 1;
  display: block; text-align: center;
  transition: none;
}
.se-sm-winline {
  position: absolute; left: 0; right: 0; top: 50%; height: 2px;
  background: rgba(249,115,22,0.35);
  pointer-events: none;
}

/* ── Spin button ────────────────────────────────────────────── */
.se-slot-spin-btn {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 13px; font-weight: 800;
  letter-spacing: 0.18em;
  border: none; border-radius: 6px; padding: 8px 28px;
  cursor: pointer; box-shadow: 0 0 18px rgba(249,115,22,0.45);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
}
.se-slot-spin-btn:hover { box-shadow: 0 0 28px rgba(249,115,22,0.7); transform: translateX(-50%) translateY(-1px); }
.se-slot-spin-btn.is-spinning { opacity: 0.4; pointer-events: none; }

/* ── Hint text ──────────────────────────────────────────────── */
.se-sm-hint {
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  letter-spacing: 0.08em; margin: 0;
}
.se-sm-hint kbd {
  font-family: inherit; border: 1px solid var(--border);
  border-radius: 3px; padding: 1px 5px; font-size: 9px;
}
.se-hero-card {
  position: relative; width: 160px; height: 210px; flex-shrink: 0;
  border-radius: 12px; overflow: hidden;
  background: hsl(var(--splash-h), 40%, 7%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 14px; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.se-hero-card:hover { transform: translateY(-4px); box-shadow: 0 32px 56px rgba(0,0,0,0.6); }
.se-hero-card:nth-child(2) { transform: translateY(-12px); }
.se-hero-card:nth-child(2):hover { transform: translateY(-16px); }
.se-hero-card__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, hsl(var(--splash-h), 55%, 22%) 0%, transparent 65%);
}
.se-hero-card__dots {
  position: absolute; inset: 0; opacity: 0.10;
  background-image: radial-gradient(circle, hsl(var(--splash-h), 65%, 78%) 1px, transparent 1px);
  background-size: 20px 20px;
}
.se-hero-card__prov {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: hsl(var(--splash-h), 60%, 65%);
}
.se-hero-card__title {
  position: relative; z-index: 1;
  font-family: var(--font-disp); font-size: 14px; font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.1; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.se-hero-card__rtp {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: hsl(var(--splash-h), 65%, 68%);
}

/* ══════════════════════════════════════════════════════════
   PILL SECTION (filter bar below hero)
══════════════════════════════════════════════════════════ */
.se-pill-section {
  padding: 36px 40px;
  background: linear-gradient(to bottom, var(--ground), var(--surface));
  border-top: 1px solid var(--border);
}
.se-pill-section__inner { max-width: 1280px; margin: 0 auto; }
.se-pill-strip { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }

/* ══════════════════════════════════════════════════════════
   SECTION FRAME (shared)
══════════════════════════════════════════════════════════ */
.se-section { padding: 56px 40px; max-width: 1280px; margin: 0 auto; }
.se-section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.se-section__title { font-size: clamp(22px, 2.8vw, 36px); }
.se-section__more { font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.se-section__more:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   CARD GRID
══════════════════════════════════════════════════════════ */
.se-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.se-cards-grid--catalog {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Slot Card ── */
.se-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.se-card:hover { border-color: var(--accent); box-shadow: var(--glow-md); transform: translateY(-3px); }

/* Thumbnail is its own link — fills the thumb area */
.se-card__thumb-link { display: block; }
.se-card__thumb {
  height: 160px; position: relative; overflow: hidden; background: var(--surface2);
}
.se-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.se-card__thumb::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, transparent 35%, rgba(7,6,5,.9) 100%);
}
.se-card__thumb-placeholder {
  position: absolute; inset: 0;
  background: hsl(var(--splash-h), 40%, 7%);
}
.se-card__ph-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 72% 38%, hsl(var(--splash-h), 55%, 20%) 0%, transparent 66%);
}
.se-card__ph-dots {
  position: absolute; inset: 0; opacity: 0.10;
  background-image: radial-gradient(circle, hsl(var(--splash-h), 65%, 75%) 1px, transparent 1px);
  background-size: 22px 22px;
}
.se-card__ph-prov {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: hsl(var(--splash-h), 60%, 62%); line-height: 1;
}
.se-card__ph-title {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  font-family: var(--font-disp); font-size: 13px; font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.1; color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.se-card__badges {
  position: absolute; top: 8px; left: 8px; right: 8px; z-index: 2;
  display: flex; gap: 5px; row-gap: 4px; flex-wrap: wrap; align-items: flex-start;
}

.se-card__body { padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }

/* Title link */
.se-card__name-link { display: block; }
.se-card__name { font-family: var(--font-disp); font-size: 14px; font-weight: 800; }

.se-card__rtp { display: flex; flex-direction: column; gap: 4px; }
.se-card__rtp-top { display: flex; justify-content: space-between; }
.se-card__rtp-label { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.se-card__rtp-value { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--amber); }
.se-card__rtp-track { height: 3px; background: var(--surface2); border-radius: 2px; overflow: hidden; }
.se-card__rtp-fill  { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--amber)); box-shadow: 0 0 6px rgba(249,115,22,.5); }

.se-card__foot { display: flex; align-items: center; gap: 8px; }
.se-card__vol-label { font-family: var(--font-ui); font-size: 11px; color: var(--muted); }

/* Action row — Review + Demo buttons */
.se-card__actions {
  display: flex; gap: 6px; margin-top: auto; padding-top: 4px;
}
.se-card__btn {
  flex: 1; text-align: center;
  font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: .03em;
  padding: 7px 0; border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.se-card__btn--review {
  border: 1px solid var(--border2); color: var(--muted);
}
.se-card__btn--review:hover { border-color: var(--accent); color: var(--text); }
.se-card__btn--demo {
  background: var(--accent); color: #fff;
}
.se-card__btn--demo:hover { background: var(--amber); }

/* Volatility dots */
.se-vol-dots { display: flex; gap: 4px; }
.se-vol-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--surface3); }
.se-vol-dot.is-on { background: var(--accent); }

/* ══════════════════════════════════════════════════════════
   CATALOG — SHELL (archive-slot)
══════════════════════════════════════════════════════════ */
.se-catalog-wrap {
  display: flex; min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--surface);
}

/* ── Sidebar ── */
.se-sidebar {
  width: var(--sidebar-w); min-width: var(--sidebar-w);
  background: var(--surface);
  border-right: 1px solid var(--border);
  position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(249,115,22,.018) 3px, rgba(249,115,22,.018) 4px);
}
.se-sidebar::-webkit-scrollbar { width: 3px; }
.se-sidebar::-webkit-scrollbar-thumb { background: var(--border); }

.se-sidebar__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; border-bottom: 1px solid var(--border);
}
.se-sidebar__title { font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.se-sidebar__reset { font-family: var(--font-ui); font-size: 11px; color: var(--muted); }
.se-sidebar__reset:hover { color: var(--accent); }

.se-sidebar__section { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.se-sidebar__label { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }

.se-sidebar__search {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 11px;
  color: var(--text); font-family: var(--font-body); font-size: 13px; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.se-sidebar__search:focus { border-color: var(--accent); box-shadow: var(--glow-sm); }
.se-sidebar__search::placeholder { color: var(--muted); }

.se-sidebar__checks { display: flex; flex-direction: column; gap: 8px; }
.se-sidebar__check {
  display: flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--font-ui); font-size: 13px; color: var(--muted);
  transition: color var(--transition);
}
.se-sidebar__check:hover, .se-sidebar__check.is-on { color: var(--text); }
.se-sidebar__check input { accent-color: var(--accent); cursor: pointer; }
.se-sidebar__count { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--accent); }

.se-sidebar__tags { display: flex; flex-wrap: wrap; gap: 6px; }

.se-sidebar__vol { display: flex; flex-direction: column; gap: 9px; }
.se-sidebar__vol-row {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 13px; color: var(--muted);
  transition: color var(--transition);
}
.se-sidebar__vol-row:hover, .se-sidebar__vol-row.is-on { color: var(--text); }

.se-rtp-slider__input { width: 100%; accent-color: var(--accent); }
.se-rtp-slider__labels { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 6px; }

/* ── Catalog main ── */
.se-catalog-main { flex: 1; min-width: 0; }

.se-catalog-topbar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 12px 22px; border-bottom: 1px solid var(--border);
  background: var(--surface2);
  position: sticky; top: var(--nav-h); z-index: 10;
}
.se-catalog-topbar__count { font-family: var(--font-ui); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.se-sort-strip { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.se-sort-btn {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 5px; border: 1px solid var(--border); color: var(--muted); background: none;
  transition: all var(--transition); cursor: pointer;
}
.se-sort-btn:hover   { color: var(--text); border-color: var(--border2); }
.se-sort-btn.is-on   { color: var(--accent); border-color: var(--accent); background: rgba(249,115,22,.08); }

.se-cards-grid--catalog { padding: 18px 22px; }
.se-empty { grid-column: 1/-1; padding: 48px 0; text-align: center; }
.se-empty p { margin-bottom: 18px; }

/* Pagination */
.se-pagination {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 24px 22px; border-top: 1px solid var(--border);
}
.se-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); color: var(--muted);
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  transition: all var(--transition);
}
.se-pagination .page-numbers:hover     { border-color: var(--border2); color: var(--text); }
.se-pagination .page-numbers.current   { border-color: var(--accent); color: var(--accent); background: rgba(249,115,22,.1); }
.se-pagination .prev, .se-pagination .next { width: auto; padding: 0 14px; }

/* ══════════════════════════════════════════════════════════
   SINGLE SLOT REVIEW
══════════════════════════════════════════════════════════ */

/* Scroll progress — thin bar under nav, fills orange as you read */
.se-review-progress {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--amber));
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 300;
  pointer-events: none;
  will-change: transform;
}

.se-review { padding-top: var(--nav-h); }

.se-review__section {
  min-height: 100vh; display: flex; align-items: stretch;
  border-bottom: 1px solid var(--border);
}

/* Hero — full viewport height, left image / right content */
.se-review__section--hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
}
.se-review__hero-thumb { position: relative; overflow: hidden; }
.se-review__hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.se-review__thumb-placeholder {
  width: 100%; height: 100%; min-height: 480px;
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
}
.se-review__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ground) 100%);
}
.se-review__hero-content {
  padding: 60px 48px; display: flex; flex-direction: column; gap: 18px; justify-content: center;
}
.se-review__breadcrumb { font-family: var(--font-ui); font-size: 12px; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; }
.se-review__breadcrumb a:hover { color: var(--accent); }
.se-review__title { font-size: clamp(28px, 4vw, 52px); }
.se-review__provider { font-family: var(--font-ui); font-size: 14px; color: var(--muted); }
.se-review__provider a:hover { color: var(--accent); }

.se-review__stats { display: flex; gap: 20px; flex-wrap: wrap; }
.se-stat { display: flex; flex-direction: column; gap: 5px; min-width: 100px; }
.se-stat__label { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.se-stat__value { font-family: var(--font-ui); font-size: 22px; font-weight: 700; }
.se-stat__value--accent { color: var(--accent); }
.se-stat__value--amber  { color: var(--amber);  }
.se-stat__bar { height: 3px; background: var(--surface2); border-radius: 2px; overflow: hidden; margin-top: 2px; }
.se-stat__bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--amber)); }

/* Overview / body sections */
.se-review__section--overview,
.se-review__section--demo,
.se-review__section--casinos { background: var(--surface); }
.se-review__section-inner {
  max-width: 880px; margin: 0 auto; padding: 72px 40px;
  width: 100%;
}
.se-section-label {
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.se-review__section-title { margin-bottom: 14px; }
.se-review__section-sub { margin-bottom: 28px; }
.se-review__body { color: var(--text); line-height: 1.75; }
.se-review__body p + p { margin-top: 16px; }
.se-review__body h2, .se-review__body h3 { margin: 32px 0 12px; }

/* Spec table */
.se-spec-table {
  background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px; margin-top: 32px;
}
.se-spec-table__title { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.se-spec-table__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.se-spec-row { display: flex; flex-direction: column; gap: 3px; background: var(--surface2); padding: 12px 16px; }
.se-spec-row__label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.se-spec-row__value { font-family: var(--font-ui); font-size: 15px; font-weight: 600; }

/* Demo */
.se-demo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.se-demo iframe { width: 100%; height: 500px; display: block; border: none; }
/* Click-to-play facade — iframe injected on click (see main.js seLaunchDemo) */
.se-demo--facade {
  position: relative; min-height: 500px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: radial-gradient(circle at 50% 38%, rgba(249,115,22,.12), transparent 60%), var(--surface2);
}
.se-demo--facade.is-playing { min-height: 0; display: block; cursor: default; background: none; }
.se-demo__launch {
  display: inline-flex; align-items: center; gap: 14px; padding: 15px 28px;
  border: none; border-radius: 999px; cursor: pointer; background: var(--accent); color: #0a0a08;
  font-family: var(--font-ui); font-weight: 700;
  box-shadow: 0 10px 30px -8px rgba(249,115,22,.5);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.se-demo__launch:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -8px rgba(249,115,22,.65); background: var(--amber); }
.se-demo__launch:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.se-demo__play-icon { display: inline-flex; }
.se-demo__play-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.se-demo__play-label { font-size: 15px; letter-spacing: .06em; text-transform: uppercase; }
.se-demo__play-sub { font-size: 11px; font-weight: 600; opacity: .8; letter-spacing: 0; text-transform: none; }
.se-demo__note { margin: 0; padding: 10px 16px; font-size: 12px; color: rgba(255,255,255,.6); text-align: center; }
.se-demo-gate {
  background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.se-demo-gate__icon { font-size: 36px; }
.se-demo-gate__msg { max-width: 480px; }
.se-demo-blocked { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.se-demo--unavailable { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.se-dob-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.se-dob-form input[type=date] {
  background: var(--surface3); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px; color: var(--text); font-family: var(--font-body); font-size: 14px; outline: none;
}
.se-dob-form input[type=date]:focus { border-color: var(--accent); }

/* Casino list */
.se-casino-list { display: flex; flex-direction: column; gap: 10px; }
.se-casino-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 14px 18px; background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius);
}
.se-casino-row__name  { font-family: var(--font-ui); font-size: 15px; font-weight: 700; flex: 1; }
.se-casino-row__bonus { font-size: 13px; color: var(--muted); flex: 1; }
.se-cta-wrap { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }

/* Mechanic pills */
.se-mechanic-pills { display: flex; flex-wrap: wrap; gap: 6px; }

/* ══════════════════════════════════════════════════════════
   NEW SLOTS STRIP
══════════════════════════════════════════════════════════ */
.se-new-list { display: flex; flex-direction: column; gap: 6px; }
.se-new-item {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}
.se-new-item:hover { border-color: rgba(245,158,11,.35); }
.se-new-item__date { font-family: var(--mono); font-size: 10px; color: var(--amber); min-width: 44px; }
.se-new-item__name { font-family: var(--font-ui); font-size: 14px; font-weight: 700; flex: 1; }
.se-new-item__prov { font-size: 12px; color: var(--muted); }
.se-new-item__rtp  { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); }

/* ── New Slots page — date groups ── */
.se-ns-group { margin-bottom: 48px; }

.se-ns-date-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}

/* Mini calendar chip */
.se-ns-date-chip {
  display: flex; flex-direction: column; align-items: center;
  width: 46px; border-radius: 7px; overflow: hidden;
  border: 1px solid rgba(249,115,22,0.28); flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.se-ns-date-chip__month {
  background: var(--accent); color: #000;
  font-family: var(--mono); font-size: 9px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; text-align: center;
  width: 100%; padding: 3px 0;
}
.se-ns-date-chip__day {
  background: var(--surface2); color: var(--text);
  font-family: var(--font-ui); font-size: 22px; font-weight: 700;
  text-align: center; width: 100%; padding: 4px 0 5px; line-height: 1;
}

/* Date label area */
.se-ns-date-meta {
  display: flex; flex-direction: column; gap: 1px;
}
.se-ns-date-meta__weekday {
  font-family: var(--font-ui); font-size: 14px; font-weight: 700;
  color: var(--text); letter-spacing: 0.01em;
}
.se-ns-date-meta__full {
  font-family: var(--font-ui); font-size: 11px;
  color: var(--muted); font-weight: 500; letter-spacing: 0.02em;
}

/* Slot count badge */
.se-ns-date-count {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.06em;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.18);
  border-radius: 12px; padding: 2px 9px; white-space: nowrap;
}

.se-ns-date-header__line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(249,115,22,0.2), transparent);
}

/* ══════════════════════════════════════════════════════════
   MECHANIC HUB
══════════════════════════════════════════════════════════ */
.se-mechanic-hub {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.se-mechanic-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 20px 18px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.se-mechanic-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 0%, hsl(var(--mech-hue, 25deg) 55% 18%) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.3s;
}
.se-mechanic-card:hover { border-color: rgba(249,115,22,.5); box-shadow: var(--glow-sm); transform: translateY(-2px); }
.se-mechanic-card:hover::before { opacity: 1; }
.se-mechanic-card__icon {
  color: var(--accent); position: relative; z-index: 1;
  width: 32px; height: 32px;
}
.se-mechanic-card__name {
  font-family: var(--font-disp); font-size: 15px; font-weight: 800;
  color: var(--text); line-height: 1.2; position: relative; z-index: 1;
}
.se-mechanic-card__count {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); position: relative; z-index: 1;
}
@media (max-width: 768px) {
  .se-mechanic-hub { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   PROVIDER PAGES
══════════════════════════════════════════════════════════ */
.se-providers-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px;
  padding: 32px 40px; max-width: 1280px; margin: 0 auto;
}
.se-provider-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 16px; align-items: flex-start;
  transition: all var(--transition);
}
.se-provider-card:hover { border-color: var(--accent); box-shadow: var(--glow-sm); transform: translateY(-2px); }
.se-provider-card__logo { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--surface2); }
.se-provider-card__logo img { width: 100%; height: 100%; object-fit: contain; }
.se-provider-card__logo--text { display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-size: 18px; font-weight: 900; color: var(--accent); }
.se-provider-card__body { display: flex; flex-direction: column; gap: 6px; }
.se-provider-card__name { font-family: var(--font-ui); font-size: 16px; font-weight: 700; }
.se-provider-card__meta { display: flex; flex-wrap: wrap; gap: 6px; }
.se-provider-card__meta span { font-size: 12px; color: var(--muted); }

.se-provider-page { padding-top: var(--nav-h); }
.se-provider-page__header {
  display: flex; gap: 28px; align-items: flex-start;
  max-width: 960px; margin: 0 auto; padding: 52px 40px 36px;
}
.se-provider-page__logo { width: 90px; height: 90px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: var(--surface2); border: 1px solid var(--border); }
.se-provider-page__logo img { width: 100%; height: 100%; object-fit: contain; }
.se-provider-page__meta { display: flex; flex-direction: column; gap: 10px; }
.se-provider-page__title { font-size: clamp(24px, 4vw, 48px); }
.se-provider-page__stats { display: flex; gap: 14px; flex-wrap: wrap; }
.se-provider-page__stats span { font-family: var(--font-ui); font-size: 14px; color: var(--muted); }
.se-provider-page__body { max-width: 960px; margin: 0 auto; padding: 0 40px 48px; color: var(--text); line-height: 1.75; }
.se-provider-page__slots { max-width: 1280px; margin: 0 auto; padding: 0 40px 60px; }
.se-provider-page__slots .se-section__title { margin-bottom: 22px; }

/* ══════════════════════════════════════════════════════════
   RG / LEGAL NOTICE
══════════════════════════════════════════════════════════ */
.se-rg {
  font-size: 11px; color: var(--muted); line-height: 1.5;
}
.se-rg a { color: var(--muted); text-decoration: underline; }
.se-rg a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   STATIC PAGE
══════════════════════════════════════════════════════════ */
.se-main--page { position: relative; padding: 52px 40px 72px; }
.se-page-hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 44px; }
.se-page-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.se-slot-sym {
  position: absolute; opacity: 0.25;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.se-page-content { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.se-page-content__title { margin-bottom: 28px; }
.se-page-content__body { color: var(--text); line-height: 1.8; }
.se-page-content__body p + p   { margin-top: 16px; }
.se-page-content__body h2, .se-page-content__body h3 { margin: 32px 0 12px; }

/* ══════════════════════════════════════════════════════════
   CURTAIN TRANSITION — game-style page wipe
══════════════════════════════════════════════════════════ */
#se-curtain-top, #se-curtain-bot {
  position: fixed; left: 0; right: 0; height: 51vh;
  z-index: 9000; pointer-events: none;
  background-color: #030202;
  background-image: radial-gradient(circle, rgba(249,115,22,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  will-change: transform;
}
#se-curtain-top {
  top: 0;
  border-bottom: 1px solid rgba(249,115,22,0.50);
  box-shadow: 0 8px 60px rgba(249,115,22,0.14);
}
#se-curtain-bot {
  bottom: 0;
  border-top: 1px solid rgba(249,115,22,0.50);
  box-shadow: 0 -8px 60px rgba(249,115,22,0.14);
}
#se-curtain-hud {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9100; text-align: center; width: 360px; pointer-events: none;
}
.se-hud-logo {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; opacity: 0.7;
}
.se-hud-title {
  font-family: var(--font-disp); font-size: clamp(17px, 2.8vw, 26px); font-weight: 900;
  letter-spacing: -0.02em; color: var(--text); margin-bottom: 18px; line-height: 1.1;
}
.se-hud-bar-wrap {
  height: 2px; background: rgba(249,115,22,0.15);
  border-radius: 2px; overflow: hidden; margin-bottom: 10px;
}
.se-hud-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--amber));
}
.se-hud-status {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   GAME MENU — single slot review layout
══════════════════════════════════════════════════════════ */

/* Blinking cursor animation */
@keyframes se-blink { 50% { opacity: 0; } }

/* Lock scroll when on a review page */
body.is-slot-review { overflow: hidden; height: 100vh; }

/* ── Splash banner (overview panel hero) ────────────────── */
.se-gm-splash {
  position: relative; width: 100%; height: 190px;
  border-radius: 10px; overflow: hidden; flex-shrink: 0;
  margin-bottom: 18px;
  background: hsl(var(--splash-h), 42%, 7%);
}
.se-gm-splash__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 35%, hsl(var(--splash-h), 58%, 22%) 0%, transparent 68%);
}
.se-gm-splash__dots {
  position: absolute; inset: 0; opacity: 0.12;
  background-image: radial-gradient(circle, hsl(var(--splash-h), 70%, 75%) 1px, transparent 1px);
  background-size: 26px 26px;
}
.se-gm-splash__img {
  position: absolute;
  right: 0; top: 0; bottom: 0; left: auto;
  height: 100%; width: auto;
  object-fit: cover; object-position: center;
  opacity: 0.90; display: block;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.75) 12%, black 28%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.75) 12%, black 28%);
}
.se-gm-splash__top {
  position: absolute; top: 16px; left: 20px; right: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.se-gm-splash__provider {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: hsl(var(--splash-h), 65%, 68%);
}
.se-gm-splash__year {
  font-family: var(--mono); font-size: 9px; color: rgba(255,255,255,0.28);
}
.se-gm-splash__bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
}
.se-gm-splash__title {
  font-family: var(--font-disp); font-size: clamp(17px, 2vw, 24px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5); flex: 1;
}
.se-gm-splash__mech {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; flex-shrink: 0;
  color: hsl(var(--splash-h), 65%, 68%); white-space: nowrap;
}

/* ── Overview spec strip ─────────────────────────────────── */
.se-gm-ov-specs {
  display: flex; gap: 0; margin-bottom: 20px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.se-gm-ov-spec {
  flex: 1; padding: 11px 14px; display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--border);
}
.se-gm-ov-spec:last-child { border-right: none; }
.se-gm-ov-spec__val {
  font-family: var(--font-ui); font-size: 15px; font-weight: 700; line-height: 1;
}
.se-gm-ov-spec__val--accent { color: var(--accent); }
.se-gm-ov-spec__val--amber  { color: var(--amber); }
.se-gm-ov-spec__key {
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
/* On narrow screens let the strip wrap (up to 5 cells incl. Our Score) instead of cramming one row */
@media (max-width: 768px) {
  .se-gm-ov-specs { flex-wrap: wrap; }
  .se-gm-ov-spec { flex: 1 1 33%; min-width: 96px; border-bottom: 1px solid var(--border); }
  .se-gm-ov-spec__val { white-space: nowrap; }
}

/* ── Overview tags row ───────────────────────────────────── */
.se-gm-ov-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.se-gm-ov-tags .se-mechanic-pills,
.se-gm-ov-tags .se-theme-pills,
.se-gm-ov-tags .se-bonus-pills { display: contents; }
.se-pill--theme {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: 100px;
  border: 1px solid rgba(245,158,11,0.30); color: var(--amber);
  background: rgba(245,158,11,0.07); transition: background 0.15s;
}
.se-pill--theme:hover { background: rgba(245,158,11,0.15); }
.se-pill--bonus {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: 100px;
  border: 1px solid rgba(250,250,248,0.16); color: var(--muted);
  background: rgba(250,250,248,0.04); transition: background 0.15s;
}
.se-pill--bonus:hover { background: rgba(250,250,248,0.09); }

/* ── Demo unavailable splash ─────────────────────────────── */
.se-gm-demo-unavail {
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  padding: 0 0 28px;
}
.se-gm-demo-unavail__splash {
  position: relative; width: 100%; height: 140px; border-radius: 10px;
  overflow: hidden; background: hsl(var(--splash-h), 42%, 7%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.se-gm-demo-unavail__icon {
  position: relative; z-index: 1;
  font-size: 40px; color: rgba(255,255,255,0.4);
}
.se-gm-demo-unavail p { font-size: 14px; color: var(--muted); max-width: 420px; }
.se-gm-demo-unavail strong { color: var(--text); }

/* ── Related slots in Game Data panel ────────────────────── */
.se-gm-more {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border);
}
.se-gm-more__label {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.se-gm-related {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.se-gm-related__card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 14px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.se-gm-related__card:hover { border-color: var(--border2); }
.se-gm-related__name {
  font-family: var(--font-ui); font-size: 13px; font-weight: 700; color: var(--text);
}
.se-gm-related__rtp {
  font-family: var(--mono); font-size: 10px; color: var(--accent);
}

/* Root game menu container */
.se-gm {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 290px 1fr;
}

/* ── LEFT column — persistent HUD ─────────────────────── */
.se-gm__left {
  display: flex; flex-direction: column; gap: 0;
  padding: 22px 26px 18px;
  background: var(--surface);
  border-right: 1px solid rgba(249,115,22,0.22);
  overflow-y: auto;
  scrollbar-width: none;
}
.se-gm__left::-webkit-scrollbar { display: none; }

.se-gm__back {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--muted);
  margin-bottom: 20px; display: block;
  transition: color var(--transition);
}
.se-gm__back:hover { color: var(--accent); }

/* Identity */
.se-gm__identity { margin-bottom: 18px; }
.se-gm__badge {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 8px;
}
.se-gm__title {
  font-family: var(--font-disp); font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--text); margin-bottom: 6px;
}
.se-gm__sub {
  font-family: var(--font-ui); font-size: 12px; color: var(--muted);
}
.se-gm__sub a:hover { color: var(--accent); }

/* Quick stats */
.se-gm__stats {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.se-gm-stat { display: flex; flex-direction: column; gap: 5px; }
.se-gm-stat__row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.se-gm-stat__key {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.se-gm-stat__val {
  font-family: var(--font-ui); font-size: 16px; font-weight: 700; line-height: 1;
}
.se-gm-stat__val--accent { color: var(--accent); }
.se-gm-stat__val--amber  { color: var(--amber); }
.se-gm-stat__bar  { height: 3px; background: rgba(249,115,22,0.10); border-radius: 2px; overflow: hidden; }
.se-gm-stat__fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--amber)); border-radius: 2px; }

/* Vol dots inside left column */
.se-gm__left .se-vol-dots { display: flex; gap: 4px; }
.se-gm__left .se-vol-dot {
  width: 10px; height: 3px; border-radius: 2px;
  background: rgba(249,115,22,0.14);
}
.se-gm__left .se-vol-dot.is-on { background: var(--accent); }

/* Horizontal rule */
.se-gm__rule {
  height: 1px; background: rgba(249,115,22,0.18); margin: 14px 0;
  flex-shrink: 0;
}

/* ── Menu cursor items ─────────────────────────────────── */
.se-gm__menu {
  display: flex; flex-direction: column; gap: 2px; margin-bottom: auto;
}
.se-gm__item {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 4px 10px 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250,250,248,0.30);
  background: none; cursor: pointer; text-align: left;
  border: none; border-left: 2px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: color 0.12s, background 0.12s, border-color 0.12s;
}
.se-gm__item:hover {
  color: rgba(250,250,248,0.65);
  background: rgba(249,115,22,0.05);
}
.se-gm__item.is-active {
  color: var(--accent);
  background: rgba(249,115,22,0.09);
  border-left-color: var(--accent);
}
/* Blinking cursor — only visible on active item */
.se-gm__cursor {
  font-size: 10px; color: var(--accent);
  opacity: 0; flex-shrink: 0; width: 12px;
  display: inline-block;
}
.se-gm__item.is-active .se-gm__cursor {
  opacity: 1;
  animation: se-blink 0.9s step-end infinite;
}

/* Navigation hint */
.se-gm__hint {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(250,250,248,0.18);
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(249,115,22,0.10);
  flex-shrink: 0;
}

/* ── RIGHT column — content panels ───────────────────── */
.se-gm__right {
  position: relative;
  background: radial-gradient(ellipse at 70% 18%, rgba(249,115,22,0.07) 0%, transparent 55%),
              var(--ground);
  overflow: hidden;
}
.se-gm__right::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.048) 2px, rgba(0,0,0,0.048) 4px);
}

.se-gm-panel {
  position: absolute; inset: 0;
  padding: 32px 52px 32px 48px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.2s ease;
  scrollbar-width: thin; scrollbar-color: rgba(249,115,22,0.2) transparent;
}
.se-gm-panel::-webkit-scrollbar { width: 3px; }
.se-gm-panel::-webkit-scrollbar-thumb { background: rgba(249,115,22,0.2); border-radius: 2px; }
.se-gm-panel.is-active { opacity: 1; pointer-events: auto; }

.se-gm-panel__label {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.se-gm-panel__label::before {
  content: ''; display: block; width: 14px; height: 1px; background: var(--accent);
}
.se-gm-panel__title {
  font-family: var(--font-disp); font-size: clamp(22px, 3.2vw, 48px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--text); margin-bottom: 20px; max-width: 720px;
}
.se-gm-panel__title small { font-size: 0.5em; opacity: 0.5; font-weight: 700; display: block; }
.se-gm-panel__intro { font-size: 14px; line-height: 1.78; color: var(--muted); margin-bottom: 18px; max-width: 660px; }
.se-gm-panel__body { font-size: 14px; line-height: 1.78; color: var(--muted); max-width: 660px; }
.se-gm-panel__body p + p { margin-top: 13px; }
.se-gm-panel__body h2, .se-gm-panel__body h3 { font-size: 1.1em; margin: 22px 0 8px; color: var(--text); }

/* Panel CTA buttons */
.se-gm-panel__ctas { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.se-gm-btn {
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: 6px; cursor: pointer; border: none;
  letter-spacing: 0.03em; transition: all 0.18s;
}
.se-gm-btn--primary { background: var(--accent); color: #fff; }
.se-gm-btn--primary:hover { background: var(--amber); }
.se-gm-btn--accent {
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.30);
  color: var(--accent);
}
.se-gm-btn--accent:hover { background: rgba(249,115,22,0.22); }
.se-gm-btn--ghost {
  background: transparent; border: 1px solid var(--border2); color: var(--muted);
}
.se-gm-btn--ghost:hover { border-color: var(--accent); color: var(--text); }

/* Mechanic pills in panel */
.se-gm-panel .se-mechanic-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
.se-gm-panel .se-pill {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: 100px;
  border: 1px solid rgba(249,115,22,0.30); color: var(--accent);
  background: rgba(249,115,22,0.07); transition: background 0.15s;
}
.se-gm-panel .se-pill:hover { background: rgba(249,115,22,0.15); }

/* Spec table (Game Data panel) */
.se-gm-spec {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  margin-bottom: 28px;
}
.se-gm-spec__row {
  display: flex; align-items: center; gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.se-gm-spec__row:last-child { border-bottom: none; }
.se-gm-spec__row:hover { background: rgba(249,115,22,0.04); }
.se-gm-spec__key {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted); min-width: 130px; flex-shrink: 0;
}
.se-gm-spec__val {
  font-family: var(--font-ui); font-size: 15px; font-weight: 700; color: var(--text);
}
.se-gm-spec__val--accent { color: var(--accent); }
.se-gm-spec__val--amber  { color: var(--amber); }
.se-gm-spec__val-link {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid rgba(249,115,22,0.35);
  transition: border-color var(--transition), color var(--transition);
}
.se-gm-spec__val-link:hover { color: var(--accent); border-bottom-color: var(--accent); }
.se-bet-secondary { font-size: 12px; font-weight: 400; color: var(--muted); margin-left: 6px; }

/* Bonus panel (Game Data right column) */
.se-bonus-panel { display: flex; flex-direction: column; gap: 18px; }
.se-bonus-panel__label {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.se-bonus-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.se-bonus-tag {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  color: var(--text); text-decoration: none;
  padding: 5px 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color var(--transition), color var(--transition);
}
.se-bonus-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Buy Bonus card */
.se-buy-bonus {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.se-buy-bonus__head { display: flex; align-items: center; gap: 10px; }
.se-buy-bonus__badge {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #0a0805; background: var(--amber);
  padding: 3px 8px; border-radius: 4px;
}
.se-buy-bonus__avail {
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  color: var(--amber);
}
.se-buy-bonus__cost {
  display: flex; align-items: baseline; gap: 8px;
}
.se-buy-bonus__cost-label {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.se-buy-bonus__cost-val {
  font-family: var(--font-ui); font-size: 20px; font-weight: 700;
  color: var(--amber); letter-spacing: -0.01em;
}
.se-buy-bonus__note {
  font-size: 11px; line-height: 1.5; color: var(--muted);
}

/* Bonus round description */
.se-bonus-desc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.se-bonus-desc__label {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.se-bonus-desc__text {
  font-size: 13px; line-height: 1.7; color: var(--text);
}

/* Demo panel casino block */
.se-demo-casinos { margin-top: 28px; }
.se-rg-note { font-size: 11px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.se-rg-note a { color: var(--muted); }
.se-rg-note a:hover { color: var(--text); }

/* Details two-column grid */
.se-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.se-details-left { min-width: 0; }
.se-details-right { min-width: 0; }

/* Casino cards section label */
.se-casinos-section__label {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}

/* Casino cards */
.se-casino-cards { display: flex; flex-direction: column; gap: 12px; }
.se-casino-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color var(--transition);
}
.se-casino-card:hover { border-color: var(--border2); }
.se-casino-card__head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  min-height: 32px;
}
.se-casino-card__logo {
  height: 28px; width: auto; max-width: 120px;
  object-fit: contain; object-position: left center;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
  opacity: 0.9;
}
.se-casino-card__name {
  font-family: var(--font-disp); font-size: 15px; font-weight: 700;
  color: var(--text); letter-spacing: -0.01em;
}
.se-casino-card__rating {
  font-family: var(--font-ui); font-size: 14px; font-weight: 700;
  color: var(--amber);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 6px;
  padding: 2px 8px;
  flex-shrink: 0;
}
.se-casino-card__stats {
  display: flex; gap: 0;
  background: var(--ground);
  border: 1px solid var(--border);
  border-radius: 7px; overflow: hidden;
}
.se-casino-card__stat {
  flex: 1; padding: 8px 10px;
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--border);
}
.se-casino-card__stat:last-child { border-right: none; }
.se-casino-card__stat-val {
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  color: var(--text); line-height: 1;
}
.se-casino-card__stat-key {
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted);
}
.se-casino-card__bonus {
  font-size: 12px; line-height: 1.4; color: var(--muted);
  padding: 8px 10px;
  background: rgba(249,115,22,0.04);
  border: 1px solid rgba(249,115,22,0.12);
  border-radius: 6px;
}
.se-casino-card__cta {
  display: block; text-align: center;
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  padding: 9px 14px;
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 7px;
  transition: background var(--transition), border-color var(--transition);
}
.se-casino-card__cta:hover {
  background: rgba(249,115,22,0.1);
  border-color: var(--accent);
}

/* Demo panel */
.se-gm-demo { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; margin-top: 14px; }
.se-gm-demo iframe { width: 100%; height: 440px; display: block; border: none; }
.se-gm-demo-unavail {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding: 28px 0; font-size: 14px; color: var(--muted);
}
.se-gm-demo-unavail__icon { font-size: 36px; }

/* Casino cards */
.se-gm-casinos { display: flex; flex-direction: column; gap: 7px; margin: 14px 0; }
.se-gm-casino {
  display: flex; align-items: center; gap: 12px;
  background: rgba(12,10,8,0.72); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 15px; transition: border-color var(--transition);
}
.se-gm-casino:hover { border-color: var(--border2); }
.se-gm-casino__idx { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--accent); min-width: 22px; }
.se-gm-casino__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.se-gm-casino__body strong { font-family: var(--font-ui); font-size: 14px; font-weight: 700; }
.se-gm-casino__body span   { font-size: 11px; color: var(--muted); }
.se-gm-rg { font-size: 11px; color: rgba(250,250,248,0.22); line-height: 1.65; }
.se-gm-rg a { color: rgba(250,250,248,0.35); }
.se-gm-rg a:hover { color: var(--muted); }

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .se-gm { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .se-gm__left {
    padding: 14px 20px;
    border-right: none; border-bottom: 1px solid rgba(249,115,22,0.18);
    flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px;
  }
  .se-gm__identity { flex: 1; }
  .se-gm__title  { font-size: 16px; }
  .se-gm__stats  { flex-direction: row; gap: 14px; order: 3; width: 100%; }
  .se-gm__rule   { display: none; }
  .se-gm__menu   { flex-direction: row; gap: 4px; order: 2; }
  .se-gm__hint   { display: none; }
  .se-gm__item   { padding: 6px 10px; font-size: 10px; }
  .se-gm-panel   { padding: 20px 22px; }
  .se-details-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ══════════════════════════════════════════════════════════
   TAXONOMY ARCHIVE HERO
══════════════════════════════════════════════════════════ */
.se-tax-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 90% at 50% 42%,
      rgba(255,122,0,0.24) 0%,
      rgba(255,100,0,0.07) 32%,
      transparent 60%),
    var(--ground);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 36px;
}
.se-tax-breadcrumb {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.se-tax-breadcrumb a { color: var(--muted); transition: color var(--transition); }
.se-tax-breadcrumb a:hover { color: var(--accent); }
.se-tax-hero__eyebrow {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.se-tax-hero__title {
  font-family: var(--font-disp); font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.0;
  color: var(--text); margin-bottom: 14px;
}
.se-tax-hero__desc {
  font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 620px;
}
.se-tax-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0 16px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.se-tax-topbar__all { color: var(--accent); transition: opacity var(--transition); }
.se-tax-topbar__all:hover { opacity: 0.8; }

/* ══════════════════════════════════════════════════════════
   PRIORITY PAGES
══════════════════════════════════════════════════════════ */

/* Hero band */
.se-prio-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 90% at 50% 42%,
      rgba(255,122,0,0.24) 0%,
      rgba(255,100,0,0.07) 32%,
      transparent 60%),
    var(--ground);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 52px;
}
.se-prio-hero__inner {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 40px;
}
.se-prio-hero__text { flex: 1; }
.se-prio-hero__eyebrow {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.se-prio-hero__h1 {
  font-family: var(--font-disp); font-size: clamp(28px, 4vw, 56px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.0;
  color: var(--text); margin-bottom: 18px; max-width: 760px;
}
.se-prio-hero__lead {
  font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 620px;
}

/* Hero stats cluster */
.se-prio-hero__stats {
  display: flex; flex-direction: column; gap: 20px;
  flex-shrink: 0; min-width: 160px; text-align: right;
}
.se-prio-stat { display: flex; flex-direction: column; gap: 3px; }
.se-prio-stat__val {
  font-family: var(--font-disp); font-size: 28px; font-weight: 900;
  letter-spacing: -0.03em; color: var(--accent); line-height: 1;
}
.se-prio-stat__key {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}

/* Main article */
.se-main--prio { padding: 52px 0 0; }
.se-prio-article {
  max-width: 820px; margin-bottom: 64px;
}
.se-prio-article h2 {
  font-family: var(--font-disp); font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900; letter-spacing: -0.02em; color: var(--text);
  margin: 48px 0 16px; padding-top: 8px;
  border-top: 1px solid var(--border);
}
.se-prio-article h3 {
  font-family: var(--font-ui); font-size: 16px; font-weight: 700;
  color: var(--text); margin: 28px 0 10px;
}
.se-prio-article p { font-size: 15px; line-height: 1.78; color: var(--muted); margin-bottom: 16px; }
.se-prio-article ul, .se-prio-article ol {
  padding-left: 20px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px;
}
.se-prio-article li { font-size: 15px; line-height: 1.7; color: var(--muted); }
.se-prio-article strong { color: var(--text); font-weight: 700; }
.se-prio-article a { color: var(--accent); }
.se-prio-article a:hover { text-decoration: underline; }

/* Slot grid section embedded inside article */
.se-prio-article .se-prio-grid-section {
  margin: 40px 0; padding: 32px; max-width: none;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
}
.se-prio-article .se-prio-grid-section h2 {
  border-top: none; margin-top: 0; padding-top: 0;
}

/* RG box */
.se-prio-rg {
  margin-top: 24px; padding: 16px 20px;
  border: 1px solid rgba(249,115,22,0.18); border-radius: 8px;
  font-size: 13px; color: var(--muted); line-height: 1.6;
}
.se-prio-rg a { color: var(--accent); }

/* FAQ section */
.se-prio-faq {
  border-top: 1px solid var(--border); padding-top: 52px; margin-bottom: 72px;
}
.se-prio-faq__title {
  font-family: var(--font-disp); font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900; letter-spacing: -0.02em; color: var(--text); margin-bottom: 32px;
}
.se-prio-faq__list { display: flex; flex-direction: column; gap: 2px; max-width: 820px; }

.se-faq-item { border-bottom: 1px solid var(--border); }
.se-faq-item__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-ui); font-size: 15px; font-weight: 700; color: var(--text);
  transition: color var(--transition);
}
.se-faq-item__q:hover { color: var(--accent); }
.se-faq-item__icon {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1px solid var(--border2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1; color: var(--accent);
  transition: transform var(--transition);
}
.se-faq-item__icon::after { content: '+'; }
.se-faq-item[data-open] .se-faq-item__icon { transform: rotate(45deg); }
.se-faq-item__a { overflow: hidden; }
.se-faq-item__a-inner { padding: 0 0 18px; font-size: 14px; line-height: 1.75; color: var(--muted); }
.se-faq-item__a-inner p + p { margin-top: 10px; }
.se-faq-item__a-inner a { color: var(--accent); }

/* Slot-review FAQ accordion (scoped — collapses by default via JS) */
.se-gm-faq { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.se-gm-faq__title { font-family: var(--font-disp); font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin-bottom: 6px; }
.se-gm-faq .se-faq-item__a { max-height: 0; transition: max-height 0.3s ease; }
.se-gm-faq .se-faq-item.is-open .se-faq-item__a { max-height: 640px; }
.se-gm-faq .se-faq-item__a > div { padding: 0 0 18px; font-size: 14px; line-height: 1.75; color: var(--muted); }
.se-gm-faq .se-faq-item__a a { color: var(--accent); }

/* Responsive */
@media (max-width: 860px) {
  .se-prio-hero { padding: 48px 0 36px; }
  .se-prio-hero__inner { flex-direction: column; gap: 28px; }
  .se-prio-hero__stats { flex-direction: row; text-align: left; min-width: 0; }
  .se-prio-stat { min-width: 80px; }
}
@media (max-width: 600px) {
  .se-prio-hero__stats { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.se-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  margin-top: 80px;
}
.se-footer__inner {
  max-width: 1280px; margin: 0 auto; padding: 52px 40px 36px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.se-footer__tagline { font-size: 13px; color: var(--muted); margin: 10px 0; }
.se-footer__nav-title { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.se-footer__menu li + li { margin-top: 10px; }
.se-footer__menu a { font-size: 14px; color: var(--muted); transition: color var(--transition); }
.se-footer__menu a:hover { color: var(--accent); }
.se-footer__bottom {
  border-top: 1px solid var(--border);
  padding: 18px 40px;
  text-align: center;
}
.se-footer__bottom p { font-size: 12px; }
.se-footer__bottom a { color: var(--muted); }
.se-footer__bottom a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .se-review__section--hero { grid-template-columns: 1fr; min-height: auto; }
  .se-review__hero-thumb { min-height: 50vw; }
  .se-review__hero-overlay { background: linear-gradient(to bottom, transparent 50%, var(--ground) 100%); }
  .se-review__hero-content { padding: 32px; }
  .se-footer__inner { grid-template-columns: 1fr 1fr; }
  .se-footer__brand { grid-column: 1/-1; }
  .se-cards-grid--catalog { grid-template-columns: repeat(2, 1fr); }
}

/* Filter toggle: hidden on desktop (sidebar always shown); revealed on mobile in the 768px block below.
   This base rule MUST precede that media query so the mobile `display:flex` wins the cascade. */
.se-filter-toggle { display: none; }

@media (max-width: 768px) {
  :root { --sidebar-w: 0px; }
  .se-nav__links, .se-nav__live, .se-nav__cta { display: none; }
  .se-nav__inner { padding: 0 16px; gap: 0; }
  .se-nav__burger { display: flex; }
  /* toggle below now clears the fixed nav, so drop the wrap's nav padding to avoid a double gap */
  .se-catalog-wrap { flex-direction: column; padding-top: 0; }
  .se-sidebar { width: 100%; min-width: 0; position: static; height: auto; display: none; }
  .se-sidebar.is-open { display: block; }
  .se-filter-toggle {
    display: flex; align-items: center; gap: 8px;
    width: 100%; padding: 10px 16px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 6px; margin: calc(var(--nav-h) + 12px) 22px 0;
    font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--text);
    cursor: pointer;
  }
  .se-filter-toggle__icon { color: var(--accent); }
  .se-filter-toggle__count {
    margin-left: auto; font-family: var(--mono); font-size: 11px;
    color: var(--accent); background: rgba(249,115,22,.1);
    border-radius: 4px; padding: 1px 6px;
  }
  /* H1 + intro had no horizontal padding → flush to the screen edge on mobile.
     Inset to 22px so they line up with the toggle, topbar and cards. */
  .se-catalog-intro { padding: 0 22px; }
  .se-hero { padding-left: 24px; padding-right: 24px; }
  .se-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .se-cards-grid--catalog { grid-template-columns: 1fr; }
  .se-section { padding: 40px 24px; }
  .se-footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px 24px; }
  .se-providers-grid { padding: 24px; }
  .se-spec-table__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════════
   CASINO TOP-10 PAGE
══════════════════════════════════════════════════════════ */

/* ── Hero tweak ── */
.se-tc-hero .se-tax-hero__title { font-size: clamp(28px, 4vw, 52px); }
.se-tc-hero .se-tax-hero__desc  { max-width: 680px; }

/* ── Trust / stat pills ── */
.se-tc-stats {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px;
}
.se-tc-stat {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--text);
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.22);
  border-radius: 100px; padding: 5px 13px;
  white-space: nowrap;
}
.se-tc-stat__icon { color: var(--accent); flex-shrink: 0; }

/* ── Legal footnote (replaces big disclaimer box) ── */
.se-tc-legal-note {
  font-size: 10px; color: var(--muted); line-height: 1.6;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(249,115,22,0.1);
  max-width: 680px;
}

/* ── Three.js canvas ── */
.se-cp-canvas {
  position: absolute; pointer-events: none; z-index: 0;
  inset: 0; width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  opacity: 0.65;
}

/* ── Podium container ── */
.se-cp-podium {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 14px;
  align-items: end;
  position: relative;
  margin-bottom: 14px;
}

/* ── Casino card ── */
.se-cp__card {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px 22px;
  min-height: 460px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.se-cp__card::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 55% at 50% -10%,
    hsl(var(--splash-h, 15deg) 75% 45% / 0.20) 0%,
    transparent 70%);
  border-radius: inherit;
  pointer-events: none;
}
.se-cp__card > * { position: relative; z-index: 1; }

.se-cp__card--1 {
  min-height: 540px;
  border-color: rgba(249,115,22,.35);
  box-shadow: 0 0 0 1px rgba(249,115,22,.1),
              0 20px 60px rgba(0,0,0,.5),
              0 0 80px rgba(249,115,22,.12);
  animation: se-glow-pulse 2.8s ease-in-out infinite;
}
.se-cp__card--1::before {
  background: radial-gradient(ellipse 80% 60% at 50% -5%,
    hsl(var(--splash-h, 15deg) 75% 45% / 0.30) 0%,
    transparent 65%);
}
.se-cp__card--2 { min-height: 490px; }
.se-cp__card--3 { min-height: 460px; }

.se-cp__card:hover {
  border-color: var(--border2);
  box-shadow: 0 0 0 1px rgba(249,115,22,.2),
              0 24px 64px rgba(0,0,0,.6),
              0 0 60px rgba(249,115,22,.18);
}

@keyframes se-glow-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(249,115,22,.1), 0 20px 60px rgba(0,0,0,.5), 0 0 80px rgba(249,115,22,.12); }
  50%       { box-shadow: 0 0 0 1px rgba(249,115,22,.2), 0 20px 60px rgba(0,0,0,.5), 0 0 120px rgba(249,115,22,.22); }
}

/* Badge */
.se-cp__badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-ui); font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--accent); color: #000;
  padding: 4px 10px; border-radius: 40px;
  z-index: 2;
}

/* Header */
.se-cp__header { display: flex; justify-content: space-between; align-items: center; }
.se-cp__rank {
  font-family: var(--mono); font-size: 48px; font-weight: 800; line-height: 1;
  color: hsl(var(--splash-h, 15deg) 82% 60%);
  text-shadow: 0 0 40px hsl(var(--splash-h, 15deg) 82% 60% / 0.45);
}
.se-cp__card--2 .se-cp__rank,
.se-cp__card--3 .se-cp__rank { font-size: 36px; }

/* Stars */
.se-stars { display: flex; align-items: center; gap: 2px; }
.se-star { font-size: 14px; }
.se-star--full  { color: var(--amber); }
.se-star--half  { color: var(--amber); opacity: 0.7; }
.se-star--empty { color: rgba(250,250,248,.18); }
.se-star__val {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--amber); margin-left: 5px;
}

/* Identity */
.se-cp__identity { display: flex; flex-direction: column; gap: 4px; }
.se-cp__name {
  font-family: var(--font-disp); font-size: 22px; font-weight: 800;
  color: var(--text); line-height: 1.1;
  margin: 0;
}
.se-cp__card--1 .se-cp__name { font-size: 26px; }
.se-cp__tagline { font-size: 13px; color: var(--muted); margin: 0; }

/* Bonus */
.se-cp__bonus-wrap {
  background: rgba(249,115,22,.09); border: 1px solid rgba(249,115,22,.2);
  border-radius: var(--radius-sm); padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.se-cp__bonus-label {
  font-family: var(--font-ui); font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.se-cp__bonus {
  font-family: var(--font-disp); font-size: 15px; font-weight: 700;
  color: var(--accent); line-height: 1.2;
}
.se-cp__card--1 .se-cp__bonus { font-size: 17px; }

/* Stats grid */
.se-cp__stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.se-cp__stat {
  display: flex; flex-direction: column; align-items: center;
  background: var(--surface2); border-radius: var(--radius-sm);
  padding: 10px 8px; gap: 3px; text-align: center;
}
.se-cp__stat-icon { font-size: 16px; }
.se-cp__stat-val {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  color: var(--text); white-space: nowrap;
}
.se-cp__stat-label { font-size: 10px; color: var(--muted); }

/* Tags */
.se-cp__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.se-cp__tag {
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 40px;
  background: rgba(249,115,22,.1); color: var(--accent);
  border: 1px solid rgba(249,115,22,.2);
}

/* Payment pills */
.se-cp__payments { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.se-cp__pay-pill {
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  padding: 3px 9px; border-radius: 4px;
  background: var(--surface3); border: 1px solid var(--border);
  color: var(--muted); white-space: nowrap;
}
.se-cp__pay-pill--more { color: var(--accent); border-color: rgba(249,115,22,.2); }
.se-cp__pay-pill--sm { font-size: 9px; padding: 2px 7px; }

/* CTA button */
.se-cp__cta {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  background: var(--accent); color: #000;
  font-family: var(--font-ui); font-size: 14px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 20px; border-radius: var(--radius-sm);
  text-decoration: none; position: relative; overflow: hidden;
  transition: filter 0.18s, transform 0.18s;
}
.se-cp__cta:hover { filter: brightness(1.12); transform: translateY(-1px); }
.se-cp__cta-arrow { font-size: 16px; transition: transform 0.18s; }
.se-cp__cta:hover .se-cp__cta-arrow { transform: translateX(3px); }

/* CTA shimmer */
.se-cp__cta--shimmer::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: se-shimmer 0.7s ease forwards;
}
@keyframes se-shimmer {
  to { left: 160%; }
}

/* Legal line */
.se-cp__legal {
  font-size: 10px; color: var(--muted); text-align: center;
  margin: 0; line-height: 1.5;
}
.se-cp__legal .se-rg { display: inline; font-size: 10px; }

/* ── Ranked rows #4–10 ── */
.se-cp-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 48px; }

.se-cp-row {
  display: grid;
  grid-template-columns: 60px 6px 100px 1fr auto auto auto;
  align-items: center; gap: 0 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 28px;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.se-cp-row:hover {
  border-color: var(--border2);
  box-shadow: var(--glow-sm);
}
.se-cp-row__num {
  font-family: var(--mono); font-size: 26px; font-weight: 700;
  color: var(--muted); text-align: center;
}
.se-cp-row__splash {
  width: 6px; align-self: stretch; border-radius: 3px;
  background: hsl(var(--splash-h, 15deg) 80% 55%); opacity: 0.6;
}
.se-cp-row__logo {
  width: 100px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 6px;
  overflow: hidden;
}
.se-cp-row__logo-img {
  max-width: 88px; max-height: 48px; width: auto; height: auto;
  object-fit: contain;
}
.se-cp-row__logo-init {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 10px;
  background: hsl(var(--splash-h, 15deg) 60% 25%);
  font-family: var(--font-disp); font-size: 26px; font-weight: 900;
  color: hsl(var(--splash-h, 15deg) 80% 70%);
}
.se-cp-row__info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.se-cp-row__name {
  font-family: var(--font-disp); font-size: 20px; font-weight: 700;
  color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.se-cp-row__bonus { font-size: 14px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.se-cp-row__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.se-cp-row__license {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--accent); background: rgba(249,115,22,.1); padding: 4px 10px; border-radius: 4px;
}
.se-cp-row__payments { display: flex; gap: 4px; }
.se-cp-row__cta {
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--accent);
  white-space: nowrap; opacity: 0.4; transition: opacity 0.18s;
}
.se-cp-row:hover .se-cp-row__cta { opacity: 1; }

/* ── Casino article ── */
.se-casino-article {
  max-width: 820px;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
}
.se-casino-article__section { margin-bottom: 44px; }
.se-casino-article h2 {
  font-family: var(--font-disp); font-size: 24px; font-weight: 800;
  color: var(--text); margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.se-casino-article p { margin-bottom: 16px; color: rgba(250,250,248,.82); line-height: 1.72; }
.se-casino-article a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(249,115,22,.4); }
.se-casino-article a:hover { text-decoration-color: var(--accent); }
.se-casino-article ul { margin: 0 0 16px 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.se-casino-article li { color: rgba(250,250,248,.82); line-height: 1.65; }
.se-casino-article strong { color: var(--text); font-weight: 700; }
.se-casino-article em { font-style: italic; }

/* FAQ accordion */
.se-casino-faq { display: flex; flex-direction: column; gap: 0; }
.se-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 2px 0;
}
.se-faq-item:first-of-type { border-top: 1px solid var(--border); }
.se-faq-item summary {
  font-family: var(--font-disp); font-size: 16px; font-weight: 700;
  color: var(--text); cursor: pointer;
  padding: 16px 6px 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.18s;
  user-select: none;
}
.se-faq-item summary::-webkit-details-marker { display: none; }
.se-faq-item summary::after {
  content: '+'; font-size: 20px; color: var(--accent);
  transition: transform 0.22s; flex-shrink: 0;
}
.se-faq-item[open] summary { color: var(--accent); }
.se-faq-item[open] summary::after { transform: rotate(45deg); }
.se-faq-item p { padding: 0 6px 16px; margin: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .se-cp-podium { grid-template-columns: 1fr 1fr; }
  .se-cp__card--1 { grid-column: 1 / -1; min-height: 380px; }
}
@media (max-width: 640px) {
  .se-cp-podium { grid-template-columns: 1fr; }
  .se-cp__card { min-height: auto !important; }
  .se-cp-row { grid-template-columns: 44px 5px 72px 1fr auto; padding: 18px 16px; }
  .se-cp-row__payments, .se-cp-row__cta { display: none; }
  .se-cp-row__meta .se-stars { display: none; }
}

/* ══════════════════════════════════════════════════════════
   TOP 10 LAYOUTS — Ranked list + Podium
══════════════════════════════════════════════════════════ */

/* ── View toggle ── */
.se-view-toggle {
  display: flex; gap: 2px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 3px;
}
.se-view-btn {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px;
  color: var(--muted); text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.se-view-btn:hover { color: var(--text); }
.se-view-btn.is-active {
  background: var(--accent); color: #000;
}

/* ── Ranked list ── */
.se-rank-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px; }
.se-rank-list--compact { margin-top: 12px; }

.se-rank-row {
  display: grid;
  grid-template-columns: 52px 1fr auto auto;
  align-items: center; gap: 0 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.se-rank-row:hover {
  border-color: var(--border2);
  box-shadow: var(--glow-sm);
  transform: translateX(3px);
}

.se-rank-row__num {
  font-family: var(--mono); font-size: 24px; font-weight: 700;
  color: var(--accent); line-height: 1; text-align: center;
  min-width: 52px; position: relative; z-index: 1;
}
.se-rank-list--compact .se-rank-row__num { color: var(--muted); }

.se-rank-row__splash {
  width: 6px; align-self: stretch; border-radius: 3px;
  background: hsl(var(--splash-h, 15deg) 80% 55%);
  opacity: 0.7;
}
.se-rank-row__bg {
  position: absolute;
  right: 0; top: 0; bottom: 0; left: auto;
  width: 160px; z-index: 0;
  background-image: var(--rank-thumb);
  background-size: cover; background-position: center;
  opacity: 0.55;
  border-radius: 0 var(--radius) var(--radius) 0;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 30%, black 65%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 30%, black 65%);
  transition: opacity .18s, width .18s;
}
.se-rank-row:hover .se-rank-row__bg { opacity: 0.75; width: 180px; }

.se-rank-row__info { display: flex; flex-direction: column; gap: 5px; min-width: 0; position: relative; z-index: 1; }
.se-rank-row__name {
  font-family: var(--font-disp); font-size: 18px; font-weight: 700;
  color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.se-rank-row__meta { font-size: 13px; color: var(--muted); }

.se-rank-row__rtp {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 14px; font-weight: 700;
  color: var(--amber); white-space: nowrap;
  background: rgba(245, 158, 11, 0.1); border-radius: 4px;
  padding: 5px 12px;
}

.se-rank-row__cta {
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
  opacity: 0.35; transition: opacity var(--transition);
  position: relative; z-index: 1;
}
.se-rank-row:hover .se-rank-row__cta { opacity: 1; }

/* ── Podium ── */
.se-podium {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; align-items: end;
  margin-bottom: 12px;
}

.se-podium__card {
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--border);
  text-decoration: none; color: inherit;
  padding: 28px 20px 24px;
  min-height: 200px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.se-podium__card:hover {
  border-color: var(--border2);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}

.se-podium__card--1 { min-height: 340px; border-color: var(--border2); box-shadow: 0 0 0 1px var(--border2); }
.se-podium__card--2 { min-height: 280px; }
.se-podium__card--3 { min-height: 250px; }

.se-podium__thumb {
  position: absolute; inset: 0; z-index: 0;
  background-size: 88% auto;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0.95;
  transition: opacity .25s, background-size .35s ease;
}
.se-podium__card:hover .se-podium__thumb {
  opacity: 1;
  background-size: 100% auto;
}
.se-podium__bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top,
    var(--surface) 0%,
    var(--surface) 38%,
    rgba(0,0,0,.25) 58%,
    transparent 72%);
}

.se-podium__rank {
  font-family: var(--mono); font-size: 42px; font-weight: 800;
  line-height: 1;
  color: hsl(var(--splash-h, 15deg) 80% 60%);
  position: relative; z-index: 2; margin-bottom: auto;
  text-shadow: 0 0 32px hsl(var(--splash-h, 15deg) 80% 60% / 0.5);
}
.se-podium__card--2 .se-podium__rank,
.se-podium__card--3 .se-podium__rank { font-size: 32px; }

.se-podium__body {
  display: flex; flex-direction: column; gap: 5px;
  position: relative; z-index: 2; margin-top: 16px;
}

.se-podium__prov {
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.se-podium__name {
  font-family: var(--font-disp); font-size: 17px; font-weight: 700;
  color: var(--text); line-height: 1.2;
}
.se-podium__card--1 .se-podium__name { font-size: 24px; }
.se-podium__card--2 .se-podium__name { font-size: 19px; }
.se-podium__rtp {
  font-family: var(--mono); font-size: 12px;
  color: var(--amber); margin-top: 4px;
}
.se-podium__cta {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-top: 10px;
  opacity: 0; transition: opacity var(--transition);
}
.se-podium__card:hover .se-podium__cta { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .se-podium { grid-template-columns: 1fr; }
  .se-podium__card--1 { min-height: 180px; }
  .se-podium__card--2,
  .se-podium__card--3 { min-height: 150px; }
  .se-rank-row { grid-template-columns: 36px 1fr auto; }
  .se-rank-row__cta { display: none; }
  .se-rank-row__cta { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   Casino article — added visual sections
   ════════════════════════════════════════════════════════════════ */

/* ── Casino card logo ── */
.se-cp__logo-wrap {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px 16px;
  position: relative;
  z-index: 1;
}
.se-cp__logo {
  max-height: 40px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
}

/* ── Game types grid ── */
.se-gt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}

.se-gt-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.se-gt-card:not(.se-gt-card--nolink):hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 16px rgba(249,115,22,0.12);
  transform: translateY(-2px);
}
.se-gt-card--nolink {
  cursor: default;
}

.se-gt-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.se-gt-name {
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.se-gt-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ── Payment methods ── */
.se-pm-notice {
  font-size: 13px;
  color: var(--accent);
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
}

.se-pm-intro {
  font-size: 13px; color: var(--muted); line-height: 1.7;
  margin-bottom: 16px;
}
.se-pm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.se-pm-tab {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.se-pm-tab:hover {
  border-color: var(--border2);
  color: var(--text);
}
.se-pm-tab--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.se-pm-panel {
  display: none;
}
.se-pm-panel:not([hidden]) {
  display: block;
}

.se-pm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.se-pm-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 100px;
  max-width: 130px;
  flex: 0 0 auto;
  transition: border-color 0.15s;
}
.se-pm-card:hover {
  border-color: var(--border2);
}

.se-pm-logo {
  width: auto;
  height: 28px;
  max-width: 80px;
  object-fit: contain;
  background: rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 4px 8px;
  box-sizing: content-box;
}

.se-pm-name {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
}

.se-pm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: center;
}

.se-pm-dep,
.se-pm-wd,
.se-pm-speed {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  line-height: 1.3;
}

.se-pm-dep {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}

.se-pm-wd {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}
.se-pm-wd--no {
  background: rgba(239,68,68,0.12);
  color: #f87171;
}

.se-pm-speed {
  background: var(--surface2);
  color: var(--muted);
}

.se-pm-note {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  font-style: italic;
}

/* ── Regulator feature box ── */
.se-reg-feature {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.se-reg-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 8px;
  box-sizing: content-box;
}

.se-reg-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.se-reg-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 3px;
  padding: 2px 8px;
  align-self: flex-start;
}

.se-reg-name {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.se-reg-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.se-reg-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.se-reg-verify {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.15s;
}
.se-reg-verify:hover {
  opacity: 0.8;
}

/* ── Responsive adjustments for new article sections ── */
@media (max-width: 768px) {
  .se-gt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .se-reg-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .se-reg-badge,
  .se-reg-verify {
    align-self: center;
  }
  .se-pm-card {
    min-width: 88px;
  }
}

@media (max-width: 480px) {
  .se-gt-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   Mechanics Guide Page
══════════════════════════════════════════════════════════ */

/* ── Quick-jump nav ── */
.se-mech-page-nav {
  display: flex; gap: 8px; flex-wrap: nowrap;
  overflow-x: auto; padding: 0 0 4px;
  scrollbar-width: none;
  margin-top: 28px;
}
.se-mech-page-nav::-webkit-scrollbar { display: none; }
.se-mech-page-nav__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 100px; white-space: nowrap;
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  border: 1px solid rgba(249,115,22, calc(var(--pill-op, 0.16)));
  color: var(--muted); background: var(--surface2);
  transition: all var(--transition);
  --pill-op: 0.16;
}
.se-mech-page-nav__pill:hover {
  border-color: hsl(var(--mech-hue, 25deg) 90% 55% / 0.5);
  color: hsl(var(--mech-hue, 25deg) 90% 70%);
  background: hsl(var(--mech-hue, 25deg) 90% 55% / 0.08);
}

/* ── Each mechanic section ── */
.se-mech-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 80px;
}
.se-mech-section:last-of-type { border-bottom: none; }

.se-mech-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
/* Alternate layout every other section */
.se-mech-section:nth-child(even) .se-mech-inner {
  grid-template-columns: 1fr 340px;
}
.se-mech-section:nth-child(even) .se-mech-visual {
  order: 2;
}
.se-mech-section:nth-child(even) .se-mech-content {
  order: 1;
}

/* ── Visual card ── */
.se-mech-visual {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--mech-hue, 25deg) 80% 50% / 0.28);
  background: var(--surface);
  box-shadow:
    0 0 0 1px hsl(var(--mech-hue, 25deg) 80% 50% / 0.10),
    0 0 40px hsl(var(--mech-hue, 25deg) 80% 50% / 0.12),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
.se-mech-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%,
    hsl(var(--mech-hue, 25deg) 80% 50% / 0.08) 0%,
    transparent 65%);
  pointer-events: none;
}
.se-mech-visual svg { position: relative; z-index: 1; }

/* ── Content column ── */
.se-mech-content { display: flex; flex-direction: column; gap: 20px; }

.se-mech-content h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-family: var(--font-disp); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 4px;
}
.se-mech-content h2 a {
  color: var(--text); transition: color var(--transition);
}
.se-mech-content h2 a:hover {
  color: hsl(var(--mech-hue, 25deg) 90% 65%);
}

.se-mech-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--mech-hue, 25deg) 90% 65%);
  margin-bottom: 2px;
}

.se-mech-desc p {
  font-size: 14.5px; line-height: 1.75; color: var(--muted);
}
.se-mech-desc p + p { margin-top: 12px; }

/* ── Stat chips ── */
.se-mech-stat-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.se-mech-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 100px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  background: hsl(var(--mech-hue, 25deg) 80% 50% / 0.08);
  border: 1px solid hsl(var(--mech-hue, 25deg) 80% 50% / 0.24);
  color: hsl(var(--mech-hue, 25deg) 90% 72%);
}

/* ── How it works steps ── */
.se-mech-steps {
  display: flex; flex-direction: column; gap: 10px;
}
.se-mech-step {
  display: flex; gap: 14px; align-items: flex-start;
}
.se-mech-step__num {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: hsl(var(--mech-hue, 25deg) 80% 50% / 0.14);
  border: 1px solid hsl(var(--mech-hue, 25deg) 80% 50% / 0.32);
  color: hsl(var(--mech-hue, 25deg) 90% 65%);
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.se-mech-step__text {
  font-size: 14px; line-height: 1.65; color: var(--muted);
  padding-top: 3px;
}

/* ── Best for ── */
.se-mech-best {
  padding: 12px 16px;
  border-left: 2px solid hsl(var(--mech-hue, 25deg) 80% 50% / 0.6);
  background: hsl(var(--mech-hue, 25deg) 80% 50% / 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13.5px; color: var(--muted); line-height: 1.6;
}
.se-mech-best strong {
  font-family: var(--font-ui); font-weight: 700;
  color: hsl(var(--mech-hue, 25deg) 90% 72%);
}

/* ── Browse CTA ── */
.se-mech-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-ui); font-size: 14px; font-weight: 700;
  background: hsl(var(--mech-hue, 25deg) 80% 50% / 0.12);
  border: 1px solid hsl(var(--mech-hue, 25deg) 80% 50% / 0.36);
  color: hsl(var(--mech-hue, 25deg) 90% 68%);
  transition: all var(--transition); align-self: flex-start;
}
.se-mech-cta:hover {
  background: hsl(var(--mech-hue, 25deg) 80% 50% / 0.20);
  border-color: hsl(var(--mech-hue, 25deg) 80% 50% / 0.60);
  transform: translateX(3px);
}

/* ── Comparison table ── */
.se-mech-table-wrap { overflow-x: auto; }
.se-mech-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--font-ui); font-size: 16px;
  border-radius: var(--radius); overflow: hidden;
}
.se-mech-table th {
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: var(--surface2);
  padding: 18px 24px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.se-mech-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: middle;
  line-height: 1.5;
}
.se-mech-table tr:last-child td { border-bottom: none; }
.se-mech-table tr:hover td { background: rgba(249,115,22,0.04); }
.se-mech-table td:first-child { font-weight: 700; color: var(--text); font-size: 17px; }

.se-vol-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
}
.se-vol-badge--low    { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.28); }
.se-vol-badge--med    { background: rgba(245,158,11,0.12); color: #f59e0b; border: 1px solid rgba(245,158,11,0.28); }
.se-vol-badge--medhi  { background: rgba(249,115,22,0.12); color: #f97316; border: 1px solid rgba(249,115,22,0.28); }
.se-vol-badge--high   { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.28); }
.se-vol-badge--any    { background: rgba(148,163,184,0.12); color: #94a3b8; border: 1px solid rgba(148,163,184,0.28); }

.se-mech-table__name-link {
  color: var(--accent); transition: opacity var(--transition);
}
.se-mech-table__name-link:hover { opacity: 0.8; }

/* ═══ SVG Animation Keyframes ═══ */

/* Megaways: reel heights pulsing */
@keyframes mw-reel-a { 0%,100%{height:110px;y:60px} 50%{height:70px;y:80px} }
@keyframes mw-reel-b { 0%,100%{height:90px;y:70px} 33%{height:140px;y:30px} 66%{height:80px;y:75px} }
@keyframes mw-reel-c { 0%,100%{height:140px;y:30px} 40%{height:80px;y:70px} }
@keyframes mw-reel-d { 0%,100%{height:80px;y:75px} 60%{height:120px;y:50px} }
@keyframes mw-reel-e { 0%,100%{height:100px;y:65px} 25%{height:60px;y:85px} 75%{height:130px;y:40px} }
@keyframes mw-reel-f { 0%,100%{height:120px;y:50px} 50%{height:70px;y:80px} }
@keyframes mw-ways   { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes mw-spin { 0%{transform:translateY(0)} 100%{transform:translateY(-160px)} }

/* Progressive Jackpot: meter fill + flash */
@keyframes pj-fill { 0%{width:0} 70%{width:200px} 80%{width:200px} 100%{width:0} }
@keyframes pj-flash { 0%,79%,100%{opacity:0} 80%,95%{opacity:1} 86%,92%{opacity:0} }
@keyframes pj-coin  { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-12px) scale(1.12)} }
@keyframes pj-glow  { 0%,100%{filter:drop-shadow(0 0 4px #f59e0b66)} 50%{filter:drop-shadow(0 0 18px #f59e0b)} }

/* Cluster Pays: grid cluster pulse */
@keyframes cp-pulse  { 0%,100%{opacity:0.9;transform:scale(1)} 50%{opacity:1;transform:scale(1.08)} }
@keyframes cp-glow   { 0%,100%{filter:drop-shadow(0 0 3px #10b981aa)} 50%{filter:drop-shadow(0 0 12px #10b981)} }
@keyframes cp-idle   { 0%,100%{opacity:0.28} 50%{opacity:0.16} }

/* Buy Bonus: button flash → bonus screen */
@keyframes bb-btn    { 0%,100%{transform:scale(1);box-shadow:none} 40%{transform:scale(0.93)} 42%{transform:scale(1.04)} 44%,100%{transform:scale(1)} }
@keyframes bb-screen { 0%,39%,100%{opacity:0} 45%,90%{opacity:1} }
@keyframes bb-shimmer{ 0%{transform:translateX(-100%)} 100%{transform:translateX(400%)} }
@keyframes bb-text   { 0%,39%{opacity:0;transform:scale(0.8)} 50%{opacity:1;transform:scale(1.05)} 60%,100%{opacity:0.9;transform:scale(1)} }

/* Hold and Spin: coins dropping, locking */
@keyframes hs-drop1 { 0%,100%{transform:translateY(-50px);opacity:0} 15%,80%{transform:translateY(0);opacity:1} }
@keyframes hs-drop2 { 0%,20%{transform:translateY(-50px);opacity:0} 35%,80%{transform:translateY(0);opacity:1} 100%{opacity:0} }
@keyframes hs-drop3 { 0%,40%{transform:translateY(-50px);opacity:0} 55%,80%{transform:translateY(0);opacity:1} 100%{opacity:0} }
@keyframes hs-lock  { 0%,79%{opacity:0;transform:scale(0.5)} 80%{opacity:1;transform:scale(1.2)} 100%{opacity:1;transform:scale(1)} }
@keyframes hs-spin  { 0%{stroke-dashoffset:88} 100%{stroke-dashoffset:0} }

/* Tumble/Cascade: symbols dissolve & fall */
@keyframes tu-win   { 0%,100%{opacity:1;transform:scale(1)} 40%{opacity:1;transform:scale(1.1)} 60%{opacity:0;transform:scale(0.6)} }
@keyframes tu-fall  { 0%,59%{transform:translateY(0);opacity:0} 60%{transform:translateY(-60px);opacity:1} 100%{transform:translateY(0);opacity:1} }
@keyframes tu-chain { 0%,75%{opacity:0} 80%,100%{opacity:1} }
@keyframes tu-glow  { 0%,39%,65%,100%{filter:none} 40%,60%{filter:drop-shadow(0 0 8px #f97316)} }

/* Free Spins: scatters appear, counter pops */
@keyframes fs-scatter1 { 0%,100%{opacity:0;transform:scale(0.7)} 20%,70%{opacity:1;transform:scale(1)} }
@keyframes fs-scatter2 { 0%,25%{opacity:0;transform:scale(0.7)} 45%,70%{opacity:1;transform:scale(1)} 90%,100%{opacity:0} }
@keyframes fs-scatter3 { 0%,45%{opacity:0;transform:scale(0.7)} 65%,80%{opacity:1;transform:scale(1.08)} 95%,100%{opacity:0} }
@keyframes fs-counter  { 0%,64%{opacity:0;transform:translateY(20px) scale(0.8)} 70%{opacity:1;transform:translateY(-4px) scale(1.08)} 80%,100%{opacity:1;transform:translateY(0) scale(1)} }
@keyframes fs-burst    { 0%,63%{opacity:0;r:0} 67%{opacity:1;r:28px} 80%,100%{opacity:0;r:40px} }

/* Both Ways: left→right then right→left win lines */
@keyframes bw-line-lr { 0%,100%{stroke-dashoffset:220;opacity:0} 15%{opacity:1} 50%{stroke-dashoffset:0;opacity:1} 60%,90%{stroke-dashoffset:0;opacity:0} }
@keyframes bw-line-rl { 0%,55%{stroke-dashoffset:220;opacity:0} 70%{opacity:1} 100%{stroke-dashoffset:0;opacity:1} }
@keyframes bw-sym-hi  { 0%,100%{fill-opacity:0.2} 20%,45%{fill-opacity:1} }
@keyframes bw-sym-hi2 { 0%,60%{fill-opacity:0.2} 75%,95%{fill-opacity:1} 100%{fill-opacity:0.2} }
@keyframes bw-arrow-r { 0%,100%{transform:translateX(0);opacity:0.4} 25%{transform:translateX(6px);opacity:1} 50%{opacity:0.4} }
@keyframes bw-arrow-l { 0%,60%{transform:translateX(0);opacity:0.4} 85%{transform:translateX(-6px);opacity:1} 100%{opacity:0.4} }

/* ── Responsive ── */
@media (max-width: 900px) {
  .se-mech-inner,
  .se-mech-section:nth-child(even) .se-mech-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .se-mech-section:nth-child(even) .se-mech-visual,
  .se-mech-section:nth-child(even) .se-mech-content {
    order: unset;
  }
  .se-mech-visual {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .se-mech-section { padding: 48px 0; }
  .se-mech-page-nav { gap: 6px; }
  .se-mech-page-nav__pill { padding: 6px 14px; font-size: 12px; }
  .se-mech-stat-chips { gap: 6px; }
  .se-mech-chip { padding: 4px 10px; font-size: 11px; }
}

/* ══════════════════════════════════════════════════════════════════
   SLOT FINDER QUIZ
══════════════════════════════════════════════════════════════════ */
.se-finder { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
.se-finder__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; text-align: center; }
.se-finder__title { font-size: 28px; font-family: var(--font-disp); font-weight: 800; margin-bottom: 8px; }
.se-finder__sub { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
.se-finder__widget { position: relative; min-height: 120px; }
.se-finder__step { display: none; }
.se-finder__step.is-active { display: block; }
.se-finder__q { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 20px; }
.se-finder__opts { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.se-finder__opt { background: var(--surface2); border: 1.5px solid var(--border); border-radius: 10px; color: var(--text); font-family: var(--font-ui); font-size: 14px; font-weight: 600; padding: 11px 20px; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.se-finder__opt:hover { border-color: var(--accent); color: var(--accent); }
.se-finder__opt.is-selected { border-color: var(--accent); background: rgba(249,115,22,.1); color: var(--accent); }
.se-finder__opts--themes .se-finder__opt { font-size: 13px; padding: 9px 16px; }
.se-finder__results { margin-top: 32px; }
.se-finder__results-head { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.se-finder__results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 20px; }
.se-finder__result-card { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; transition: border-color .15s, transform .15s; display: flex; flex-direction: column; }
.se-finder__result-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.se-finder__result-thumb { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.se-finder__result-thumb-placeholder { width: 100%; aspect-ratio: 3/2; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 28px; }
.se-finder__result-body { padding: 10px 12px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.se-finder__result-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.3; }
.se-finder__result-meta { font-size: 11px; color: var(--muted); }
.se-finder__result-rtp { font-size: 12px; font-weight: 700; color: var(--accent); margin-top: auto; }
.se-finder__results-all { display: inline-block; font-size: 14px; font-weight: 700; color: var(--accent); text-decoration: none; margin-right: 20px; }
.se-finder__results-all:hover { text-decoration: underline; }
.se-finder__restart { background: none; border: 1.5px solid var(--border); border-radius: 8px; color: var(--muted); font-family: var(--font-ui); font-size: 13px; font-weight: 600; padding: 7px 16px; cursor: pointer; transition: border-color .15s, color .15s; }
.se-finder__restart:hover { border-color: var(--text); color: var(--text); }
@media (max-width: 600px) {
  .se-finder__results-grid { grid-template-columns: repeat(2,1fr); }
  .se-finder__opt { font-size: 13px; padding: 9px 14px; }
  .se-finder__title { font-size: 22px; }
}

/* ══════════════════════════════════════════════════════════════════
   TOP RTP STRIP
══════════════════════════════════════════════════════════════════ */
.se-rtp-strip { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.se-rtp-card { background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; transition: border-color .15s, transform .15s; display: flex; flex-direction: column; }
.se-rtp-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.se-rtp-card__thumb { width: 100%; aspect-ratio: 3/2; background-size: cover; background-position: center; }
.se-rtp-card__body { padding: 10px 12px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.se-rtp-card__name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.3; }
.se-rtp-card__prov { font-size: 11px; color: var(--muted); }
.se-rtp-card__bar-wrap { height: 4px; background: var(--surface); border-radius: 2px; margin: 6px 0 2px; overflow: hidden; }
.se-rtp-card__bar { height: 100%; background: var(--accent); border-radius: 2px; }
.se-rtp-card__val { font-size: 13px; font-weight: 800; color: var(--accent); }
@media (max-width: 900px) { .se-rtp-strip { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 500px) { .se-rtp-strip { grid-template-columns: repeat(2,1fr); } }

/* ══════════════════════════════════════════════════════════════════
   BROWSE BY THEME
══════════════════════════════════════════════════════════════════ */
.se-theme-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.se-theme-card { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 20px 12px; background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; transition: border-color .15s, transform .15s, background .15s; position: relative; overflow: hidden; }
.se-theme-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, hsl(var(--theme-hue) 80% 55% / .12) 0%, transparent 70%); pointer-events: none; }
.se-theme-card:hover { border-color: hsl(var(--theme-hue) 80% 55%); transform: translateY(-3px); background: var(--surface); }
.se-theme-card__icon { width: 28px; height: 28px; color: hsl(var(--theme-hue) 80% 65%); flex-shrink: 0; }
.se-theme-card__name { font-size: 13px; font-weight: 700; color: var(--text); text-align: center; }
.se-theme-card__count { font-size: 11px; color: var(--muted); }
@media (max-width: 900px) { .se-theme-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 500px) { .se-theme-grid { grid-template-columns: repeat(3,1fr); } }

/* ── Editorial Content Sections ── */
.se-editorial {
  padding: 48px 0 48px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}

/* Eyebrow + intro */
.se-editorial__eyebrow {
  display: inline-block;
  font: 700 11px var(--font-ui);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.se-editorial__intro {
  max-width: 800px;
  margin-bottom: 40px;
}
.se-editorial__intro h2 {
  font: 800 36px/1.1 var(--font-disp);
  color: var(--text);
  margin-bottom: 20px;
}
.se-editorial__intro p {
  font: 400 16px/1.8 var(--font-body);
  color: rgba(250,250,248,0.80);
  margin-bottom: 16px;
}

/* Stat cards — equal-width 3-col grid */
.se-ed-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 48px;
}
.se-ed-stat {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.se-ed-stat__label {
  font: 700 10px var(--font-ui);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.se-ed-stat__value {
  font: 700 20px/1 var(--font-disp);
  color: var(--accent);
}

/* Body section — h2 + 2-col prose grid */
.se-ed-section {
  margin-bottom: 48px;
}
.se-ed-section__h2 {
  font: 700 24px var(--font-disp);
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.se-ed-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: start;
}
.se-ed-body p {
  font: 400 15px/1.8 var(--font-body);
  color: rgba(250,250,248,0.80);
  margin: 0;
}

/* Tips box */
.se-ed-tips {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 0 0 48px;
}
.se-ed-tips h3 {
  font: 700 12px var(--font-ui);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 18px;
}
.se-ed-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.se-ed-tips li {
  font: 400 15px/1.65 var(--font-body);
  color: rgba(250,250,248,0.82);
  padding-left: 22px;
  position: relative;
}
.se-ed-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-size: 12px;
}

/* Games grid */
.se-ed-games {
  margin: 0 0 40px;
}
.se-ed-games__eyebrow {
  font: 700 11px var(--font-ui);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.se-ed-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.se-ed-game-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color .18s, background .18s, transform .18s;
}
.se-ed-game-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}
.se-ed-game-card__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--game-thumb);
  background-size: cover; background-position: center;
  opacity: 0.08;
  transition: opacity .25s;
}
.se-ed-game-card:hover .se-ed-game-card__bg { opacity: 0.80; }
.se-ed-game-card__head,
.se-ed-game-card__name,
.se-ed-game-card__note { position: relative; z-index: 1; }
.se-ed-game-card__name {
  font: 700 15px var(--font-ui);
  color: var(--text);
}
.se-ed-game-card__note {
  font: 400 13px/1.5 var(--font-body);
  color: var(--muted);
}

/* CTA button wrapper */
.se-ed-cta-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* 4-column stat grid variant (new slots page) */
.se-ed-stats--4col {
  grid-template-columns: repeat(4, 1fr);
}

/* CTA button */
.se-ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  font: 700 14px var(--font-ui);
  letter-spacing: .05em;
  text-decoration: none;
  border-radius: 100px;
  transition: opacity .18s, box-shadow .18s;
  margin-top: 8px;
}
.se-ed-cta:hover {
  opacity: .88;
  box-shadow: var(--glow-sm);
}

/* Responsive */
@media (max-width: 900px) {
  .se-ed-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .se-ed-body { grid-template-columns: 1fr; gap: 0; }
  .se-ed-body p { margin-bottom: 16px; }
  .se-ed-stats { grid-template-columns: 1fr 1fr; }
  .se-ed-stats--4col { grid-template-columns: 1fr 1fr; }
  .se-editorial { padding: 48px 0 32px; }
  .se-editorial__intro h2 { font-size: 26px; }
}
@media (max-width: 400px) {
  .se-ed-stats { grid-template-columns: 1fr; }
  .se-ed-stats--4col { grid-template-columns: 1fr 1fr; }
}

/* ── New Slots Checklist ── */
.se-ns-checklist {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0 32px;
}
.se-ns-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 600 14px var(--font-ui);
  color: var(--text);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
}
.se-ns-check__icon {
  width: 18px;
  height: 18px;
  background: rgba(249,115,22,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 11px;
  flex-shrink: 0;
}

/* ── Taxonomy "Check all" link ── */
.se-tax-all-link-wrap {
  margin: 28px 0 4px;
  display: flex;
  justify-content: center;
}
.se-tax-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font: 600 15px var(--font-ui);
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.se-tax-all-link:hover {
  background: rgba(249,115,22,0.08);
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}
.se-tax-all-link__arrow {
  font-size: 16px;
  transition: transform 0.18s;
}
.se-tax-all-link:hover .se-tax-all-link__arrow {
  transform: translateX(4px);
}

/* ── Provider Logos ── */

/* Slot card provider logo */
.se-card__prov {
  display: flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 8px;
}
.se-card__prov-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 6px 12px;
  width: 100%;
  height: 44px;
  flex-shrink: 1;
}
.se-card__prov-logo {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: 32px;
  object-fit: contain;
  display: block;
}
.se-card__prov-name {
  font: 500 12px var(--font-ui);
  color: var(--muted);
}

/* Podium provider logo */
.se-podium__prov {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.se-podium__prov-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border-radius: 6px;
  width: 160px;
  height: 52px;
  flex-shrink: 0;
}
.se-podium__prov-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Ranked row provider logo */
.se-rank-row__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.se-rank-row__prov-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  width: 120px;
  height: 36px;
  flex-shrink: 0;
}
.se-rank-row__prov-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Editorial game card provider logo */
.se-ed-game-card__head {
  height: 36px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.se-ed-game-card__prov-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.09);
  border-radius: 6px;
  width: 100px;
  height: 32px;
  flex-shrink: 0;
}
.se-ed-game-card__prov-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Key Developer stat card logo */
.se-ed-stat__logo-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 6px 14px;
  margin-top: 2px;
}
.se-ed-stat__logo {
  height: 44px;
  width: auto;
  max-width: 192px;
  object-fit: contain;
  display: block;
}

/* Black-only logos (hacksaw, nolimit, relax, push, thunderkick, blueprint) — invert to white */
.se-logo--invert {
  filter: invert(1);
}

/* Casino card logo visibility modifiers — applied to the wrapper div/figure */
.se-logo-wrap--invert .se-cp__logo,
.se-logo-wrap--invert .se-cp-row__logo-img,
.se-logo-wrap--invert .se-casino-card__logo { filter: brightness(0) invert(1); }
.se-logo-wrap--brighten .se-cp__logo,
.se-logo-wrap--brighten .se-cp-row__logo-img,
.se-logo-wrap--brighten .se-casino-card__logo { filter: brightness(4); }
.se-logo-wrap--white-bg { background: rgba(255,255,255,0.92) !important; }
.se-logo-wrap--invert-hue .se-cp__logo,
.se-logo-wrap--invert-hue .se-cp-row__logo-img { filter: invert(1) hue-rotate(180deg); }

/* ═══════════════════════════════════════════════════════════
   Provider Archive — Card Grid
   ═══════════════════════════════════════════════════════════ */
.se-prov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
@media (max-width: 1100px) { .se-prov-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .se-prov-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 440px)  { .se-prov-grid { grid-template-columns: 1fr; } }

.se-prov-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 18px 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.se-prov-card:hover {
  border-color: var(--border2);
  box-shadow: 0 0 28px hsla(var(--splash-h,25), 80%, 55%, .18);
  transform: translateY(-3px);
}

.se-prov-card__glow {
  pointer-events: none;
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    hsla(var(--splash-h,25), 80%, 55%, .10) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity .2s;
}
.se-prov-card:hover .se-prov-card__glow {
  opacity: 1;
}

.se-prov-card__logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  width: 100%;
}
.se-prov-card__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 4px 0;
}
.se-prov-card__logo {
  height: 64px;
  width: auto;
  max-width: 190px;
  display: block;
}
.se-prov-card__logo.se-logo--compact {
  max-width: 140px;
}
.se-prov-card__logo.se-logo--large {
  height: 90px;
}
.se-prov-card__logo.se-logo--xlarge {
  height: 120px;
  max-width: 120px;
}
.se-prov-card__logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(249,115,22,0.14);
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-family: var(--font-disp);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.se-prov-card__name {
  font-family: var(--font-disp);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.se-prov-card__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
}
.se-prov-card__stats span {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 8px;
}

.se-prov-card__mech {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.24);
  border-radius: 20px;
  padding: 3px 10px;
  text-align: center;
}

.se-prov-card__cta {
  margin-top: auto;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transition: opacity .2s;
}
.se-prov-card:hover .se-prov-card__cta {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════
   PROVIDER REVIEW PAGE  (single-provider.php)
══════════════════════════════════════════════════════════ */

/* ── Reusable section labels used in provider page ── */
.se-prov-section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}

.se-prov-section-title {
  font-family: var(--font-disp);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.15;
}

.se-prov-count-tag {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
}

/* ── Hero ── */
.se-prov-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(110% 90% at 50% 42%,
      rgba(255,122,0,0.24) 0%,
      rgba(255,100,0,0.07) 32%,
      transparent 60%),
    var(--ground);
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.se-prov-hero__glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 420px;
  background: radial-gradient(ellipse at 50% 10%, rgba(249,115,22,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.se-prov-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding-bottom: 44px;
}

/* Logo card */
.se-prov-hero__logobox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 100px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 18px 28px;
  box-shadow: 0 0 50px rgba(249,115,22,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

.se-prov-hero__logo {
  max-width: 180px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.se-prov-hero__logo.se-logo--invert { filter: invert(1); }
.se-prov-hero__logo.se-logo--large  { max-height: 80px; }
.se-prov-hero__logo.se-logo--xlarge { max-height: 90px; max-width: 160px; }

.se-prov-hero__logo-fallback {
  font-family: var(--font-disp);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

/* Score badge overlapping top-right corner */
.se-prov-hero__badge {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 50%;
  border: 2px solid var(--ground);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: var(--glow-sm);
}

.se-prov-hero__badge-num {
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.se-prov-hero__badge-den {
  font-size: 8px;
  color: rgba(255,255,255,0.75);
  line-height: 1;
}

.se-prov-hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  opacity: 0.8;
}

.se-prov-hero__name {
  font-family: var(--font-disp);
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.se-prov-hero__tagline {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
  margin: 0;
}

/* Stats bar */
.se-prov-statbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 700px;
}

.se-prov-statbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  min-width: 68px;
}

.se-prov-statbar__ico {
  color: var(--accent);
  opacity: 0.65;
  line-height: 1;
}

.se-prov-statbar__val {
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.se-prov-statbar__lbl {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Quick nav pills */
.se-prov-quicknav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.se-prov-quicknav__pill {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.se-prov-quicknav__pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.se-prov-quicknav__pill--ext {
  color: var(--accent);
  border-color: rgba(249,115,22,0.30);
}

.se-prov-quicknav__pill--ext:hover {
  border-color: var(--accent);
}

/* ── Overview section ── */
.se-prov-overview {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

@media (max-width: 960px) {
  .se-prov-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .se-prov-overview__visual { order: -1; }
}

.se-prov-overview__content { max-width: 640px; }

.se-prov-prose { margin-top: 20px; }

.se-prov-prose p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--muted);
  margin: 0 0 16px;
}

.se-prov-prose h2 {
  font-family: var(--font-disp);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 10px;
  letter-spacing: -0.02em;
}

.se-prov-prose em {
  color: var(--text);
  font-style: italic;
}

.se-prov-mechs {
  margin-top: 28px;
}

.se-prov-mechs__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.se-prov-mechs__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* SVG visualization box */
.se-prov-viz {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.se-prov-viz__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 14px;
}


/* ── Scores section ── */
.se-prov-scores {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.se-prov-scores__head { margin-bottom: 36px; }

.se-prov-scores__layout {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 56px;
  align-items: center;
}

@media (max-width: 680px) {
  .se-prov-scores__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .se-prov-overall {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
  }
}

.se-prov-scores__bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.se-prov-score {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.se-prov-score__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.se-prov-score__label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--muted);
}

.se-prov-score__num {
  font-family: var(--font-disp);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.se-prov-score__den {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 1px;
}

.se-prov-score__track {
  height: 6px;
  background: var(--surface2);
  border-radius: 6px;
  overflow: hidden;
}

.se-prov-score__fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  background: linear-gradient(90deg, var(--amber), var(--accent));
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.se-prov-score__fill.is-animated {
  width: var(--prov-score-w, 0%);
}

.se-prov-score--excellent .se-prov-score__fill {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.se-prov-score--good .se-prov-score__fill {
  background: linear-gradient(90deg, var(--amber), var(--accent));
}

.se-prov-score--ok .se-prov-score__fill {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.se-prov-score--poor .se-prov-score__fill {
  background: rgba(100,100,100,0.35);
}

/* Overall score ring */
.se-prov-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.se-prov-overall__ring {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.se-prov-overall__svg {
  width: 100%;
  height: 100%;
}

.se-prov-overall__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.se-prov-overall__num {
  font-family: var(--font-disp);
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}

.se-prov-overall__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.se-prov-overall__tag {
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  text-align: center;
}

/* ── Verdict box ── */
.se-prov-verdict {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  margin: 40px 0 8px;
}

.se-prov-verdict__inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 560px) {
  .se-prov-verdict__inner { flex-direction: column; gap: 14px; }
}

.se-prov-verdict__icon { flex-shrink: 0; }

.se-prov-verdict__eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}

.se-prov-verdict__text {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0;
}

/* ── Slots catalog section ── */
.se-prov-slots {
  padding: 64px 0 48px;
}

.se-prov-slots__head { margin-bottom: 28px; }

/* ── Hero breadcrumb (same as mechanics) ── */
.is-provider-page .se-tax-breadcrumb { margin-bottom: 28px; }

/* ── Hero banner visual ── */
.se-prov-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding-top: 0;
  background:
    radial-gradient(110% 90% at 50% 42%,
      rgba(255,122,0,0.24) 0%,
      rgba(255,100,0,0.07) 32%,
      transparent 60%),
    var(--ground);
}

/* Remove the old glow div – background treatment handles it */
.se-prov-hero .se-prov-hero__glow { display: none; }

.se-prov-hero__banner {
  height: 400px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 140% at 50% -10%, rgba(249,115,22,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 100% at 15% 110%, rgba(245,158,11,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 35% 90% at 88% 90%, rgba(249,115,22,0.13) 0%, transparent 55%),
    linear-gradient(to bottom, #161008, #0a0806, #070605);
}

/* Fade banner into page */
.se-prov-hero__banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--ground));
  z-index: 1;
  pointer-events: none;
}

/* Breadcrumb sits over the banner, below the fixed nav */
.se-prov-hero__topbar {
  position: absolute;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 2;
  padding-top: 16px;
}

/* Hero content overlaps bottom of the banner */
.se-prov-hero__container {
  position: relative;
  z-index: 2;
  margin-top: -200px;
}

@media (max-width: 700px) {
  .se-prov-hero__banner { height: 260px; }
  .se-prov-hero__container { margin-top: -150px; }
}

/* ── Slots search field ── */
.se-prov-slots__search-wrap {
  margin-bottom: 24px;
}

.se-prov-slots__search-box {
  position: relative;
  max-width: 400px;
  display: flex;
  align-items: center;
}

.se-prov-slots__search-ico {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
  flex-shrink: 0;
}

.se-prov-slots__search-input {
  width: 100%;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 44px 0 42px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.se-prov-slots__search-input::placeholder { color: var(--muted); }

.se-prov-slots__search-input:focus {
  border-color: var(--border2);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
}

/* Remove native clear button */
.se-prov-slots__search-input::-webkit-search-cancel-button { display: none; }

.se-prov-slots__search-clear {
  position: absolute;
  right: 12px;
  font-size: 13px;
  color: var(--muted);
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
  line-height: 1;
}

.se-prov-slots__search-clear:hover { color: var(--text); }

/* ── Expand trigger ── */
.se-prov-slots__trigger {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
  transition: opacity 0.3s, height 0.3s;
  overflow: hidden;
}

.se-prov-slots__trigger.is-hidden {
  opacity: 0;
  height: 0;
  padding: 0;
  pointer-events: none;
}

.se-prov-slots__expand-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 28px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.se-prov-slots__expand-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--glow-sm);
}

.se-prov-slots__expand-ico {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.se-prov-slots__expand-btn[aria-expanded="true"] .se-prov-slots__expand-ico {
  transform: rotate(180deg);
}

/* ── Overflow container ── */
.se-prov-slots__overflow {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.se-prov-slots__overflow.is-open {
  max-height: 9999px;
}

.se-prov-slots__overflow .se-cards-grid {
  padding-top: 24px;
}

/* ── No results ── */
.se-prov-slots__no-results {
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
  font-size: 15px;
}

.se-prov-slots__clear-link {
  color: var(--accent);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ══════════════════════════════════════════════════════════
   Provider page · mobile responsive fixes
══════════════════════════════════════════════════════════ */

/* Tablet and smaller: tighten container, neutralise sticky viz, reduce section padding */
@media (max-width: 960px) {
  /* Remove sticky from the overview viz sidebar once it stacks to 1-col — sticky in a
     single-column layout causes the chart to float over prose while scrolling */
  .se-prov-viz { position: relative; top: auto; }
}

@media (max-width: 640px) {
  /* Container: bring side gutters from 40px → 20px so content has more room */
  .se-container { padding: 0 20px; }

  /* Provider-page section vertical breathing room: 64px is too much on phone */
  .se-prov-overview,
  .se-prov-scores,
  .se-prov-slots  { padding-top: 40px; padding-bottom: 40px; }

  /* Hero inner: tighten gap and bottom padding */
  .se-prov-hero__inner { gap: 14px; padding-bottom: 24px; }

  /* Logo card: scale down slightly so it doesn't dominate the small hero */
  .se-prov-hero__logobox { width: 180px; height: 82px; padding: 12px 20px; }

  /* Search box: full-width on phone (max-width: 400px is too close to phone widths) */
  .se-prov-slots__search-box { max-width: 100%; }
}

/* Slot cards: 2-col at 768px → 140px per card at 375px is too narrow; drop to 1-col */
@media (max-width: 480px) {
  .se-cards-grid { grid-template-columns: 1fr; }

  /* Even tighter section padding on small phones */
  .se-prov-overview,
  .se-prov-scores,
  .se-prov-slots  { padding-top: 28px; padding-bottom: 28px; }
}

/* Very small phones: tighten gutters further */
@media (max-width: 400px) {
  .se-container { padding: 0 16px; }
}

/* ── Static page components (.spg-*) ─────────────────────────── */
.spg-lead{background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px 32px;margin:0 0 36px;position:relative;overflow:hidden}
.spg-lead::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% -20%,rgba(249,115,22,.12) 0%,transparent 65%);pointer-events:none}
.spg-lead p{color:var(--muted);font-size:1.05rem;line-height:1.7;max-width:640px;margin:0}
.spg-stat-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:12px;margin:28px 0}
.spg-stat{background:var(--surface3);border:1px solid var(--border);border-radius:var(--radius);padding:18px 16px;text-align:center}
.spg-stat__val{display:block;font-family:var(--font-disp);font-size:1.9rem;font-weight:700;color:var(--accent);line-height:1}
.spg-stat__label{display:block;font-family:var(--font-ui);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--muted);margin-top:6px}
.spg-box{background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius);padding:24px 28px;margin:24px 0}
.spg-box h3{font-family:var(--font-disp);color:var(--accent);font-size:.95rem;text-transform:uppercase;letter-spacing:.08em;margin:0 0 12px}
.spg-callout{border-left:3px solid var(--accent);background:rgba(249,115,22,.07);padding:16px 20px;margin:24px 0;border-radius:0 var(--radius-sm) var(--radius-sm) 0}
.spg-callout--amber{border-left-color:var(--amber);background:rgba(245,158,11,.07)}
.spg-callout--danger{border-left-color:#ef4444;background:rgba(239,68,68,.07)}
.spg-callout p{margin:0;color:var(--text)}
.spg-table{width:100%;border-collapse:collapse;margin:24px 0;font-size:.9rem;overflow-x:auto;display:block}
.spg-table thead,.spg-table tbody,.spg-table tr{display:table;width:100%;table-layout:fixed}
.spg-table th{background:var(--surface3);color:var(--accent);text-align:left;padding:10px 14px;font-family:var(--font-ui);font-size:11px;text-transform:uppercase;letter-spacing:.12em;white-space:nowrap}
.spg-table td{padding:10px 14px;border-bottom:1px solid var(--border);color:var(--text);vertical-align:top}
.spg-table tr:last-child td{border-bottom:none}
.spg-table tr:hover td{background:rgba(249,115,22,.04)}
.spg-chip{display:inline-block;background:rgba(249,115,22,.12);color:var(--accent);border:1px solid var(--border2);border-radius:4px;padding:2px 8px;font-size:11px;font-family:var(--font-ui);font-weight:700;letter-spacing:.06em;text-transform:uppercase}
.spg-chip--green{background:rgba(34,197,94,.12);color:#4ade80;border-color:rgba(34,197,94,.3)}
.spg-chip--red{background:rgba(239,68,68,.12);color:#f87171;border-color:rgba(239,68,68,.3)}
.spg-steps{list-style:none;padding:0;counter-reset:spg-step}
.spg-steps li{counter-increment:spg-step;padding:16px 16px 16px 56px;position:relative;background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius-sm);margin-bottom:10px}
.spg-steps li::before{content:counter(spg-step);position:absolute;left:14px;top:50%;transform:translateY(-50%);width:28px;height:28px;background:var(--accent);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--font-disp);font-weight:700;font-size:13px}
.spg-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:24px 0}
.spg-faq{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;margin:24px 0}
.spg-faq-item{border-bottom:1px solid var(--border)}
.spg-faq-item:last-child{border-bottom:none}
.spg-faq-q{width:100%;background:none;border:none;color:var(--text);padding:16px 20px;text-align:left;cursor:pointer;font-family:var(--font-body);font-size:.95rem;font-weight:600;display:flex;justify-content:space-between;align-items:center;gap:12px}
.spg-faq-q:hover{background:rgba(249,115,22,.04)}
.spg-faq-q svg{flex-shrink:0;transition:.2s;color:var(--accent)}
.spg-faq-item.open .spg-faq-q svg{transform:rotate(180deg)}
.spg-faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease;padding:0 20px}
.spg-faq-item.open .spg-faq-a{max-height:600px;padding:0 20px 16px}
.spg-faq-a p{color:var(--muted);font-size:.9rem;margin:0}
.spg-eyebrow{font-family:var(--font-ui);font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin:0 0 8px;display:block}
.spg-section-title{font-family:var(--font-disp);font-size:1.35rem;font-weight:700;color:var(--text);margin:0 0 4px}
.spg-divider{border:none;border-top:1px solid var(--border);margin:32px 0}
/* How Slots Work page */
.spg-rtp-bar-wrap{background:var(--surface3);border-radius:4px;height:10px;overflow:hidden;margin:10px 0}
.spg-rtp-bar{height:100%;background:linear-gradient(90deg,var(--accent),var(--amber));border-radius:4px}
.spg-vol-scale{display:flex;gap:6px;align-items:center;margin:16px 0}
.spg-vol-block{flex:1;height:32px;border-radius:4px}
.spg-vol-block.low{background:linear-gradient(135deg,#4ade80,#22c55e)}
.spg-vol-block.med{background:linear-gradient(135deg,var(--amber),#d97706)}
.spg-vol-block.high{background:linear-gradient(135deg,var(--accent),#dc2626)}
.spg-symbol-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:24px 0}
.spg-sym{background:var(--surface3);border:1px solid var(--border);border-radius:var(--radius-sm);padding:14px;text-align:center}
.spg-sym__icon{font-size:1.8rem;display:block;margin-bottom:6px}
.spg-sym__name{font-family:var(--font-ui);font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);display:block}
.spg-sym__desc{font-size:.75rem;color:var(--muted);margin-top:4px;line-height:1.4}
.spg-rng-anim{background:var(--surface3);border-radius:var(--radius);padding:20px;text-align:center;margin:20px 0;font-family:var(--mono);font-size:1.5rem;letter-spacing:.3em;color:var(--accent);cursor:pointer;user-select:none;border:1px solid var(--border)}
.spg-rng-anim:hover{box-shadow:var(--glow-sm)}
.spg-rng-label{font-family:var(--font-ui);font-size:10px;text-transform:uppercase;letter-spacing:.12em;color:var(--muted);text-align:center;margin-top:8px}
/* Responsible Gambling page */
.spg-rg-hero{background:linear-gradient(135deg,rgba(239,68,68,.08),rgba(245,158,11,.06));border:1px solid rgba(239,68,68,.3);border-radius:var(--radius-lg);padding:28px 32px;margin:0 0 32px}
.spg-rg-hero p{color:var(--text);font-size:1.05rem;line-height:1.7;margin:0}
.spg-quiz-item{background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius-sm);padding:14px 18px;margin-bottom:8px;display:flex;gap:14px;align-items:flex-start;cursor:pointer}
.spg-quiz-item:hover{border-color:var(--border2)}
.spg-quiz-item input[type=checkbox]{accent-color:var(--accent);margin-top:2px;flex-shrink:0;width:16px;height:16px}
.spg-quiz-item span{font-size:.9rem;line-height:1.5}
.spg-quiz-result{display:none;border-radius:var(--radius);padding:20px 24px;margin-top:16px;font-weight:600}
.spg-quiz-result.ok{background:rgba(34,197,94,.1);border:1px solid rgba(34,197,94,.3);color:#4ade80}
.spg-quiz-result.concern{background:rgba(245,158,11,.1);border:1px solid rgba(245,158,11,.3);color:var(--amber)}
.spg-quiz-result.urgent{background:rgba(239,68,68,.1);border:1px solid rgba(239,68,68,.3);color:#f87171}
.spg-tool-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px;margin:24px 0}
.spg-tool{background:var(--surface3);border:1px solid var(--border);border-radius:var(--radius);padding:20px}
.spg-tool__icon{font-size:1.8rem;margin-bottom:10px;display:block}
.spg-tool__title{font-family:var(--font-disp);font-weight:700;color:var(--text);font-size:.95rem;margin-bottom:6px}
.spg-tool__desc{font-size:.82rem;color:var(--muted);line-height:1.5}
/* Legal pages */
.spg-legal-toc{background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius);padding:20px 24px;margin:0 0 32px}
.spg-legal-toc h3{font-family:var(--font-ui);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:var(--accent);margin:0 0 12px}
.spg-legal-toc ol{padding-left:20px;margin:0}
.spg-legal-toc li{padding:3px 0;font-size:.88rem;color:var(--muted)}
.spg-legal-toc a{color:var(--muted);text-decoration:none}
.spg-legal-toc a:hover{color:var(--accent)}
.spg-legal-meta{display:flex;gap:24px;flex-wrap:wrap;margin:0 0 32px;padding:16px 20px;background:var(--surface3);border-radius:var(--radius-sm)}
.spg-legal-meta span{font-size:.82rem;color:var(--muted)}
.spg-legal-meta strong{color:var(--text)}
/* About page */
.spg-about-hero{background:var(--surface2);border:1px solid var(--border);border-radius:var(--radius-lg);padding:32px;margin:0 0 36px;position:relative;overflow:hidden}
.spg-about-hero::after{content:'';position:absolute;right:-40px;top:-40px;width:200px;height:200px;background:radial-gradient(circle,rgba(249,115,22,.18),transparent 70%);pointer-events:none}
.spg-about-hero p{color:var(--muted);font-size:1.05rem;line-height:1.7;max-width:620px;margin:0}
.spg-rating-method{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:14px;margin:24px 0}
.spg-rm-item{background:var(--surface3);border:1px solid var(--border);border-radius:var(--radius-sm);padding:18px}
.spg-rm-item__pct{font-family:var(--font-disp);font-size:1.5rem;font-weight:700;color:var(--accent);display:block;margin-bottom:4px}
.spg-rm-item__label{font-family:var(--font-ui);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--muted)}
.spg-rm-item__desc{font-size:.78rem;color:var(--muted);margin-top:8px;line-height:1.4}
.spg-timeline{border-left:2px solid var(--border2);padding-left:24px;margin:24px 0}
.spg-tl-item{position:relative;margin-bottom:20px}
.spg-tl-item::before{content:'';position:absolute;left:-29px;top:4px;width:10px;height:10px;background:var(--accent);border-radius:50%;border:2px solid var(--surface)}
.spg-tl-item__date{font-family:var(--font-ui);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--accent);margin-bottom:4px}
.spg-tl-item__text{font-size:.88rem;color:var(--muted);line-height:1.5}
.spg-mkt-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:10px;margin:20px 0}
.spg-mkt{background:var(--surface3);border:1px solid var(--border);border-radius:var(--radius-sm);padding:12px;text-align:center;font-size:.82rem;color:var(--muted)}
.spg-mkt strong{display:block;color:var(--text);font-size:.88rem;margin-bottom:2px}
@media(max-width:580px){.spg-grid-2{grid-template-columns:1fr}}

/* ── Homepage: What We Measure pillars ────────────────────────── */
.se-section--pillars { padding-top: 0; }
.se-section--pillars .se-section__head { justify-content: center; }
.se-section--pillars .se-section__title { text-align: center; }
.se-pillars-intro {
  font-size: 14px; line-height: 1.75; color: var(--muted);
  max-width: 620px; margin: 0 auto 28px; text-align: center;
}
.se-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.se-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s;
}
.se-pillar:hover { border-color: rgba(249,115,22,.35); }
.se-pillar__icon {
  color: var(--accent);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(249,115,22,.08);
  border-radius: 8px; flex-shrink: 0;
}
.se-pillar__title {
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  letter-spacing: .04em; color: var(--text); line-height: 1.3;
}
.se-pillar__body {
  font-size: 12.5px; color: var(--muted); line-height: 1.65;
  flex: 1;
}
@media (max-width: 840px) { .se-pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .se-pillars { grid-template-columns: 1fr; } }

/* ── Homepage: Top Providers strip ───────────────────────────── */
.se-prov-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.se-prov-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.se-prov-card:hover {
  border-color: rgba(249,115,22,.35);
  background: var(--surface2);
}
.se-prov-card__logo {
  width: 100%; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.se-prov-card__logo img {
  max-width: 100%; max-height: 36px;
  object-fit: contain; width: auto;
}
.se-prov-card__logo img.se-logo--invert { filter: brightness(0) invert(1); }
.se-prov-card__name-fb {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text);
  text-align: center;
}
.se-prov-card__count {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: .1em; color: var(--muted); text-transform: uppercase;
}
.se-prov-card__games {
  font-size: 10px; color: var(--muted); opacity: .7; line-height: 1.4;
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%;
}
@media (max-width: 840px) { .se-prov-strip { grid-template-columns: repeat(4, 1fr); gap: 8px; } }
@media (max-width: 580px) { .se-prov-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 380px) { .se-prov-strip { grid-template-columns: repeat(2, 1fr); } }

/* ── Stats bar ────────────────────────────────────────────── */
.se-stats-bar {
  display: flex; justify-content: center; gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.se-stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 32px; gap: 2px;
  border-right: 1px solid var(--border);
}
.se-stat-item:last-child { border-right: none; }
.se-stat-item__val {
  font-family: var(--font-disp); font-size: 28px; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.se-stat-item__lbl {
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
@media (max-width: 580px) {
  .se-stats-bar { flex-wrap: wrap; }
  .se-stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .se-stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .se-stat-item:last-child, .se-stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ── Mechanic card description ────────────────────────────── */
.se-mechanic-card__desc {
  font-size: 11px; line-height: 1.55; color: var(--muted);
  display: block; flex: 1;
  padding: 0 2px;
}

/* ── SEO editorial section ────────────────────────────────── */
.se-seo-ed {
  border-top: 1px solid var(--border);
  padding: 48px 0 56px;
}
.se-seo-ed__inner {
  max-width: var(--content-w, 1200px);
  margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.se-seo-ed__heading {
  font-family: var(--font-disp); font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 14px; line-height: 1.3;
}
.se-seo-ed__col p {
  font-size: 13px; line-height: 1.75; color: var(--muted);
  margin-bottom: 12px;
}
.se-seo-ed__col p:last-child { margin-bottom: 0; }
@media (max-width: 680px) {
  .se-seo-ed__inner { grid-template-columns: 1fr; gap: 28px; }
  .se-seo-ed { padding: 32px 0 40px; }
}

/* ── Top Providers intro ─────────────────────────────────── */
.se-tprov-intro {
  margin-bottom: 24px;
}

/* ── Centered section heads (H2 centred, "more" link absolute right) ── */
.se-section__head--centered {
  position: relative;
  justify-content: center;
}
.se-section__head--centered .se-section__title {
  text-align: center;
}
.se-section__head--centered .se-section__more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 580px) {
  .se-section__head--centered { justify-content: flex-start; }
  .se-section__head--centered .se-section__title { text-align: left; }
  .se-section__head--centered .se-section__more { position: static; transform: none; }
}

/* ── Section intro paragraph (shared) ──────────────────────── */
.se-section__intro {
  font-size: 14px; line-height: 1.75; color: var(--muted);
  max-width: 620px; margin: 0 auto 28px;
  text-align: center;
}

/* ── Catalog intro (archive-slot.php) ───────────────────── */
.se-catalog-intro {
  margin-bottom: 24px;
}
.se-catalog-intro__h1 {
  font-family: var(--font-disp); font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800; color: var(--text); line-height: 1.25; margin-bottom: 6px;
}
.se-catalog-intro__sub {
  font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0;
}

/* ── Internal links strip (single-slot.php) ─────────────── */
.se-gm-internal-links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.se-gm-ilink {
  font-size: 12px; font-weight: 600; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 20px; padding: 4px 12px; text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.se-gm-ilink:hover {
  background: var(--accent); color: #000;
}

/* ── Last updated in slot sub-line ──────────────────────── */
.se-gm__updated {
  color: var(--muted); font-size: 11px;
}
