/*
Theme Name: SpinHunter
Theme URI: https://spinhunter.co.uk
Description: UK casino affiliate review theme — Free Spins, Slots, Minimum Deposits
Version: 1.0.6
Author: SpinHunter
Text Domain: spinhunter
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  --color-gold:           #ffeb3b;
  --color-gold-dark:      #ffe000;
  --color-gold-hover:     #ffd700;
  --color-navy:           #0f1f3d;
  --color-navy-dark:      #0a1628;
  --color-navy-deeper:    #070e1c;
  --color-white:          #ffffff;
  --color-surface:        #f4f6fb;
  --color-surface-alt:    #f8f9fc;
  --color-border:         #d0d7e8;
  --color-border-light:   #e8ecf4;
  --color-text:           #0f1f3d;
  --color-text-primary:   #0f1f3d;
  --color-text-muted:     #6b7a99;
  --color-text-faint:     #9aa5b4;
  --color-link:           #0d35bb;

  --shadow-card:          0 2px 8px rgba(15,31,61,0.1);
  --shadow-card-hover:    0 4px 16px rgba(15,31,61,0.15);
  --shadow-dropdown:      0 8px 32px rgba(15,31,61,0.14);
  --shadow-panel:         0 2px 12px rgba(0,0,0,0.06);

  --max-width:            1280px;
  --gutter:               16px;

  --radius: 0px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-primary);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

a { color: var(--color-link); text-decoration: underline; }


img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
button { font-family: 'Inter', sans-serif; cursor: pointer; }

/* ============================================================
   SITE WRAPPER
   ============================================================ */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.site-content--homepage {
  flex: 1;
  width: 100%;
}

/* ============================================================
   HEADER — sticky, navy-dark, h-14 (56px)
   Matches React Header.tsx exactly
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--color-navy-dark);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 56px;
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 24px;
  line-height: 0;
}

/* Desktop Nav */
.site-header__nav {
  display: none;
  align-items: center;
  height: 56px;
  flex: 1;
  gap: 0;
}

@media (min-width: 1024px) {
  .site-header__nav { display: flex; }
}

.nav-item__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  padding: 0 12px;
  height: 56px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.nav-item__link:hover { color: #ffffff; }

.nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.10);
  margin: 0 8px;
}

/* Nav items with dropdowns */
.nav-item {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
}

.nav-item__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  padding: 0 12px;
  height: 56px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-item__trigger:hover,
.nav-item[data-open] .nav-item__trigger { color: #ffffff; }

.nav-item__trigger svg { transition: transform 0.2s; }
.nav-item[data-open] .nav-item__trigger svg { transform: rotate(180deg); }

/* Gold underline indicator */
.nav-item__indicator {
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
}
.nav-item[data-open] .nav-item__indicator {
  transform: scaleX(1);
  opacity: 1;
}

/* Standard Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-dropdown);
  z-index: 200;
  padding: 6px 0;
  display: none;
  animation: navDropdown 0.18s cubic-bezier(0.16,1,0.3,1) both;
}
.nav-dropdown.is-open { display: block; }

.nav-dropdown__header {
  padding: 0 12px 6px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 4px;
}
.nav-dropdown__cat-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-text-muted);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
  transition: background 0.12s;
}
.nav-dropdown a:hover { background: var(--color-surface); color: var(--color-navy); }
.nav-dropdown a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
  transition: background 0.12s;
}
.nav-dropdown a:hover::before { background: var(--color-gold); }

.nav-dropdown__footer {
  border-top: 1px solid var(--color-border-light);
  margin-top: 4px;
  padding-top: 4px;
}
.nav-dropdown__footer a {
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  color: var(--color-navy);
}
.nav-dropdown__footer a::before { display: none; }

/* Mega Menu — Slots */
.nav-megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-dropdown);
  z-index: 200;
  display: none;
  animation: navDropdown 0.18s cubic-bezier(0.16,1,0.3,1) both;
}
.nav-megamenu.is-open { display: block; }

.nav-megamenu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-border-light);
  background: var(--color-surface-alt);
}

.nav-megamenu__badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 8px;
  background: var(--color-navy);
  color: var(--color-gold);
}

.nav-megamenu__viewall {
  font-size: 12px;
  font-weight: 600;
  color: #ffeb3b;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.nav-megamenu__viewall:hover { color: var(--color-gold); }

.nav-megamenu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 420px;
  overflow-y: auto;
}

.nav-megamenu__grid::-webkit-scrollbar { width: 6px; }
.nav-megamenu__grid::-webkit-scrollbar-track { background: var(--color-surface); }
.nav-megamenu__grid::-webkit-scrollbar-thumb { background: rgba(15,31,61,0.2); }

.nav-megamenu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-border-light);
  transition: background 0.12s;
  color: var(--color-navy);
}
.nav-megamenu__item:nth-child(odd) { border-right: 1px solid var(--color-border-light); }
.nav-megamenu__item:hover { background: var(--color-surface); }

.nav-megamenu__thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--color-border-light);
}

.nav-megamenu__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.nav-megamenu__provider {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-megamenu__rtp {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-navy);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-megamenu__footer {
  padding: 10px 16px;
  border-top: 1px solid var(--color-border-light);
  text-align: right;
}
.nav-megamenu__footer a {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Mobile hamburger */

/* ── Mega Menu Slots — 4-Column Dynamic Layout ────────── */
.nav-megamenu.nav-megamenu--slots {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -410px;
  width: 820px;
  max-width: 95vw;
  background: #0a1628 !important;
  border: 1px solid rgba(255,235,59,0.12) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5) !important;
}
.nav-megamenu.nav-megamenu--slots::after {
  content: ''; position: absolute; top: -6px; left: 0; right: 0;
  height: 8px; background: transparent; pointer-events: auto;
}
.nav-megamenu--slots .nav-megamenu__header {
  background: rgba(255,235,59,0.05);
  border-bottom: 1px solid rgba(255,235,59,0.1);
}
.nav-megamenu__body--groups {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding: 0;
}
.nav-megamenu__col {
  padding: 16px 18px 20px;
  border-right: 1px solid rgba(255,235,59,0.07);
}
.nav-megamenu__col:last-child { border-right: none; }
.nav-megamenu__col-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: #ffeb3b; font-weight: 700; margin: 0 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,235,59,0.15);
}
.nav-megamenu__col-link {
  display: block; padding: 5px 0; color: #c8d0e0;
  font-size: 13px; font-weight: 500;
  text-decoration: none; transition: color 0.15s;
}
.nav-megamenu__col-link:hover { color: #ffeb3b; }
.nav-megamenu__col-viewall {
  display: block; margin-top: 10px; padding-top: 8px;
  border-top: 1px solid rgba(255,235,59,0.1);
  color: #ffeb3b; font-size: 12px; font-weight: 700;
  text-decoration: none; transition: color 0.15s;
}
.nav-megamenu__col-viewall:hover { color: #fff; }

/* ── Mobile Drawer Group Links ────────────────────────── */
.mobile-drawer__link--gold {
  color: #ffeb3b !important; font-weight: 700 !important;
}
.mobile-drawer__group-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.mobile-drawer__group-link:hover,
.mobile-drawer__group-link:active {
  background: rgba(255,235,59,0.06);
}
.mobile-drawer__group-label {
  flex: 1; color: #e0e6f0; font-size: 14px; font-weight: 600;
}
.mobile-drawer__group-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; height: 22px; padding: 0 7px;
  background: rgba(255,235,59,0.12); color: #ffeb3b;
  font-size: 11px; font-weight: 700; border-radius: 11px;
}
.mobile-drawer__group-link svg {
  color: rgba(255,255,255,0.3); flex-shrink: 0;
}

/* ── Browse Groups Grid (archive-slot_game.php) ───────── */
.browse-groups { margin-bottom: 32px; }
.browse-groups__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.browse-groups__card {
  display: flex; flex-direction: column; position: relative;
  padding: 24px 20px;
  background: linear-gradient(145deg, #162d52 0%, #0f1f3d 100%);
  border: 1px solid rgba(255,235,59,0.12);
  border-radius: 8px;
  text-decoration: none; color: #fff;
  transition: all 0.25s;
}
.browse-groups__card:hover {
  border-color: rgba(255,235,59,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.browse-groups__card-title {
  font-size: 16px; font-weight: 700; margin: 0 0 6px; color: #fff;
}
.browse-groups__card-count {
  font-size: 13px; color: rgba(255,235,59,0.7);
}
.browse-groups__card-arrow {
  position: absolute; top: 20px; right: 18px;
  font-size: 24px; font-weight: 300; color: rgba(255,235,59,0.4);
}

/* ── Landing Page Category Cards (SlotCatalog style) ──── */
.group-landing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 32px;
}
.group-landing-card {
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
  padding: 0; background: linear-gradient(145deg, #162d52 0%, #0f1f3d 100%);
  border: 1px solid rgba(255,235,59,0.08);
  text-decoration: none; color: #fff; transition: all 0.25s;
}
.group-landing-card:hover {
  border-color: rgba(255,235,59,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.group-landing-card__title {
  font-size: 16px; font-weight: 700; margin: 0;
  padding: 18px 16px 6px; color: #fff;
  text-align: center; width: 100%;
}
.group-landing-card__count {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 18px; margin: 6px 0 18px;
  background: rgba(255,235,59,0.08); border: 1px solid rgba(255,235,59,0.2);
  border-radius: 20px; color: #ffeb3b;
  font-size: 13px; font-weight: 600;
}
.group-landing-card__arrow {
  display: none;
}

/* ── Card image support ──────────────────────── */
.group-landing-card--has-img {
  min-height: 160px;
  justify-content: flex-end;
  overflow: hidden;
}
.group-landing-card__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 8px;
}
.group-landing-card--has-img .group-landing-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.85) 60%);
  z-index: 1;
  border-radius: 8px;
}
.group-landing-card--has-img .group-landing-card__title,
.group-landing-card--has-img .group-landing-card__count,
.group-landing-card--has-img .group-landing-card__arrow {
  position: relative;
  z-index: 2;
}

/* ── Responsive: Mega menu + groups + landing ────────── */
@media (max-width: 1100px) {
  .group-landing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav-megamenu.nav-megamenu--slots {
    width: 100vw; left: 0; margin-left: 0;
    position: fixed; top: 56px;
  }
  .nav-megamenu__body--groups { grid-template-columns: repeat(2, 1fr); }
  .browse-groups__grid { grid-template-columns: repeat(2, 1fr); }
  .group-landing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .browse-groups__grid { grid-template-columns: 1fr; }
  .group-landing-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .group-landing-card__title { font-size: 14px; padding: 14px 12px 4px; }
  .group-landing-card__count { font-size: 12px; padding: 5px 14px; margin: 4px 0 14px; }
}

.nav-mobile-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: #ffffff;
  margin-left: auto;
  transition: background 0.15s;
}
.nav-mobile-trigger:hover { background: rgba(255,255,255,0.10); }

@media (min-width: 1024px) {
  .nav-mobile-trigger { display: none; }
}

/* ============================================================
   MOBILE DRAWER — matches React mobile drawer exactly
   ============================================================ */
.mobile-drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0,0,0,0.50);
  display: none;
  animation: fadeOverlay 0.2s ease-out;
}
.mobile-drawer__overlay.is-open { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  height: 100%;
  width: 300px;
  max-width: 85vw;
  background: linear-gradient(180deg, #0a1628 0%, #0f1f3d 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  flex-shrink: 0;
}

.mobile-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.60);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.mobile-drawer__close:hover { color: #ffffff; background: rgba(255,255,255,0.10); }

.mobile-drawer__nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-drawer__section-title {
  padding: 16px 20px 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-gold);
}

.mobile-drawer__link {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.12s, background 0.12s;
}
.mobile-drawer__link:hover { color: #ffffff; background: rgba(255,255,255,0.05); }

.mobile-drawer__slot-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.12s;
}
.mobile-drawer__slot-link:hover { background: rgba(255,255,255,0.05); }

.mobile-drawer__slot-thumb {
  width: 32px;
  height: 32px;
  object-fit: cover;
  flex-shrink: 0;
}

.mobile-drawer__slot-name {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.mobile-drawer__slot-meta {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
}

/* RG note at bottom */
.mobile-drawer__rg {
  padding: 20px;
  font-size: 10px;
  color: rgba(255,255,255,0.30);
  line-height: 1.6;
}
.mobile-drawer__rg a { color: rgba(255,255,255,0.40); text-decoration: underline; }
.mobile-drawer__rg a:hover { color: var(--color-gold); }

/* ============================================================
   HERO — matches React HeroSection.tsx exactly
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.10) 100%);
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 56px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero__content { padding: 72px 32px; }
}

.hero__text {
  max-width: 576px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.90);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero__body {
  font-size: 0.875rem;
  color: #e8e8e8;
  opacity: 0.8;
  line-height: 1.6;
}

/* ============================================================
   PAGE LAYOUT — inner wrap (homepage)
   ============================================================ */
.homepage-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.homepage-body {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
}

.homepage-main {
  flex: 1;
  min-width: 0;
}

/* ============================================================
   SIDEBAR — CategorySidebar
   Matches React CategorySidebar.tsx: hidden lg:block w-64 (256px)
   ============================================================ */
.site-sidebar {
  width: 256px;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 1024px) {
  .site-sidebar { display: block; }
}

.sidebar-widget {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  margin-bottom: 16px;
}

.sidebar-widget__title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-text-muted);
  padding: 10px 12px 8px;
  border-bottom: 1px solid var(--color-border-light);
}

.sidebar-widget__link {
  display: block;
  padding: 7px 12px;
  font-size: 0.8125rem;
  color: var(--color-navy);
  border-bottom: 1px solid rgba(208,215,232,0.4);
  transition: background 0.12s, color 0.12s;
}
.sidebar-widget__link:hover {
  background: rgba(255,235,59,0.08);
  color: var(--color-navy);
}
.sidebar-widget__link.is-active {
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
}

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,235,59,0.5), transparent);
  margin: 24px 0;
}

/* ============================================================
   SLOT SECTION — Popular Slot Games
   Matches React CategoryBoxes.tsx
   ============================================================ */
.slot-section {
  padding: 24px 0;
}

.slot-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}

.slot-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.slot-section__subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 1024px) {
  .slot-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

/* Slot card thumbnail — matches felt-card in React */
.slot-card-thumb {
  display: block;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  color: var(--color-navy);
  text-decoration: none;
}
.slot-card-thumb:hover {
  border-color: rgba(255,235,59,0.5);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  color: var(--color-navy);
}

.slot-card-thumb__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.slot-card-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.slot-card-thumb:hover .slot-card-thumb__img { transform: scale(1.05); }

.slot-card-thumb__placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
}

.slot-card-thumb__body {
  padding: 12px;
}

.slot-card-thumb__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 2px;
}

.slot-card-thumb__provider {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.slot-card-thumb__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  padding-top: 8px;
  border-top: 1px solid rgba(255,235,59,0.10);
}

.slot-card-thumb__meta strong { color: var(--color-navy); }
.slot-card-thumb__meta-max { color: var(--color-navy); }

/* ============================================================
   SLOTS ARCHIVE GRID  —  archive-slot_game.php
   (.slots-grid + .slot-card mirrors .slot-grid + .slot-card-thumb)
   ============================================================ */
.slots-section {
  padding: 24px 0;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 768px)  { .slots-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .slots-grid { grid-template-columns: repeat(4, 1fr); } }

.slot-card {
  display: block;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  color: var(--color-navy);
  text-decoration: none;
}

.slot-card:hover {
  border-color: rgba(255,235,59,0.5);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  color: var(--color-navy);
}

.slot-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-surface);
}

.slot-card__img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.slot-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.slot-card:hover .slot-card__img { transform: scale(1.05); }

.slot-card__body {
  padding: 10px 12px 12px;
}

.slot-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  padding-top: 6px;
  border-top: 1px solid rgba(255,235,59,0.12);
}

/* ============================================================
   SLOTS LIST  —  archive-slot_game.php (Lovable list-row layout)
   ============================================================ */
.slots-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 24px;
}

.slots-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  text-decoration: none;
  color: var(--color-navy);
  transition: background 0.15s;
}

.slots-list__item:hover { background: var(--color-surface); }

@media (max-width: 768px) {
  .slots-list { grid-template-columns: 1fr; }
}

.slots-list__thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-surface);
}

.slots-list__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-gold);
  background: var(--color-navy);
}

.slots-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slots-list__info {
  flex: 1;
  min-width: 0;
}

.slots-list__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slots-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.slots-list__provider {
  font-weight: 600;
  color: var(--color-navy);
}

.slots-list__cta {
  flex-shrink: 0;
}

.slots-list__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 12px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.slots-list__item:hover .slots-list__btn {
  background: #ffe600;
}

@media (max-width: 479px) {
  .slots-list__item { gap: 10px; padding: 10px 12px; }
  .slots-list__thumb { width: 48px; height: 48px; }
  .slots-list__title { font-size: 0.875rem; }
  .slots-list__btn { font-size: 0.75rem; padding: 6px 10px; }
}

/* ============================================================
   CASINO SECTION
   Matches React CasinoList.tsx
   ============================================================ */
.casino-section {
  padding: 8px 0 24px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* Filter pills — matches React filter buttons */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(244,246,251,0.6);
  color: var(--color-text-muted);
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.filter-pill:hover {
  background: rgba(244,246,251,0.9);
  color: var(--color-navy);
}
.filter-pill.is-active {
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
}

/* Casino grid — 2 col mobile, 4 col desktop */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .casino-grid { gap: 16px; }
}

@media (min-width: 1024px) {
  .casino-grid { grid-template-columns: repeat(4, 1fr); }
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  margin-top: 16px;
}

/* ============================================================
   CASINO CARD — matches React CasinoCard.tsx exactly
   ============================================================ */
.casino-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(15,31,61,0.1);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.casino-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(15,31,61,0.15);
  transform: translateY(-4px);
}
.casino-card--featured {
  border-color: var(--color-gold);
}

.casino-card__inner {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
}
.casino-card__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.casino-card__inner > * { position: relative; z-index: 1; }

/* Row 1: Logo + Name */
.casino-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.casino-card__logo {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.casino-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.casino-card__logo-fallback {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-gold);
}

.casino-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Row 2: Bonus headline */
.casino-card__headline {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

/* Row 3: Wagering / Max Win */
.casino-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.casino-card__wagering { color: var(--color-navy); }
.casino-card__wagering--gold { color: var(--color-gold); font-weight: 600; }
.casino-card__max-win { color: var(--color-navy); }

/* Row 4: CTA button — matches React btn-shine */
.casino-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 36px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  transition: background 0.15s;
}
.casino-card__cta:hover { background: var(--color-gold-dark); color: var(--color-navy); }

/* Shine effect */
.casino-card__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.casino-card__cta:hover::before { left: 100%; }

/* Row 5: T&Cs */
.casino-card__tc {
  font-size: 11px;
  color: var(--color-text-faint);
  text-align: center;
  margin-top: 12px;
  padding-top: 6px;
  border-top: 1px solid var(--color-border-light);
  display: none;
}
@media (min-width: 640px) {
  .casino-card__tc { display: block; }
}

/* ============================================================
   CONTENT SECTIONS — matches React ContentSections.tsx
   ============================================================ */
.content-sections-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 8px 0 32px;
}

/* Individual content block = felt-card + border-primary/30 */
.content-block {
  background: #ffffff;
  border: 1px solid rgba(255,235,59,0.30);
  padding: 24px;
}

@media (min-width: 1024px) {
  .content-block { padding: 32px; }
}

.content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.content-block p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Two-column layout inside content block */
.content-block__two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .content-block__two-col { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.content-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 4px 0;
}
.check-list li::before {
  content: '✓';
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Steps (numbered) */
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .steps-row { grid-template-columns: repeat(3, 1fr); }
}

.step-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--color-border);
}

.step-box__num {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-box__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
}

/* Image steps 3-col */
.img-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .img-steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.img-step__img-wrap {
  aspect-ratio: 1;
  border: 1px solid rgba(255,235,59,0.2);
  overflow: hidden;
  margin-bottom: 16px;
}
.img-step__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-step h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.img-step p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Free spins tags row */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,235,59,0.20);
}

.tag-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255,235,59,0.10);
  color: var(--color-navy);
  border: 1px solid rgba(255,235,59,0.20);
  transition: background 0.15s;
}
.tag-link:hover { background: rgba(255,235,59,0.20); color: var(--color-navy); }

/* Table */
.content-table {
  width: 100%;
  font-size: 0.875rem;
  overflow-x: auto;
}
.content-table table { min-width: 500px; }
.content-table thead tr {
  background: var(--color-navy);
  color: #ffffff;
}
.content-table th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
}
.content-table td {
  padding: 12px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border-light);
}
.content-table tbody tr:nth-child(even) { background: var(--color-surface-alt); }
.content-table tbody tr:nth-child(odd)  { background: #ffffff; }
.content-table td:first-child { color: var(--color-navy); font-weight: 600; }

/* Provider cards */
.providers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .providers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .providers-grid { grid-template-columns: repeat(3, 1fr); } }

.provider-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 16px;
  box-shadow: 0 2px 8px rgba(15,31,61,0.05);
  transition: border-color 0.2s;
}
.provider-card:hover { border-color: rgba(15,31,61,0.30); }

.provider-card__logo-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.provider-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.provider-card__logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.provider-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.provider-card p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Dark callout box */
.callout-dark {
  background: var(--color-navy);
  color: #ffffff;
  padding: 20px;
  margin: 8px 0;
}
.callout-dark h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.callout-dark p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Bonus type cards 2-col */
.bonus-type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .bonus-type-grid { grid-template-columns: repeat(2, 1fr); } }

.bonus-type-card {
  border: 1px solid rgba(255,235,59,0.20);
  padding: 20px;
  background: rgba(255,235,59,0.05);
}
.bonus-type-card .icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.bonus-type-card .icon-row svg { color: var(--color-gold); flex-shrink: 0; }
.bonus-type-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
}
.bonus-type-card p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.bonus-type-card a {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bonus-type-card a:hover { opacity: 0.7; }

/* Min deposit tiers */
.deposit-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.deposit-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(255,235,59,0.20);
  padding: 12px;
  box-shadow: var(--shadow-card);
}
.deposit-tier__info h4 { font-size: 0.875rem; font-weight: 600; color: var(--color-navy); }
.deposit-tier__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  background: var(--color-gold);
  color: var(--color-navy);
  margin-left: 8px;
}
.deposit-tier__info p { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 2px; }
.deposit-tier__link {
  font-size: 0.75rem;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 12px;
}

/* Payment methods grid */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .payment-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .payment-grid { grid-template-columns: repeat(6, 1fr); } }

.payment-card {
  background: #ffffff;
  border: 1px solid rgba(255,235,59,0.20);
  padding: 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.payment-card:hover { border-color: rgba(255,235,59,0.40); }
.payment-card__name { font-size: 1.25rem; font-weight: 700; color: var(--color-navy); display: block; margin-bottom: 8px; }
.payment-card__sub  { font-size: 0.75rem; color: var(--color-text-muted); }

/* Trust badges grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-card {
  background: #ffffff;
  border: 1px solid rgba(255,235,59,0.20);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.trust-card svg { color: var(--color-gold); margin-bottom: 12px; }
.trust-card h3 { font-size: 0.875rem; font-weight: 600; margin-bottom: 8px; }
.trust-card p  { font-size: 0.875rem; color: var(--color-text-muted); }

/* Evaluation criteria 3-col */
.eval-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 1024px) { .eval-grid { grid-template-columns: repeat(3, 1fr); } }

.eval-card {
  background: #ffffff;
  border: 1px solid rgba(255,235,59,0.30);
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}
.eval-card__icon-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.eval-card__icon { width: 40px; height: 40px; overflow: hidden; flex-shrink: 0; }
.eval-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.eval-card h3 { font-size: 1rem; font-weight: 600; color: var(--color-navy); }
.eval-card p  { font-size: 0.875rem; color: var(--color-text-muted); flex: 1; margin-bottom: 8px; line-height: 1.6; }

/* Accordion (evaluation) */
.faq-accordion { width: 100%; }
.faq-item { border-bottom: 1px solid rgba(255,235,59,0.20); }
.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-trigger svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  color: var(--color-text-muted);
}
.faq-item.is-open .faq-trigger svg { transform: rotate(180deg); }

.faq-body {
  display: none;
  padding-bottom: 14px;
}
.faq-body.is-open { display: block; }
.faq-body p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.7; }

/* Checklist inside content */
.eval-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) { .eval-checklist { grid-template-columns: repeat(2, 1fr); } }

.eval-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.eval-checklist__item svg { color: var(--color-gold); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }

/* Responsible gambling orgs */
.rg-orgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 1024px) { .rg-orgs { grid-template-columns: repeat(4, 1fr); } }

.rg-org-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(255,235,59,0.20);
  padding: 16px;
  text-align: center;
  transition: border-color 0.2s;
  color: var(--color-navy);
}
.rg-org-card:hover { border-color: rgba(255,235,59,0.40); color: var(--color-navy); }
.rg-org-card span:first-child { display: block; font-weight: 600; margin-bottom: 4px; }
.rg-org-card span:last-child { font-size: 0.75rem; color: var(--color-text-muted); }

/* Trust badges row (homepage bottom) */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  padding: 20px 24px;
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-badge-item__img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.trust-badge-item__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.trust-badge-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-navy);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn-gold:hover { background: var(--color-gold-dark); color: var(--color-navy); }

.btn-navy {
  background: var(--color-navy);
  color: #ffffff;
}
.btn-navy:hover { background: #152848; color: #ffffff; }

.btn-outline-navy {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn-outline-navy:hover { background: var(--color-navy); color: #ffffff; }

.btn-sm  { padding: 8px 16px; font-size: 0.875rem; }
.btn-md  { padding: 10px 20px; font-size: 0.9375rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }

/* BEM double-dash button aliases — used in single CPT templates */
.btn--gold {
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
}
.btn--gold:hover { background: var(--color-gold-dark, #e6d200); color: var(--color-navy); }
.btn--primary {
  background: var(--color-navy);
  color: #fff;
  font-weight: 700;
}
.btn--primary:hover { background: #152848; }
.btn--sm  { padding: 8px 16px; font-size: 0.875rem; }
.btn--md  { padding: 10px 20px; font-size: 0.9375rem; }
.btn--lg  { padding: 14px 28px; font-size: 1rem; font-weight: 700; letter-spacing: 0.01em; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--color-text-muted); }
.breadcrumb a:hover { color: var(--color-navy); }
.breadcrumb__sep { color: var(--color-border); }
.breadcrumb__current { color: var(--color-navy); font-weight: 500; }

/* ============================================================
   PAGE TEMPLATES — Free Spins / Min Deposit / Bonus
   Matches React FreeSpinsTemplate / MinimumDepositTemplate
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.10) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 10;
  padding: 56px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.page-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.90);
  max-width: 520px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Page inner layout */
.page-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 16px 48px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.page-main {
  flex: 1;
  min-width: 0;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  padding: 16px;
  text-align: center;
}
.stat-card__value { font-size: 1.5rem; font-weight: 800; color: var(--color-navy); display: block; }
.stat-card__label { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 4px; }

/* Slot archive grid */
.slots-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px)  { .slots-archive-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .slots-archive-grid { grid-template-columns: repeat(4, 1fr); } }

/* Category hub grid */
.category-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px)  { .category-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .category-hub-grid { grid-template-columns: repeat(4, 1fr); } }

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border-light);
  transition: transform 0.3s;
}
.category-card:hover { transform: translateY(-2px); }
.category-card img   { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.category-card:hover img { transform: scale(1.05); }
.category-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}

/* ============================================================
   SINGLE CASINO / SINGLE SLOT
   ============================================================ */
.review-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-light);
  padding: 32px 0;
}
.review-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.review-hero__logo {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.review-hero__logo img { width: 100%; height: 100%; object-fit: contain; }
.review-hero__meta { flex: 1; min-width: 200px; }
.review-hero__name { font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.review-hero__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.review-hero__stars { color: var(--color-gold); font-size: 1.125rem; }
.review-hero__score { font-size: 0.875rem; font-weight: 700; color: var(--color-navy); }
.review-hero__badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-gold);
  color: var(--color-navy);
}

/* Score breakdown */
.score-breakdown {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  padding: 20px;
  margin-bottom: 24px;
}
.score-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.score-row:last-child { border-bottom: none; }
.score-row__label { font-size: 0.875rem; font-weight: 600; color: var(--color-navy); flex: 1; }
.score-bar { flex: 2; height: 6px; background: var(--color-border-light); }
.score-bar__fill { height: 100%; background: var(--color-gold); }
.score-row__num { font-size: 0.875rem; font-weight: 700; color: var(--color-navy); width: 32px; text-align: right; }

/* ============================================================
   ABOUT / CONTACT / LEGAL PAGES
   ============================================================ */
.about-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.70), rgba(0,0,0,0.30));
}
.about-hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
}
.about-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.about-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  padding: 24px 16px;
}
.team-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 3px solid var(--color-gold);
}
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.75rem; color: var(--color-text-muted); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.team-card p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; }

/* Contact form */
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  padding: 32px;
  max-width: 600px;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--color-navy); margin-bottom: 6px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--color-navy);
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--color-navy); }
.form-textarea { resize: vertical; min-height: 120px; }

/* Legal / policy pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.25rem; margin: 32px 0 12px; }
.legal-content h3 { font-size: 1rem; margin: 24px 0 8px; }
.legal-content p  { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.legal-content li { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.8; }
.legal-content a  { color: var(--color-navy); text-decoration: underline; }

/* ============================================================
   SITE FOOTER — matches React Footer.tsx exactly
   ============================================================ */
.site-footer { margin-top: 64px; }

.site-footer__main {
  background: var(--color-navy-dark);
  padding: 48px 0 40px;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Desktop: 5 columns */
@media (min-width: 1280px) {
  .site-footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 0.9fr 0.9fr;
    gap: 40px;
  }
}
/* Tablet lg: brand row + 4 cols */
@media (min-width: 1024px) and (max-width: 1279px) {
  .footer-brand { margin-bottom: 40px; }
  .site-footer__inner { display: block; }
  .footer-cols-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
/* Tablet md: 2-col grid */
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-brand { margin-bottom: 40px; }
  .site-footer__inner { display: block; }
  .footer-cols-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .footer-brand { margin-bottom: 32px; }
}

/* Brand block */
.footer-brand { }

.footer-brand__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  margin-top: 8px;
  font-weight: 500;
}

.footer-brand__desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.7;
  max-width: 260px;
  margin-top: 16px;
}

.footer-brand__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.footer-brand__social a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-brand__social a:hover { color: var(--color-gold); }

/* Footer columns */
.footer-col__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-col__toggle-icon {
  display: none;
  color: rgba(255,255,255,0.40);
  font-size: 1rem;
  transition: transform 0.25s;
}

@media (max-width: 767px) {
  .footer-col__toggle-icon { display: block; }
  .footer-col--mobile .footer-col__title {
    cursor: pointer;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0;
  }
  .footer-col--mobile .footer-col__links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s;
    opacity: 0;
  }
  .footer-col--mobile.is-open .footer-col__links {
    max-height: 600px;
    opacity: 1;
    padding-bottom: 12px;
  }
  .footer-col--mobile.is-open .footer-col__toggle-icon {
    transform: rotate(180deg);
    color: var(--color-gold);
  }
}

.footer-col__link {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 8px;
  transition: color 0.15s;
  line-height: 1.5;
}
.footer-col__link:hover { color: rgba(255,255,255,0.85); }

/* Footer divider */
.site-footer__divider {
  background: var(--color-navy-deeper);
  height: 1px;
  opacity: 0.60;
}

/* Responsible gambling bar */
.site-footer__warning {
  background: var(--color-navy-deeper);
  padding: 32px 0;
}

.site-footer__warning-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.site-footer__warning p {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer__warning a {
  color: rgba(255,255,255,0.60);
  text-decoration: underline;
  transition: color 0.15s;
}
.site-footer__warning a:hover { color: var(--color-gold); }

.site-footer__warning-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.site-footer__warning-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
  text-decoration: none;
}
.site-footer__warning-links a:hover { color: rgba(255,255,255,0.60); }

.site-footer__legal {
  font-size: 10px;
  color: rgba(255,255,255,0.20);
  line-height: 1.7;
  text-align: center;
  margin-top: 24px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes navDropdown {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

.text-gold    { color: var(--color-gold); }
.text-navy    { color: var(--color-navy); }
.text-muted   { color: var(--color-text-muted); }
.text-white   { color: #ffffff; }
.font-bold    { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.mt-auto      { margin-top: auto; }
.w-full       { width: 100%; }

.prose p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 12px; }
.prose h3 { font-size: 1.125rem; font-weight: 700; color: var(--color-navy); margin: 24px 0 8px; }

/* ============================================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================================ */
.admin-bar .site-header {
  top: 32px;
}
/* .admin-bar .nav-megamenu.nav-megamenu--slots { top: 88px; } -- removed: now absolute */
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ============================================================
   CONTENT WITH SIDEBAR LAYOUT
   Used by: page-free-spins-template, page-minimum-deposit-template,
   page-bonus-template, page-about, page-contact, sidebar pages
   ============================================================ */
.site-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.content-with-sidebar {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 0 48px;
}

.main-content {
  flex: 1;
  min-width: 0;
}

/* Sidebar — left column, sticky */
.sidebar {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 72px;
  display: none;
}
@media (min-width: 1024px) {
  .sidebar { display: block; }
}

.sidebar__sticky {
  overflow-y: auto;
  max-height: calc(100vh - 80px);
}

.sidebar__panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  margin-bottom: 16px;
  padding: 16px;
}

.sidebar__panel--gold {
  background: rgba(255,235,59,0.08);
  border-color: rgba(255,235,59,0.30);
}

.sidebar__panel--navy {
  background: var(--color-navy-dark);
  border: none;
}

.sidebar__title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.sidebar__trust-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.sidebar__trust-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.sidebar__rg-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.sidebar__rg-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 8px;
}

.sidebar__rg-link {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
}
.sidebar__rg-link:hover { color: var(--color-gold); }

/* Category accordion in sidebar */
.sidebar__cats { display: flex; flex-direction: column; gap: 4px; }

.sidebar__cat-group { }

.sidebar__cat-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-border-light);
  padding: 8px 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
}
.sidebar__cat-icon { font-size: 0.75rem; color: var(--color-text-muted); transition: transform 0.2s; }
.sidebar__cat-trigger.is-open .sidebar__cat-icon { transform: rotate(90deg); }

.sidebar__cat-links {
  display: none;
  flex-direction: column;
  padding: 4px 0;
}
.sidebar__cat-links.is-open { display: flex; }

.sidebar__cat-link {
  display: block;
  padding: 5px 8px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  transition: color 0.12s, background 0.12s;
}
.sidebar__cat-link:hover { color: var(--color-navy); background: rgba(255,235,59,0.06); }

/* ============================================================
   CONTENT CARD — felt-card style with gold border
   ============================================================ */
.content-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  padding: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .content-card { padding: 28px 32px; } }

.content-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
  border-left: 3px solid var(--color-gold);
  padding-left: 12px;
}

/* Prose inside content-card */
.content-card .prose p,
.content-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.content-card .prose h3,
.content-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 20px 0 8px;
}
.content-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.content-card li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  padding: 2px 0;
}

/* ============================================================
   PAGE HERO — split layout (FreeSpins / MinDeposit pages)
   ============================================================ */
.page-hero--split {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-navy-dark);
  margin-bottom: 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-hero--split { grid-template-columns: 1fr 1fr; }
}

.page-hero__text {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero__title .text-gold { color: var(--color-gold); }
.page-hero__title .text-navy { color: var(--color-navy); }

.page-hero__subtitle {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.10);
}

.page-hero__image {
  display: none;
  position: relative;
  min-height: 200px;
}
@media (min-width: 1024px) { .page-hero__image { display: block; } }
.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ============================================================
   PAGE SECTIONS — used in free-spins / min-deposit / bonus templates
   ============================================================ */
.content-section {
  margin-bottom: 24px;
}

.bonus-table-section {
  margin-bottom: 24px;
}

.faq-section {
  margin-bottom: 24px;
}

.related-pages-section {
  margin-bottom: 24px;
}

.tips-section {
  margin-bottom: 24px;
}

/* Related pills grid */
.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.related-grid--6col { /* just flexwrap */ }
.related-grid--5col { /* just flexwrap */ }
.related-grid--4col { /* just flexwrap */ }

.related-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--color-surface);
  color: var(--color-navy);
  border: 1px solid var(--color-border-light);
  transition: background 0.15s, border-color 0.15s;
}
.related-pill:hover {
  background: rgba(255,235,59,0.10);
  border-color: rgba(255,235,59,0.35);
  color: var(--color-navy);
}

/* ============================================================
   BONUS TABLE
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border-light);
  margin-bottom: 12px;
}

.bonus-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
  min-width: 480px;
}

.bonus-table thead tr {
  background: var(--color-navy);
}

.bonus-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.bonus-table td {
  padding: 11px 16px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: middle;
}

.bonus-table tbody tr:nth-child(even) { background: var(--color-surface-alt); }
.bonus-table tbody tr:nth-child(odd)  { background: #ffffff; }

.table-casino-name {
  font-weight: 700;
  color: var(--color-navy) !important;
}

.table-bonus {
  font-weight: 700;
  color: var(--color-navy) !important;
}

.bonus-code {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);
  background: rgba(255,235,59,0.15);
  border: 1px dashed rgba(255,235,59,0.40);
  padding: 3px 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.bonus-code:hover { background: rgba(255,235,59,0.30); }

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: table-cell; } }

/* ============================================================
   TIPS GRID — Expert Tips section (bonus pages)
   ============================================================ */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .tips-grid { grid-template-columns: repeat(3, 1fr); } }

.tip-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tip-card__step {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-border-light);
  font-family: 'Courier New', monospace;
  line-height: 1;
}

.tip-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
}

.tip-card__body {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   CATEGORY ITEMS GRID — CategoryTemplate page
   ============================================================ */
.page-header {
  margin-bottom: 28px;
}

.page-header__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.page-header__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.page-header__intro {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-left: 3px solid var(--color-gold);
  padding: 14px 18px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.category-items-section { margin-bottom: 32px; }

.category-items-grid {
  display: grid;
  gap: 12px;
}

.category-items-grid--3col {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .category-items-grid--3col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .category-items-grid--3col { grid-template-columns: repeat(3, 1fr); } }

.category-items-grid--2col {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .category-items-grid--2col { grid-template-columns: repeat(2, 1fr); } }

.category-item-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: var(--color-navy);
  position: relative;
}
.category-item-card:hover {
  border-color: rgba(255,235,59,0.50);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  color: var(--color-navy);
}

.category-item-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.category-item-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

.category-item-card__arrow {
  display: block;
  margin-top: 12px;
  font-size: 1.25rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}

/* ============================================================
   FAQ ACCORDION — parts/faq-accordion.php
   ============================================================ */
.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-border-light);
  padding: 14px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color 0.15s;
}
.faq-item__trigger:hover { color: var(--color-navy); }

.faq-item__question {
  flex: 1;
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: transform 0.2s, color 0.2s;
  width: 20px;
  text-align: center;
  line-height: 1;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  color: var(--color-navy);
}

.faq-item__answer {
  padding: 0;
  overflow: hidden;
}
.faq-item__answer[hidden] { display: none; }
.faq-item__answer:not([hidden]) { padding-bottom: 14px; }

.faq-item__answer-inner {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ============================================================
   AUTHOR BOX — parts/author-box.php
   ============================================================ */
.author-box {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  padding: 20px 24px;
  margin-top: 32px;
}

.author-box__inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.author-box__avatar-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(15,31,61,0.15);
  overflow: hidden;
}

.author-box__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-box__body {
  flex: 1;
  min-width: 0;
}

.author-box__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.author-box__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.author-box__role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
  background: rgba(15,31,61,0.07);
  padding: 3px 8px;
}

.author-box__bio {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.author-box__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.author-box__meta-item {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   ABOUT PAGE — page-about.php
   ============================================================ */
.about-mission {
  margin-bottom: 24px;
}

.about-mission__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.about-mission__updated {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.about-mission__body p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-values { margin-bottom: 24px; }

.about-values__intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .about-values__grid { grid-template-columns: repeat(2, 1fr); } }

.about-value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
}

.about-value-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.about-value-item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.about-value-item__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-inline-link { color: var(--color-navy); text-decoration: underline; }
.about-inline-link:hover { color: var(--color-gold); }

/* Methodology section */
.about-methodology { margin-bottom: 24px; }

.about-methodology__intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step-counter;
  padding: 0;
  list-style: none;
}

.about-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.about-step:last-child { border-bottom: none; }

.about-step__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-border-light);
  font-family: 'Courier New', monospace;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
}

.about-step__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.about-step__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-methodology__cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-light);
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 2px solid var(--color-navy);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  background: transparent;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.btn--outline:hover { background: var(--color-navy); color: #ffffff; }

/* Team grid */
.about-team { margin-bottom: 32px; }

.about-team__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.about-team__intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .about-team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .about-team__grid { grid-template-columns: repeat(3, 1fr); } }

.about-team__empty {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.about-author-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  padding: 20px;
}

.about-author-card__header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.about-author-card__avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 2px solid rgba(15,31,61,0.12);
  flex-shrink: 0;
}

.about-author-card__avatar-fallback {
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.about-author-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.about-author-card__role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.about-author-card__bio {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-author-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border-light);
}

.about-author-card__meta-item {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.about-author-card__meta-item--verified {
  color: var(--color-navy);
  font-weight: 700;
}

.about-author-card__social {
  display: flex;
  gap: 8px;
}

.about-author-card__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
  transition: background 0.15s, border-color 0.15s;
}
.about-author-card__social-link:hover { background: var(--color-gold); border-color: var(--color-gold); }

/* Compliance section */
.about-compliance { margin-bottom: 24px; }

.about-compliance__body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-compliance__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.about-compliance__org-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  color: var(--color-navy);
  transition: border-color 0.15s;
}
.about-compliance__org-link:hover { border-color: rgba(255,235,59,0.40); color: var(--color-navy); }
.about-compliance__org-link strong { font-weight: 700; font-size: 0.9375rem; }
.about-compliance__helpline { font-size: 0.8125rem; color: var(--color-text-muted); }

.about-disclosure {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
  margin-top: 16px;
}

.about-disclosure__link { color: var(--color-navy); text-decoration: underline; }
.about-disclosure__link:hover { color: var(--color-gold); }

/* ============================================================
   LEGAL DISCLAIMER — small text at bottom of pages
   ============================================================ */
.legal-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  line-height: 1.8;
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
  margin-top: 24px;
}

/* ============================================================
   CASINO CARD � new elements (badges, rating, code, exclusive)
   ============================================================ */

/* Name + rating stacked wrapper */
.casino-card__name-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

/* Badge strip */
.casino-card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.casino-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 0;
}
.casino-badge--new {
  background: #ffeb3b;
  color: #0f1f3d;
}
.casino-badge--exclusive {
  background: #0f1f3d;
  color: #ffeb3b;
  border: 1px solid #ffeb3b;
}

/* Star rating row */
.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.casino-card__star { flex-shrink: 0; }
.casino-card__star--half { opacity: 0.6; }
.casino-card__rating-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ffeb3b;
  margin-left: 4px;
}

/* Meta items */
.casino-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.casino-card__meta-label {
  font-size: 0.6875rem;
  color: var(--color-text-faint, #9aa5b4);
}

/* Bonus code */
.casino-card__code-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.casino-card__code-label {
  font-size: 0.6875rem;
  color: var(--color-text-faint, #9aa5b4);
}
.casino-card__code {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 235, 59, 0.1);
  border: 1px dashed rgba(255, 235, 59, 0.4);
  color: #ffeb3b;
  padding: 2px 8px;
  letter-spacing: 0.05em;
}

/* Exclusive card variant */
.casino-card--exclusive {
  border-color: rgba(255, 235, 59, 0.6) !important;
}
.casino-card--exclusive .casino-card__inner::before {
  background: linear-gradient(135deg, rgba(255,235,59,0.12) 0%, transparent 60%);
}

/* Hidden card — show-more.js reveals these */
.casino-card--hidden {
  display: none !important;
}

/* ============================================================
   SHOW MORE BUTTON
   ============================================================ */
.casino-grid-wrap { position: relative; }
.show-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.show-more-btn:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}
.show-more-btn__arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.show-more-btn:hover .show-more-btn__arrow {
  transform: translateY(3px);
}

@keyframes sh-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CASINO HERO — full hero section for single-casino.php
   ============================================================ */
.casino-hero {
  position: relative;
  background: var(--color-navy);
  border: 1px solid rgba(255, 235, 59, 0.15);
  padding: 32px 24px;
  margin-bottom: 20px;
  overflow: hidden;
}
.casino-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.casino-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-navy) 40%, transparent 100%);
}
.casino-hero__content {
  position: relative;
  z-index: 1;
}
.casino-hero__identity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.casino-hero__logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
  background: white;
  padding: 6px;
}
.casino-hero__title {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.casino-hero__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.casino-hero__stars .star { font-size: 1rem; }
.casino-hero__rating-num { font-size: 0.875rem; color: var(--color-gold); font-weight: 700; }
.casino-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.casino-hero__offer { margin-bottom: 16px; }
.casino-hero__spins {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: 0 0 4px;
}
.casino-hero__subtext {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 12px;
}
.casino-hero__code-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.casino-hero__code-label { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.casino-hero__code {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.9375rem;
  background: rgba(255,235,59,0.12);
  border: 1px dashed rgba(255,235,59,0.5);
  color: var(--color-gold);
  padding: 3px 10px;
  cursor: pointer;
  letter-spacing: 0.05em;
}
.casino-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.casino-hero__cta:hover { opacity: 0.88; }
.casino-hero__tc {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.casino-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SLOT HERO additions
   ============================================================ */
.slot-hero__subtext {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin: 8px 0 12px;
}
.slot-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
  padding: 10px 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.slot-hero__cta:hover { opacity: 0.88; }

/* ============================================================
   sh-* CONTENT CLASSES — for n8n main_body HTML
   ============================================================ */
.sh-main-body { margin-bottom: 24px; }

.sh-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,235,59,0.1);
  padding: 24px;
  margin-bottom: 20px;
}
.sh-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gold);
}

.sh-highlight-box {
  background: rgba(255,235,59,0.06);
  border-left: 3px solid var(--color-gold);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
}

.sh-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}
@media (max-width: 600px) {
  .sh-pros-cons { grid-template-columns: 1fr; }
}
.sh-pros-cons__col { padding: 16px; }
.sh-pros-cons__col--pros { background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2); }
.sh-pros-cons__col--cons { background: rgba(239,68,68,0.07);  border: 1px solid rgba(239,68,68,0.2); }
.sh-pros-cons__heading { font-size: 0.875rem; font-weight: 700; margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.sh-pros-cons__col--pros .sh-pros-cons__heading { color: #4ade80; }
.sh-pros-cons__col--cons .sh-pros-cons__heading { color: #f87171; }
.sh-pros-cons__list { list-style: none; padding: 0; margin: 0; }
.sh-pros-cons__list li { padding: 4px 0; font-size: 0.875rem; color: rgba(255,255,255,0.85); }
.sh-pros-cons__col--pros .sh-pros-cons__list li::before { content: '✅ '; }
.sh-pros-cons__col--cons .sh-pros-cons__list li::before { content: '❌ '; }

.sh-table-wrap { overflow-x: auto; margin: 16px 0; }
.sh-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}
.sh-table-wrap th {
  background: rgba(255,235,59,0.1);
  color: var(--color-gold);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,235,59,0.2);
}
.sh-table-wrap td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sh-table-wrap tr:last-child td { border-bottom: none; }

/* sh-intro-box */
.sh-intro-box {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--color-gold);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.sh-intro-box__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

/* ============================================================
   AUTHOR BOX ADDITIONS
   ============================================================ */
.author-box__speciality {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-gold);
  background: rgba(255,235,59,0.1);
  border: 1px solid rgba(255,235,59,0.2);
  padding: 2px 8px;
  white-space: nowrap;
  align-self: flex-start;
}
.author-box__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.author-box__avatar-fallback {
  width: 64px;
  height: 64px;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 1.5rem;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-box__meta-item--ukgc {
  color: var(--color-gold);
  font-weight: 600;
}

/* ============================================================
   CASINO HERO TC text fix
   ============================================================ */
.casino-hero__tc {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

/* ── Main Body Content — n8n / ssb-block sections ── */
.sh-main-body {
  margin: 32px 0;
  background: linear-gradient(135deg, #0f1f3d 0%, #132a4e 100%);
  border: 1px solid rgba(255,235,59,0.1);
  border-left: 3px solid #ffeb3b;
  padding: 28px 24px;
}
.sh-main-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffeb3b;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,235,59,0.25);
}
.sh-main-body h2:first-child { margin-top: 0; }
.sh-main-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  margin: 28px 0 12px;
}
.sh-main-body h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 20px 0 8px;
}
.sh-main-body p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
}
.sh-main-body p:last-child { margin-bottom: 0; }
.sh-main-body ul,
.sh-main-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.sh-main-body li { margin-bottom: 6px; }
.sh-main-body a { color: #ffeb3b; text-decoration: underline; }
.sh-main-body a:hover { opacity: 0.85; }
.sh-main-body strong { color: #fff; }
.sh-main-body hr {
  border: none;
  border-top: 1px solid rgba(255,235,59,0.15);
  margin: 32px 0;
}

/* ssb-block — transparent, no card wrapper */
.ssb-block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0 8px;
}

/* Tables inside main body */
.sh-main-body table,
.ssb-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  background: linear-gradient(135deg, #0f1f3d 0%, #132a4e 100%);
  border: 1px solid rgba(255,235,59,0.15);
  border-left: 3px solid #ffeb3b;
  overflow: hidden;
}
.sh-main-body thead th,
.ssb-block thead th {
  background: rgba(255,235,59,0.12);
  color: #ffeb3b;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,235,59,0.2);
}
.sh-main-body tbody td,
.ssb-block tbody td {
  padding: 11px 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sh-main-body tbody tr:nth-child(even),
.ssb-block tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}
.sh-main-body tbody tr:hover,
.ssb-block tbody tr:hover {
  background: rgba(255,235,59,0.05);
}
.sh-main-body tbody td:first-child,
.ssb-block tbody td:first-child {
  font-weight: 600;
  color: #fff;
}

/* ── Base body / content padding on small screens ── */
@media (max-width: 768px) {
  .main-content { padding: 12px 12px 32px; }
  .content-with-sidebar { flex-direction: column; }
  .sidebar { display: none; } /* hide sidebar on mobile; sticky TOC shows instead */
}

/* ── Casino Hero — stack vertically on mobile ── */
@media (max-width: 640px) {
  .casino-hero { padding: 20px 16px; }
  .casino-hero__identity { flex-direction: column; align-items: flex-start; gap: 10px; }
  .casino-hero__logo { width: 90px; height: 45px; }
  .casino-hero__title { font-size: 1.25rem; }
  .casino-hero__cta { width: 100%; justify-content: center; padding: 14px 20px; font-size: 1rem; }
  .casino-hero__meta { flex-direction: column; gap: 6px; }
  .casino-hero__badges { gap: 6px; }
  .casino-hero__code-wrap { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ── Slot Hero — stack on mobile ── */
@media (max-width: 640px) {
  .slot-hero { padding: 20px 16px; }
  .slot-hero__title { font-size: 1.25rem; }
  .slot-hero__cta { width: 100%; justify-content: center; }
  .slot-hero__meta { flex-direction: column; gap: 6px; font-size: 0.75rem; }
  .slot-hero__badges { gap: 6px; }
}

/* ── Stats table — full width, no overflow ── */

/* ── Slot Game Overview Card ── */
.slot-stats {
  background: linear-gradient(135deg, #0f1f3d 0%, #132a4e 100%);
  border: 1px solid rgba(255, 235, 59, 0.15);
  border-left: 3px solid #ffeb3b;
  padding: 0;
  margin: 24px 0;
  overflow: hidden;
}
.slot-stats .section-title {
  padding: 18px 20px 14px;
  margin: 0;
  font-size: 1.125rem;
  color: #ffeb3b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-table {
  display: flex;
  flex-direction: column;
}
.stats-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease;
}
.stats-table__row:last-child {
  border-bottom: none;
}
.stats-table__row:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.stats-table__row:hover {
  background: rgba(255, 235, 59, 0.06);
}
.stats-table__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.stats-table__value {
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 600;
  text-align: right;
}

@media (max-width: 640px) {
  .slot-stats { padding: 16px; }
  .stats-table__row { flex-direction: row; justify-content: space-between; }
}

/* ── Casino grid — 1-col on small, 2-col on medium ── */
@media (max-width: 480px) {
  .casino-grid { grid-template-columns: 1fr; gap: 10px; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Casino card — mobile tweaks ── */
@media (max-width: 480px) {
  .casino-card__inner { padding: 14px; }
  .casino-card__header { flex-direction: row; gap: 12px; }
  .casino-card__logo { width: 48px; height: 48px; }
  .casino-card__name { font-size: 0.875rem; }
  .casino-card__cta { width: 100%; text-align: center; justify-content: center; height: 38px; font-size: 0.8125rem; }
}

/* ── Show More button — full width on mobile ── */
@media (max-width: 480px) {
  .show-more-btn { width: 100%; justify-content: center; }
}

/* ── Filter pills — wrap and scroll on mobile ── */
@media (max-width: 640px) {
  .filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .filter-pills::-webkit-scrollbar { display: none; }
  .filter-pill { white-space: nowrap; flex-shrink: 0; }
}

/* ── Author box — stack on mobile ── */
@media (max-width: 560px) {
  .author-box__inner { flex-direction: column; align-items: flex-start; }
  .author-box__header { flex-direction: column; align-items: flex-start; gap: 6px; }
  .author-box__speciality { align-self: flex-start; }
}

/* ── sh-* content blocks — mobile ── */
@media (max-width: 600px) {
  .sh-section { padding: 16px; }
  .sh-highlight-box { padding: 12px 14px; }
  .sh-intro-box { padding: 12px 14px; }
  .sh-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .sh-pros-cons { grid-template-columns: 1fr; }
}

/* ── ssb-block — mobile ── */
@media (max-width: 600px) {
  .ssb-block { padding: 16px; }
  .ssb-block--info-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ssb-block--info-table table { min-width: 480px; }
  .ssb-pros-cons { grid-template-columns: 1fr; }
  .ssb-block h2, .ssb-block h3 { font-size: 1rem; }
}

/* ── Breadcrumb — wraps on mobile ── */
@media (max-width: 480px) {
  .breadcrumb { font-size: 0.75rem; flex-wrap: wrap; gap: 2px; }
}

/* ── Section titles ── */
@media (max-width: 480px) {
  .section-title { font-size: 1.125rem; }
  .section-subtitle { font-size: 0.8125rem; }
}

/* ── Related grid — 2-col on all mobile ── */
@media (max-width: 640px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .related-slot-card__body { padding: 8px 10px; }
  .related-slot-card__name { font-size: 0.8125rem; }
}

/* ── Slot grid (homepage) ── */
@media (max-width: 480px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── Content sections wrap ── */
@media (max-width: 768px) {
  .content-block__two-col { flex-direction: column; gap: 16px; }
  .trust-badges-row { gap: 10px; }
}

/* ── FAQ accordion ── */
@media (max-width: 480px) {
  .faq-item__trigger { font-size: 0.9rem; padding: 14px 14px; }
  .faq-item__answer-inner { padding: 12px 14px; font-size: 0.875rem; }
}

/* ── RG notice ── */
@media (max-width: 480px) {
  .rg-notice { padding: 12px 14px; }
  .rg-notice__text { font-size: 0.8125rem; }
}

/* ── Global table scrollability — any table inside main content ── */
.sh-main-body table,
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .sh-main-body table,
  .prose table {
    display: table;
    overflow-x: visible;
  }
}

/* ============================================================
   FLEXIBLE CONTENT SECTIONS — .sh-flexible-sections
   Rendered by spinhunter_render_page_sections() in functions.php
   Applies to: casino/slot singles, free spins, min deposit,
               bonus pages, homepage
   ============================================================ */

/* Container */
.sh-flexible-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Generic section wrapper */
.sh-flex-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.sh-flex-section:last-child { border-bottom: none; }

.sh-flex-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .sh-flex-section__title { font-size: 1.75rem; }
}

.sh-flex-section__content { color: var(--color-text); }
.sh-flex-section__intro   { color: var(--color-text-muted); margin-bottom: 24px; }
.sh-flex-section__note    { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 12px; }

/* ── Two-Column Layout ─────────────────────────────────────── */
.sh-flex-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .sh-flex-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}
.sh-flex-two-col__image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--color-border-light);
}

/* ── Callout Box ───────────────────────────────────────────── */
.sh-callout {
  padding: 28px 32px;
  border-left: 4px solid var(--color-gold);
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Gold callout */
.sh-callout--gold {
  background: linear-gradient(145deg, #162d52 0%, #0f1f3d 100%);
  border-left-color: var(--color-gold);
}
.sh-callout--gold .sh-callout__heading { color: #fff; font-size: 1.15rem; }
.sh-callout--gold .sh-callout__content { color: rgba(255,255,255,0.75); }
.sh-callout--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* Dark Navy callout */
.sh-callout--dark {
  background: var(--color-navy-dark);
  border-left-color: var(--color-gold);
  color: #e2e8f0;
}
.sh-callout--dark .sh-callout__heading { color: var(--color-gold); }
.sh-callout--dark .sh-callout__content { color: #cbd5e1; }

/* Green / Success callout */
.sh-callout--success {
  background: rgba(16, 185, 129, 0.08);
  border-left-color: #10b981;
}
.sh-callout--success .sh-callout__heading { color: #065f46; }

/* Blue / Info callout */
.sh-callout--info {
  background: rgba(59, 130, 246, 0.08);
  border-left-color: #3b82f6;
}
.sh-callout--info .sh-callout__heading { color: #1e3a8a; }

.sh-callout__heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.sh-callout__content { font-size: 0.9375rem; line-height: 1.7; }
.sh-callout__content p:last-child { margin-bottom: 0; }

/* ── Comparison Table ──────────────────────────────────────── */
.sh-flex-section--table .sh-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border-light);
}
.sh-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.sh-comparison-table thead {
  background: var(--color-navy);
  color: #fff;
}
.sh-comparison-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.sh-comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
  transition: background 0.15s;
}
.sh-comparison-table tbody tr:hover { background: rgba(255, 235, 59, 0.04); }
.sh-comparison-table tbody td {
  padding: 12px 16px;
  color: var(--color-text);
  vertical-align: middle;
}
.sh-comparison-table tbody tr:first-child td { font-weight: 600; color: var(--color-navy); }

/* ── Steps / How-To ────────────────────────────────────────── */
.sh-flex-section--steps {
  background: linear-gradient(145deg, #0f1f3d 0%, #162d52 100%);
  border-radius: 16px;
  padding: 48px 32px;
  margin: 32px 0;
}
.sh-flex-section--steps .sh-flex-section__title {
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}
.sh-flex-section--steps .sh-flex-section__intro {
  color: rgba(255,255,255,0.7);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.sh-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .sh-steps { grid-template-columns: 1fr; gap: 20px; }
}
.sh-step {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,235,59,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.sh-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border-color: rgba(255,235,59,0.3);
}
.sh-step__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 0;
}
.sh-step__number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  color: #0f1f3d;
  font-weight: 800;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,235,59,0.25);
}
.sh-step__body {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sh-step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 4px;
  line-height: 1.3;
}
.sh-step__label {
  display: inline-block;
  font-size: 11px;
  color: #ffeb3b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  opacity: 0.85;
}
.sh-step__img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16/10;
}
.sh-step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sh-step__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.65;
}

/* ── Image + Text ──────────────────────────────────────────── */
.sh-flex-section--image-text .sh-flex-two-col__image {
  max-height: 420px;
  object-fit: cover;
}

/* ── Custom HTML section — no extra padding ─────────────────── */
.sh-flex-section--html { padding: 24px 0; }

/* ── Mobile tweaks ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .sh-flex-section          { padding: 28px 0; }
  .sh-flex-section__title   { font-size: 1.25rem; }
  .sh-callout               { padding: 18px 20px; }
  .sh-comparison-table      { font-size: 0.8125rem; }
  .sh-comparison-table thead th,
  .sh-comparison-table tbody td { padding: 10px 12px; }
}

/* ============================================================
   LOVABLE UTILITY CLASSES — ported from src/index.css
   Ensures parity between React design and WP theme.
   ============================================================ */

/* Gold gradient text */
.text-gradient-gold {
  background: linear-gradient(135deg, #ffeb3b, #ffe000, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold flat background (alias used in React btn-shine) */
.brass-gradient {
  background: #ffeb3b;
}

/* Gold glow shadows */
.glow-gold {
  box-shadow: 0 0 20px hsla(54, 100%, 62%, 0.15);
}
.glow-gold-strong {
  box-shadow: 0 0 30px hsla(54, 100%, 62%, 0.25);
}

/* Card — white bg + border + shadow (matches Lovable felt-card) */
.felt-card {
  background: #ffffff;
  border: 1px solid hsl(225 24% 92%);
  box-shadow: 0 2px 8px rgba(15, 31, 61, 0.08);
  position: relative;
}
.felt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

/* Casino card hover lift */
.card-hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 31, 61, 0.12);
  border-color: rgba(255, 235, 59, 0.5);
}

/* CTA button shine — sliding highlight sweep */
.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transition: left 0.5s ease;
}
.btn-shine:hover::before {
  left: 100%;
}

/* Noise texture overlay (subtle grain on hero sections) */
.noise-overlay {
  position: relative;
}
.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
/* Ensure noise overlay children remain visible */
.noise-overlay > * {
  position: relative;
  z-index: 1;
}

/* Gold underline animation (nav hover) */
.gold-underline {
  position: relative;
}
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffeb3b, transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.gold-underline:hover::after {
  transform: scaleX(1);
}

/* Dashed border bonus code box */
.bonus-code-box {
  border: 2px dashed rgba(255, 235, 59, 0.5);
  background: rgba(255, 235, 59, 0.05);
}

/* Nav dropdown animation */
@keyframes navDropdownAnim {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
.animate-nav-dropdown {
  animation: navDropdownAnim 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Mobile section expand animation */
@keyframes mobileExpandAnim {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.animate-mobile-expand {
  animation: mobileExpandAnim 0.2s ease-out both;
}

/* Overlay fade animation */
@keyframes fadeOverlayAnim {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-overlay {
  animation: fadeOverlayAnim 0.2s ease-out both;
}

/* Custom scrollbar (sidebar, nav megamenu) */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: var(--color-navy);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 235, 59, 0.3);
  border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 235, 59, 0.5);
}

/* Suit divider (decorative) */
.suit-divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.suit-divider::before,
.suit-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,235,59,0.3), transparent);
}

/* Filter pill active (matches Lovable filter-pill-active) */
.filter-pill-active {
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
}

/* ============================================================
   HOMEPAGE SIDEBAR — sticky with max-height scroll
   Matches React: sticky top-20 max-h-[calc(100vh-6rem)] overflow-y-auto
   sidebar.php outputs <aside class="sidebar"> — homepage uses it via get_sidebar()
   ============================================================ */
.homepage-body .site-sidebar,
.homepage-body .sidebar {
  position: sticky;
  top: 76px; /* 56px header + 20px gap */
  max-height: calc(100vh - 6rem);
  overflow-y: auto;
  width: 256px; /* matches React w-64 exactly */
}

/* Sidebar panels — matches React CategorySidebar panels */
.sidebar-panel {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-panel);
  margin-bottom: 16px;
  padding: 16px;
}

.sidebar-panel--trust {
  border-left: 4px solid var(--color-gold);
}

.sidebar-panel--rg {
  border-left: 4px solid var(--color-navy);
  background: var(--color-surface);
}

/* ============================================================
   HERO — Playfair Display font fix (was using CSS var not loaded inline)
   ============================================================ */
.hero__title {
  font-family: 'Playfair Display', Georgia, serif !important;
}

/* ============================================================
   HOMEPAGE BODY — ensure sidebar is on the LEFT (matching Lovable)
   CategorySidebar is rendered BEFORE main content in sidebar.php
   ============================================================ */
@media (min-width: 1024px) {
  .homepage-body {
    /* sidebar (site-sidebar) is rendered first in sidebar.php = left column */
    flex-direction: row;
  }
}

/* ============================================================
   CASINO GRID — Show More grid wrapper
   ============================================================ */
.casino-grid-wrap {
  position: relative;
}

/* ============================================================
   PAGE HERO — split layout title fix (dark bg means white text)
   ============================================================ */
.page-hero--split .page-hero__title {
  color: #ffffff;
}
.page-hero--split .page-hero__subtitle {
  color: rgba(255,255,255,0.80);
}

/* ============================================================
   CONTENT BLOCK — ensure h2 in content sections is visible
   ============================================================ */
.content-block h2 {
  color: var(--color-navy);
}
.content-block p {
  color: var(--color-text-muted);
}

/* ============================================================
   MOBILE FIRST — small screen padding fix
   ============================================================ */
@media (max-width: 768px) {
  .homepage-inner {
    padding: 0 12px;
  }
  .homepage-body {
    padding: 16px 0;
    flex-direction: column;
  }
  .content-sections-wrap {
    gap: 20px;
  }
  .content-block {
    padding: 20px;
  }
}

/* ============================================================
   PAGE HERO — Single CPT pages (free_spins, min_deposit, bonus)
   ============================================================ */
.page-hero {
  background: var(--color-navy);
  color: #fff;
  padding: 48px 32px;
  margin-bottom: 32px;
}
.page-hero--split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.page-hero--full .page-hero__content {
  max-width: 760px;
}

.page-hero--slots {
  position: relative;
  overflow: hidden;
}

.page-hero--slots::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,31,61,0.92) 0%, rgba(10,22,40,0.85) 100%);
  z-index: 0;
}

.page-hero--slots > * {
  position: relative;
  z-index: 1;
}
.page-hero__badge {
  display: inline-block;
  background: rgba(255, 235, 59, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(255, 235, 59, 0.3);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}
.page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px;
  line-height: 1.6;
}
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.page-hero__meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.page-hero__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}
.page-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.page-hero__stat-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gold);
}
.page-hero__stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.page-hero__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin: 8px 0 0;
}

/* Spin bubble — right side of free_spins hero */
.spins-bubble {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spins-bubble__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}
.spins-bubble__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Deposit bubble — right side of min_deposit hero */
.deposit-bubble {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.deposit-bubble__currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}
.deposit-bubble__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}
.deposit-bubble__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Stat bubbles — mobile shrink ── */
@media (max-width: 480px) {
  .spins-bubble,
  .deposit-bubble {
    width: 100px;
    height: 100px;
  }
  .spins-bubble__number {
    font-size: 32px;
  }
  .spins-bubble__label {
    font-size: 9px;
  }
  .deposit-bubble__currency {
    font-size: 20px;
  }
  .deposit-bubble__number {
    font-size: 28px;
  }
  .deposit-bubble__label {
    font-size: 9px;
  }
}

/* ============================================================
   ARCHIVE PAGES — free_spins, min_deposit, bonus
   ============================================================ */
.archive-hero {
  background: var(--color-navy);
  color: #fff;
  padding: 48px 32px;
  margin-bottom: 40px;
}
.archive-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.archive-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px;
}

/* ── Hero background image support ──────────────────────── */
.archive-hero--has-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 32px;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}
.archive-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.85) 100%);
  z-index: 0;
  pointer-events: none;
}
.archive-hero--has-bg .archive-hero__content {
  position: relative;
  z-index: 1;
}
.archive-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.archive-hero__meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.archive-grid-section {
  margin-bottom: 48px;
}
.archive-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.archive-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,31,61,0.12);
  border-color: var(--color-gold);
}
.archive-card__inner {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.archive-card__spin-bubble,
.archive-card__deposit-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.archive-card__spin-num,
.archive-card__deposit-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}
.archive-card__spin-label,
.archive-card__deposit-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.archive-card__deposit-symbol {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
}
.archive-card__badge {
  display: inline-block;
  background: rgba(255,235,59,0.15);
  color: var(--color-navy);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border: 1px solid rgba(255,235,59,0.4);
}
.archive-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
}
.archive-card__sub,
.archive-card__type-label {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.archive-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: auto;
}
.archive-card--bonus .archive-card__bonus-icon {
  font-size: 36px;
  margin-bottom: 4px;
}

/* ============================================================
   RELATED SECTION — single CPT templates
   ============================================================ */
.related-section {
  margin: 40px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.related-grid--pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.related-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: transform 0.18s, border-color 0.18s;
}
.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold);
}
.related-card__inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.related-card__badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gold);
}
.related-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
}
.related-card__meta {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}
.related-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: 4px;
}
.related-pill {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.related-pill:hover,
.related-pill--active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
}

/* ============================================================
   INTRO BOX + RESPONSIBLE GAMBLING NOTICE
   ============================================================ */
.sh-intro-box {
  background: #fefce8;
  border-left: 4px solid var(--color-gold);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-navy);
}
.sh-intro-box p:last-child {
  margin-bottom: 0;
}
.rg-notice {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 16px 20px;
  margin: 32px 0;
  font-size: 13px;
  line-height: 1.6;
  color: #166534;
}
.rg-notice a {
  color: #15803d;
  font-weight: 600;
}
.rg-notice strong {
  font-weight: 700;
}

/* ============================================================
   MAIN BODY CONTENT — prose styles for CPT single pages
   ============================================================ */
.main-body-content {
  margin: 32px 0;
}
.main-body-content .ssb-block {
  margin-bottom: 40px;
}
.main-body-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 16px;
}
.main-body-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 20px 0 10px;
}
.main-body-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin: 0 0 16px;
}
.main-body-content ul,
.main-body-content ol {
  margin: 0 0 16px 24px;
  line-height: 1.75;
  color: #374151;
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
  .page-hero--split {
    grid-template-columns: 1fr;
  }
  .page-hero__right {
    display: none;
  }
  .page-hero {
    padding: 32px 20px;
  }
  .page-hero__stats {
    gap: 16px;
    flex-wrap: wrap;
  }
  .archive-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .archive-hero {
    padding: 32px 20px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   SLOT HERO — SPLIT LAYOUT
   Matches Lovable SlotTemplate.tsx
   LEFT: game image (55%)  |  RIGHT: info panel (45%)
   ============================================================ */
.slot-hero-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 480px;
  background: var(--color-navy);
  border: 1px solid rgba(255,235,59,0.15);
  overflow: hidden;
  margin-bottom: 32px;
}

/* ── LEFT: image column ── */
.slot-hero-split__img-col {
  position: relative;
  overflow: hidden;
  background: var(--color-navy-dark);
}
.slot-hero-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.slot-hero-split:hover .slot-hero-split__img {
  transform: scale(1.03);
}
.slot-hero-split__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, #1a3a6e 100%);
}

/* ── RIGHT: info panel ── */
.slot-hero-split__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 40px 36px;
  background: var(--color-navy);
  border-left: 1px solid rgba(255,235,59,0.12);
}

/* Badge row */
.slot-hero-split__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.slot-hero-split__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 0;
  text-transform: uppercase;
}
.slot-hero-split__badge--gold {
  background: rgba(255,235,59,0.15);
  color: var(--color-gold);
  border: 1px solid rgba(255,235,59,0.4);
}
.slot-hero-split__badge--provider {
  background: rgba(255,255,255,0.06);
  color: #c8d0e0;
  border: 1px solid rgba(255,255,255,0.15);
}
.slot-hero-split__badge--volatility {
  background: rgba(100,180,255,0.1);
  color: #7ec8e3;
  border: 1px solid rgba(100,180,255,0.25);
}

/* Title */
.slot-hero-split__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}

/* Star rating */
.slot-hero-split__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 1.2rem;
}
.star--full  { color: var(--color-gold); }
.star--half  { color: var(--color-gold); opacity: 0.7; }
.star--empty { color: rgba(255,235,59,0.25); }
.slot-hero-split__rating-val {
  margin-left: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c8d0e0;
}

/* Description */
.slot-hero-split__desc {
  font-size: 0.95rem;
  color: #a8b8d0;
  line-height: 1.6;
  margin: 0;
}

/* Stats row */
.slot-hero-split__stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.slot-hero-split__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.slot-hero-split__stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.slot-hero-split__stat-lbl {
  font-size: 0.7rem;
  color: #7a8ba3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Meta */
.slot-hero-split__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: #8a9bb5;
}
.slot-hero-split__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* CTA */
.slot-hero-split__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.slot-hero-split__disclaimer {
  font-size: 0.7rem;
  color: #5a6b83;
  margin: 0;
}

/* ── Mobile: stack vertically ── */
@media (max-width: 768px) {
  .slot-hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .slot-hero-split__img-col {
    height: 260px;
  }
  .slot-hero-split__info {
    padding: 24px 20px;
    gap: 12px;
    border-left: none;
    border-top: 1px solid rgba(255,235,59,0.12);
  }
  .slot-hero-split__title {
    font-size: 1.5rem;
  }
  .slot-hero-split__stats {
    gap: 16px;
  }
}

/* ============================================================
   HOW WE RATE PAGE — page-how-we-rate.php
   ============================================================ */

/* Hero */
.hwr-hero {
  margin-bottom: 24px;
}

.hwr-hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: rgba(255,235,59,0.18);
  border: 1px solid rgba(255,235,59,0.45);
  padding: 4px 12px;
  margin-bottom: 12px;
}

.hwr-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.hwr-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.hwr-hero__intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 700px;
}

/* Criteria grid */
.hwr-criteria {
  margin-bottom: 32px;
}

.hwr-criteria__header {
  margin-bottom: 20px;
}

.hwr-criteria__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.hwr-criteria__subtitle {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.hwr-criteria__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .hwr-criteria__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hwr-criteria__grid { grid-template-columns: repeat(3, 1fr); } }

.hwr-criterion {
  padding: 18px;
}

.hwr-criterion__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.hwr-criterion__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.hwr-criterion__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 3px;
}

.hwr-criterion__weight {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(255,235,59,0.15);
  border: 1px solid rgba(255,235,59,0.35);
  padding: 1px 8px;
  display: inline-block;
}

.hwr-criterion__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Testing steps */
.hwr-steps {
  margin-bottom: 32px;
}

.hwr-steps__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.hwr-steps__intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hwr-step-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hwr-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.hwr-step:last-child { border-bottom: none; }

.hwr-step__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-border-light);
  font-family: 'Courier New', monospace;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
}

.hwr-step__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 5px;
}

.hwr-step__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Our promise section */
.hwr-promise {
  margin-bottom: 24px;
}

.hwr-promise__lead {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.hwr-promise__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .hwr-promise__grid { grid-template-columns: repeat(2, 1fr); } }

.hwr-promise-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
}

.hwr-promise-item__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.hwr-promise-item__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 5px;
}

.hwr-promise-item__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Disclosure note */
.hwr-disclosure {
  margin-bottom: 24px;
  border-left: 3px solid rgba(255,235,59,0.55);
}

.hwr-disclosure__body {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.hwr-disclosure__link {
  color: var(--color-navy);
  text-decoration: underline;
}
.hwr-disclosure__link:hover { color: var(--color-gold); }

/* ============================================================
   POLICY PAGES — privacy, cookie, terms, affiliate
   ============================================================ */

.policy-hero {
  margin-bottom: 24px;
}

.policy-hero__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.policy-hero__meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.policy-hero__intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.policy-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.policy-section {
  padding: 20px 24px;
}

.policy-section__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-light);
}

.policy-section__body.prose p,
.policy-section__body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.policy-section__body.prose ul,
.policy-section__body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}
.policy-section__body.prose li,
.policy-section__body li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 4px;
}
.policy-section__body.prose a,
.policy-section__body a {
  color: var(--color-navy);
  text-decoration: underline;
}
.policy-section__body.prose a:hover,
.policy-section__body a:hover { color: var(--color-gold); }
.policy-section__body strong { font-weight: 700; color: var(--color-navy); }

.policy-override.prose p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.policy-override.prose h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 24px 0 10px;
}
.policy-override.prose ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

/* Cookie policy specific */
.policy-cookie-types { margin-bottom: 24px; }

.policy-cookie-types__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.policy-cookie-card {
  padding: 18px 22px;
}

.policy-cookie-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.policy-cookie-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
}

.policy-cookie-card__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  white-space: nowrap;
}

.policy-cookie-card__badge--required {
  background: rgba(255,235,59,0.15);
  border-color: rgba(255,235,59,0.5);
  color: var(--color-navy);
}

.policy-cookie-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.policy-cookie-card__examples {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.policy-cookie-card__example {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.policy-cookie-card__bullet {
  color: var(--color-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Affiliate disclosure specific */
.policy-section__lead {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-bullet-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-bullet-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.policy-bullet-list__marker {
  color: var(--color-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.policy-bullet-list__label {
  font-weight: 700;
  color: var(--color-navy);
}

/* ============================================================
   CONTACT PAGE — page-contact.php
   ============================================================ */

.contact-heading {
  margin-bottom: 24px;
}

.contact-heading__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.contact-heading__intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 700px;
}

.contact-heading__updated {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

.contact-form-wrap {
  padding: 24px;
}

.contact-form-wrap__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-light);
}

.contact-form-notice {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  background: rgba(255,235,59,0.1);
  border: 1px solid rgba(255,235,59,0.35);
  padding: 12px 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-fallback-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-fallback-form__row--2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .contact-fallback-form__row--2col {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-fallback-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-fallback-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
}

.contact-fallback-form__req {
  color: #e53935;
  margin-left: 2px;
}

.contact-fallback-form__input,
.contact-fallback-form__select,
.contact-fallback-form__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border-light);
  background: #ffffff;
  color: var(--color-navy);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.contact-fallback-form__input:focus,
.contact-fallback-form__select:focus,
.contact-fallback-form__textarea:focus {
  border-color: var(--color-navy);
}

.contact-fallback-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-fallback-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-fallback-form__submit {
  align-self: flex-start;
  cursor: pointer;
  font-family: inherit;
  border: none;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-panel {
  padding: 18px 20px;
}

.contact-info-panel__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-info-panel__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.contact-info-panel__body {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.contact-info-panel__email {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: underline;
  word-break: break-all;
}
.contact-info-panel__email:hover { color: var(--color-gold); }

.contact-response-times {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-response-times__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.contact-response-times__item:last-child { border-bottom: none; }

.contact-response-times__val {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.8125rem;
}

.contact-gamble-panel {
  padding: 16px 20px;
  background: rgba(15,31,61,0.04);
  border: 1px solid var(--color-border-light);
}

.contact-gamble-panel__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.contact-gamble-panel__body {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-gamble-panel__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-gamble-panel__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  padding: 5px 0;
  text-decoration: none;
}
.contact-gamble-panel__link:hover { color: var(--color-gold); }

.contact-gamble-panel__tel {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 2px 7px;
}

.contact-quick-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-quick-links__link {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 5px 0;
  transition: color 0.15s;
}
.contact-quick-links__link:hover { color: var(--color-navy); }

.contact-faq {
  margin-bottom: 24px;
  padding: 24px;
}

.contact-faq__intro {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-compliance {
  margin-bottom: 24px;
  padding: 20px 24px;
}

.contact-compliance__body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
/* ============================================================
   For Table
   ============================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
  margin: 24px 0;
  border: 1px solid #e0e3eb;
  border-radius: 8px;
  overflow: hidden;
}

table thead th {
  background: #1a1d2e;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  text-align: left;
  border: none;
}

table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #eef0f5;
  font-weight: 500;
  color: #1a1d2e;
  vertical-align: middle;
}

table tbody tr:last-child td {
  border-bottom: none;
}

table tbody tr:nth-child(even) {
  background: #f8f9fc;
}

table tbody td:first-child {
  font-weight: 700;
}

@media (max-width: 600px) {
  table {
    font-size: 13px;
  }
  table thead th {
    padding: 10px 12px;
    font-size: 11px;
  }
  table tbody td {
    padding: 10px 12px;
  }
}
/* ============================================================
   Hero Section Gradient 
   ============================================================ */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 12, 30, 0.92) 0%, rgba(10, 12, 30, 0.75) 60%, rgba(10, 12, 30, 0.45) 100%);
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════
   MOBILE FIX — prevent horizontal overflow on small screens
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .site-wrapper {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .site-content--homepage {
    overflow: hidden;
  }
  .homepage-inner {
    overflow: hidden;
    max-width: 100%;
  }
  .homepage-main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .sidebar {
    display: none !important;
  }
  .hero {
    width: 100%;
    overflow: hidden;
  }
  .hero__content {
    padding: 40px 16px;
  }
  .hero__title {
    font-size: 1.5rem;
  }
  .slot-section {
    max-width: 100%;
    overflow: hidden;
  }
  .slot-section__header {
    flex-wrap: wrap;
    gap: 8px;
  }
  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 100%;
  }
  .casino-section {
    max-width: 100%;
    overflow: hidden;
  }
  .casino-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
  }
  .content-sections-wrap {
    max-width: 100%;
    overflow: hidden;
  }
  .gold-divider {
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════════════════════
   MOBILE FIX — single CPT pages (slots, free_spins, etc.)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .site-content {
    overflow: hidden;
    padding: 0 12px;
  }
  .content-with-sidebar {
    flex-direction: column;
    overflow: hidden;
  }
  .main-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 12px 0 32px;
  }
  .slot-hero-split {
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
    overflow: hidden;
  }
  .slot-hero-split__img-col {
    width: 100%;
    max-width: 100%;
  }
  .slot-hero-split__img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .slot-hero-split__info {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .slot-hero-split__title {
    font-size: 1.4rem;
    word-wrap: break-word;
  }
  .slot-stats {
    max-width: 100%;
    overflow: hidden;
  }
  .sh-intro-box {
    max-width: 100%;
    word-wrap: break-word;
  }
  .sh-main-body {
    max-width: 100%;
    overflow: hidden;
    padding: 20px 14px;
  }
  .sh-main-body table,
  .ssb-block table {
    display: block;
    overflow-x: auto;
  }
  .faq-section {
    max-width: 100%;
    overflow: hidden;
  }
  .related-section {
    max-width: 100%;
    overflow: hidden;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .breadcrumb {
    max-width: 100%;
    overflow: hidden;
    font-size: 0.75rem;
  }
  .archive-hero {
    max-width: 100%;
    overflow: hidden;
  }
  .archive-card-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════════════════════
   MOBILE — Modern Casino Card Redesign
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .casino-card {
    background: linear-gradient(135deg, #0f1f3d 0%, #162d52 100%);
    border: 1px solid rgba(255,235,59,0.12);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .casino-card__inner {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .casino-card__badges {
    align-self: flex-start;
    margin-bottom: -4px;
  }
  .casino-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 4px;
  }
  .casino-badge--exclusive {
    background: #ffeb3b;
    color: #0f1f3d;
  }
  .casino-badge--new {
    background: #ffeb3b;
    color: #0f1f3d;
  }
  .casino-card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .casino-card__logo {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    border: 2px solid rgba(255,235,59,0.2);
  }
  .casino-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .casino-card__name-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .casino-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
  }
  .casino-card__rating {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .casino-card__rating-num {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-left: 4px;
  }
  .casino-card__headline {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffeb3b;
    margin: 4px 0 0;
    line-height: 1.3;
  }
  .casino-card__meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .casino-card__meta-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
  }
  .casino-card__wagering,
  .casino-card__max-win {
    font-size: 0.85rem;
    color: #fff;
  }
  .casino-card__code-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .casino-card__code-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
  }
  .casino-card__code {
    background: rgba(255,235,59,0.1);
    border: 1px dashed rgba(255,235,59,0.4);
    color: #ffeb3b;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .casino-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px;
    background: #ffeb3b;
    color: #0f1f3d;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 2px;
  }
  .casino-card__cta svg {
    stroke: #0f1f3d;
  }
  .casino-card__tc {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
    line-height: 1.4;
  }
  .casino-card--featured {
    border-color: rgba(255,235,59,0.25);
  }
}


/* ── SINGLE SLOT PAGE — MOBILE REDESIGN v1 ── */
@media (max-width: 768px) {

  body.single-slot_game .site-content { padding: 0 !important; }
  body.single-slot_game .content-with-sidebar { padding: 0 !important; }
  body.single-slot_game .main-content { padding: 0 !important; width: 100% !important; max-width: 100% !important; }

  body.single-slot_game .breadcrumb { padding: 10px 16px; font-size: 0.72rem; color: rgba(255,255,255,0.45); margin: 0; }

  /* HERO — override grid to flex */
  body.single-slot_game .slot-hero-split {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    background: linear-gradient(160deg, #0f1f3d 0%, #162d52 50%, #0f1f3d 100%) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 16px 24px !important;
    gap: 0 !important;
    overflow: hidden;
    position: relative;
  }
  body.single-slot_game .slot-hero-split::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffeb3b, transparent);
  }

  /* Image — compact centered */
  body.single-slot_game .slot-hero-split__img-col {
    width: 100% !important; max-width: 100% !important;
    height: auto !important; min-height: auto !important;
    padding: 20px 0 8px !important;
    display: flex !important; justify-content: center !important;
    background: transparent !important;
    overflow: visible !important;
  }
  body.single-slot_game .slot-hero-split__img-placeholder {
    width: 90px !important; height: 90px !important;
    background: rgba(255,255,255,0.06) !important;
    border-radius: 20px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
    border: 1px solid rgba(255,235,59,0.15) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3) !important;
    padding: 0 !important;
  }
  body.single-slot_game .slot-hero-split__img-placeholder img.emoji {
    width: 44px !important; height: 44px !important;
  }
  body.single-slot_game .slot-hero-split__img {
    width: 90px !important; height: 90px !important;
    border-radius: 20px !important; object-fit: cover;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3); border: 1px solid rgba(255,235,59,0.15);
  }

  /* Info column */
  body.single-slot_game .slot-hero-split__info {
    width: 100% !important; max-width: 100% !important; padding: 0 !important; text-align: center !important;
  }

  /* Badges */
  body.single-slot_game .slot-hero-split__badge-row {
    display: flex !important; flex-wrap: wrap; justify-content: center !important; gap: 6px; margin-bottom: 12px;
  }
  body.single-slot_game .slot-hero-split__badge {
    font-size: 0.65rem !important; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 4px 10px !important; border-radius: 4px !important;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.1);
  }
  body.single-slot_game .slot-hero-split__badge--gold {
    background: rgba(255,235,59,0.15) !important; color: #ffeb3b !important; border-color: rgba(255,235,59,0.3) !important;
  }
  body.single-slot_game .slot-hero-split__badge--volatility {
    background: rgba(255,59,59,0.12) !important; color: #ff6b6b !important; border-color: rgba(255,59,59,0.25) !important;
  }

  /* Title */
  body.single-slot_game .slot-hero-split__title {
    font-size: 1.4rem !important; font-weight: 800; color: #fff; margin: 0 0 6px !important; line-height: 1.2; text-align: center !important;
  }

  /* Stars */
  body.single-slot_game .slot-hero-split__stars {
    display: flex !important; align-items: center; justify-content: center !important; gap: 2px; margin-bottom: 10px;
  }
  body.single-slot_game .slot-hero-split__rating-val { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-left: 6px; }

  /* Description */
  body.single-slot_game .slot-hero-split__desc {
    font-size: 0.82rem !important; line-height: 1.5; color: rgba(255,255,255,0.6); margin: 0 0 14px !important; padding: 0 8px; text-align: center !important;
  }

  /* Stats row */
  body.single-slot_game .slot-hero-split__stats {
    display: flex !important; justify-content: center; gap: 0;
    margin: 0 -16px 14px !important; padding: 12px 0 !important;
    background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  body.single-slot_game .slot-hero-split__stat { flex: 1; text-align: center; position: relative; }
  body.single-slot_game .slot-hero-split__stat + .slot-hero-split__stat::before {
    content: ''; position: absolute; left: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(255,255,255,0.1);
  }
  body.single-slot_game .slot-hero-split__stat-val { display: block; font-size: 1rem; font-weight: 800; color: #ffeb3b; }
  body.single-slot_game .slot-hero-split__stat-lbl { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-top: 2px; }

  /* Meta */
  body.single-slot_game .slot-hero-split__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 14px; margin-bottom: 16px; }
  body.single-slot_game .slot-hero-split__meta-item { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
  body.single-slot_game .slot-hero-split__meta-item img.emoji { width: 12px !important; height: 12px !important; vertical-align: -1px; }

  /* CTA */
  body.single-slot_game .slot-hero-split__cta {
    display: flex !important; align-items: center; justify-content: center; gap: 8px;
    width: 100% !important; padding: 14px 20px !important;
    background: #ffeb3b !important; color: #0f1f3d !important;
    font-size: 1rem !important; font-weight: 800; border-radius: 8px !important; text-decoration: none;
    box-shadow: 0 4px 20px rgba(255,235,59,0.3);
  }

  /* Disclaimer */
  body.single-slot_game .slot-hero-split__disclaimer { font-size: 0.6rem; color: rgba(255,255,255,0.25); margin: 8px 0 0; text-align: center; }


  /* ── GAME OVERVIEW TABLE ── */
  body.single-slot_game .slot-stats { margin: 0 !important; padding: 20px 16px !important; max-width: 100% !important; overflow: hidden; }
  body.single-slot_game .slot-stats .section-title { font-size: 1rem; font-weight: 700; color: #ffeb3b; margin: 0 0 12px; }
  body.single-slot_game .stats-table {
    background: linear-gradient(135deg, #0f1f3d, #162d52) !important;
    border-radius: 10px !important; overflow: hidden; border: 1px solid rgba(255,235,59,0.08);
  }
  body.single-slot_game .stats-table__row {
    display: flex; justify-content: space-between; align-items: center; padding: 10px 16px !important;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  body.single-slot_game .stats-table__row:last-child { border-bottom: none; }
  body.single-slot_game .stats-table__row:nth-child(even) { background: rgba(0,0,0,0.12); }
  body.single-slot_game .stats-table__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); font-weight: 600; }
  body.single-slot_game .stats-table__value { font-size: 0.85rem; font-weight: 700; color: #fff; }

  /* ── INTRO BOX ── */
  body.single-slot_game .sh-intro-box {
    margin: 16px 16px 0 !important; padding: 14px 16px !important; font-size: 0.82rem; line-height: 1.6;
    border-radius: 8px !important; background: rgba(255,235,59,0.04); border-left: 3px solid #ffeb3b;
  }

  /* ── CASINO SECTION ── */
  body.single-slot_game .casino-section { margin: 16px 0 !important; padding: 0 16px !important; }

  /* ── MAIN BODY ── */
  body.single-slot_game .sh-main-body { margin: 0; padding: 20px 16px !important; max-width: 100% !important; overflow: hidden; }
  body.single-slot_game .sh-main-body h2 { font-size: 1.15rem; color: #ffeb3b; margin: 28px 0 10px; }
  body.single-slot_game .sh-main-body h3 { font-size: 1rem; color: #fff; margin: 20px 0 8px; }
  body.single-slot_game .sh-main-body p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.75); }
  body.single-slot_game .sh-main-body table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; font-size: 0.78rem; }

  /* ── FAQ / RELATED / RG / AUTHOR ── */
  body.single-slot_game .faq-section { margin: 0; padding: 20px 16px; max-width: 100% !important; overflow: hidden; }
  body.single-slot_game .related-section { padding: 20px 16px; max-width: 100% !important; overflow: hidden; }
  body.single-slot_game .related-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  body.single-slot_game .rg-notice { margin: 0 16px 16px !important; padding: 14px 16px; font-size: 0.78rem; border-radius: 8px; }
  body.single-slot_game .author-box { margin: 0 16px 20px !important; padding: 16px; border-radius: 10px; }

} /* end single-slot mobile redesign */


/* ══════════════════════════════════════════════════════════
   MOBILE POLISH — Homepage content sections + drawer v1.3
   ══════════════════════════════════════════════════════════ */

/* ── Small phone refinements (≤480px) ─────────────────── */
@media (max-width: 480px) {

  /* Content block headings */
  .content-block h2 { font-size: 1.15rem; }
  .content-block h3 { font-size: 0.95rem; }
  .content-block p  { font-size: 0.8125rem; line-height: 1.65; }
  .content-block { padding: 16px; }

  /* Trust grid → 1 col on tiny screens */
  .trust-grid { grid-template-columns: 1fr; gap: 10px; }
  .trust-card { padding: 14px; }
  .trust-card svg { width: 24px; height: 24px; margin-bottom: 8px; }

  /* Payment grid → 2 cols with tighter spacing */
  .payment-grid { gap: 8px; }
  .payment-card { padding: 12px 8px; }
  .payment-card__name { font-size: 1rem; margin-bottom: 4px; }

  /* RG orgs → 1 col */
  .rg-orgs { grid-template-columns: 1fr; gap: 10px; }
  .rg-org-card { padding: 12px; text-align: left; display: flex; align-items: center; gap: 12px; }
  .rg-org-card span:first-child { margin-bottom: 0; }

  /* Eval cards tighter */
  .eval-card { padding: 14px; }
  .eval-checklist { gap: 6px; }
  .eval-checklist__item { font-size: 0.8125rem; }

  /* Bonus type cards */
  .bonus-type-card { padding: 16px; }

  /* Deposit tiers */
  .deposit-tier { padding: 10px 12px; }
  .deposit-tier__info h4 { font-size: 0.8125rem; }

  /* Callout dark */
  .callout-dark { padding: 16px; }
  .callout-dark h3 { font-size: 0.8125rem; }
  .callout-dark p { font-size: 0.8125rem; }

  /* Provider cards stacked full width */
  .providers-grid { grid-template-columns: 1fr; }
  .provider-card { padding: 14px; gap: 12px; }

  /* Tag row tighter */
  .tag-link { padding: 5px 10px; font-size: 0.6875rem; }

  /* Steps boxes */
  .step-box { padding: 10px; gap: 10px; }
  .step-box__num { width: 34px; height: 34px; font-size: 1rem; }
  .step-box__label { font-size: 0.8125rem; }

  /* Image steps */
  .img-step h3 { font-size: 0.8125rem; }
  .img-step p { font-size: 0.75rem; }

  /* Content table tighter */
  .content-table { font-size: 0.75rem; }
  .content-table th,
  .content-table td { padding: 8px; }

  /* Slots archive grid in fallback */
  .slots-archive-grid { gap: 8px; }

  /* Section titles */
  .section-title { font-size: 1.15rem; }
  .section-subtitle { font-size: 0.8125rem; }
}

/* ── Medium phones (481–768px) extra polish ────────────── */
@media (min-width: 481px) and (max-width: 768px) {
  .content-block { padding: 20px; }
  .trust-grid { gap: 12px; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Homepage content sections: inline grid mobile fix ── */
@media (max-width: 600px) {
  /* Fix inline styled grids in front-page.php fallback content */
  .content-block [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  /* Fix inline two-col images */
  .content-block [style*="height:256px"],
  .content-block [style*="height:288px"] {
    height: 180px !important;
  }
}

/* ── Mobile Drawer polish ─────────────────────────────── */
.mobile-drawer__close {
  border-radius: 8px;
}
.mobile-drawer__close:hover {
  color: #ffffff;
  background: rgba(255,235,59,0.10);
}

/* ── Homepage hero mobile polish ── */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  .hero__subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
  }
  .hero__body {
    font-size: 0.8125rem;
    line-height: 1.6;
    opacity: 0.8;
  }
}

/* ── Slot card thumb compact mobile ── */
@media (max-width: 480px) {
  .slot-card-thumb__body { padding: 8px 10px; }
  .slot-card-thumb__name { font-size: 0.75rem; }
  .slot-card-thumb__provider { font-size: 0.625rem; }
  .slot-card-thumb__meta { font-size: 0.625rem; gap: 4px; }
  .slot-card-thumb__meta strong { font-size: 0.625rem; }
}

/* ── Browse groups + landing cards small phone ── */
@media (max-width: 480px) {
  .browse-groups__card { padding: 14px 12px; }
  .browse-groups__card-title { font-size: 13px; }
  .browse-groups__card-count { font-size: 11px; }
  .group-landing-card__title { font-size: 13px; padding: 12px 10px 4px; }
  .group-landing-card__count { font-size: 11px; padding: 4px 12px; margin: 4px 0 12px; }
}

/* ── Casino card mobile (ensure 1-col) ── */
@media (max-width: 480px) {
  .casino-grid { grid-template-columns: 1fr !important; }
}
