/* Google Fonts loaded via <link> tags in each page <head> for non-render-blocking async load */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --bg:          #f5f8f5;
  --bg-2:        #edf5ed;
  --bg-card:     #ffffff;
  --bg-head:     #166534;
  --bg-footer:   #0a3a17;
  --border:      #c8e0cc;
  --border-2:    #a8d0b0;
  --text:        #111827;
  --text-2:      #374151;
  --text-3:      #5f6470;
  --text-4:      #9ca3af;
  --accent:      #16a34a;
  --accent-lt:   #22c55e;
  --accent-dim:  rgba(22,163,74,0.10);
  --accent-glow: rgba(22,163,74,0.25);
  --gold:        #d4a017;
  --gold-lt:     #f0c030;
  --green:       #16a34a;
  --green-dim:   rgba(22,163,74,0.10);
  --red:         #dc2626;
  --font-sans:   'Inter', sans-serif;
  --font-logo:   'Inter', sans-serif;
  --font-brand:  'Cinzel', serif;
  --topbar-h:    36px;
  --nav-h:       64px;
  --header-h:    100px;
  --max-w:       1240px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 800; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1rem, 2.5vw, 1.2rem); }
p  { color: var(--text-2); }

/* ── Layout utilities ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section-alt { background: var(--bg-2); }
.section-header { text-align: center; margin-bottom: 32px; }
.section-header h2 { margin-bottom: 8px; }
.section-header p { font-size: 15px; }
.section-title { font-size: 26px; font-weight: 800; color: var(--text); text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--text-3); margin-bottom: 40px; font-size: 15px; }

/* ── Reveal animation ───────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.10s; }
[data-reveal][data-delay="2"] { transition-delay: 0.20s; }
[data-reveal][data-delay="3"] { transition-delay: 0.30s; }
[data-reveal][data-delay="4"] { transition-delay: 0.40s; }
[data-reveal][data-delay="5"] { transition-delay: 0.50s; }
[data-reveal][data-delay="6"] { transition-delay: 0.60s; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-weight: 700; font-size: 14px;
  border-radius: 6px; border: 2px solid transparent;
  transition: all 0.2s var(--ease); white-space: nowrap; cursor: pointer; text-decoration: none;
}
.btn img { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary { background: #15803d; color: #fff; border-color: #15803d; padding: 10px 22px; }
.btn-primary img { filter: brightness(0) invert(1); }
.btn-primary:hover { background: var(--accent-lt); border-color: var(--accent-lt); box-shadow: 0 4px 16px var(--accent-glow); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); padding: 10px 22px; }
.btn-outline:hover { background: var(--accent-dim); box-shadow: 0 4px 12px var(--accent-glow); transform: translateY(-1px); }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ── Topbar ─────────────────────────────────────────────────── */
.site-topbar {
  height: var(--topbar-h);
  background: #0d4a1f;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; flex-shrink: 0;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12px; font-weight: 600;
}
.topbar-left { color: rgba(255,255,255,0.72); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-right { color: rgba(255,255,255,0.72); white-space: nowrap; flex-shrink: 0; }
.topbar-right a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.topbar-right a:hover { color: #fff; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; flex-direction: column;
}
.header-nav {
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.scrolled .header-nav {
  background: var(--bg-head);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 4px 28px rgba(0,0,0,0.35);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

/* ── Logo ───────────────────────────────────────────────────── */
.site-logo {
  font-family: var(--font-brand); font-size: 1.5rem; letter-spacing: 0.04em; line-height: 1;
  flex-shrink: 0; display: inline-flex; align-items: baseline;
}
.logo-spin   { color: var(--gold);   font-weight: 700; }
.logo-royale { color: #ffffff;       font-weight: 400; }

/* ── Desktop nav ────────────────────────────────────────────── */
.site-nav { display: none; }
.site-nav > ul { display: flex; align-items: center; gap: 2px; }
.site-nav a,
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; font-weight: 600; font-size: 13px;
  color: rgba(255,255,255,0.80); background: none; border: none; cursor: pointer;
  white-space: nowrap; border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-nav a:hover,
.nav-dropdown-toggle:hover { color: #fff; }
.site-nav a[aria-current="page"] { color: #fff; border-bottom-color: var(--gold); }
.nav-dropdown.open .nav-dropdown-toggle { color: #fff; }

.nav-dropdown { position: relative; }
.caret { filter: brightness(0) invert(1); opacity: 0.65; transition: transform 0.2s; }
.nav-dropdown.open .caret { transform: rotate(180deg); }
.site-nav a img:not(.caret), .nav-dropdown-toggle img:not(.caret) { filter: brightness(0) invert(1); opacity: 0.70; transition: opacity 0.2s; }
.site-nav a:hover img:not(.caret), .nav-dropdown-toggle:hover img:not(.caret), .nav-dropdown.open .nav-dropdown-toggle img:not(.caret), .site-nav a[aria-current="page"] img:not(.caret) { opacity: 1; }

.nav-dropdown-menu {
  display: none; flex-direction: column;
  position: absolute; top: 100%; right: 0; min-width: 220px;
  background: #0d4a1f; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
  padding: 8px 0; z-index: 999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  animation: fadeDown 0.15s ease;
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  display: block; padding: 9px 18px; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.75); border-left: 3px solid transparent;
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.08); border-left-color: var(--gold); }

/* ── Hamburger ──────────────────────────────────────────────── */
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 6px;
  flex-shrink: 0; transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.1); }
.nav-toggle img { filter: brightness(0) invert(1); }
.icon-close { display: none; }
.icon-open  { display: block; }
body.nav-open .icon-close { display: block; }
body.nav-open .icon-open  { display: none; }
body.nav-open .nav-toggle { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.1); }

/* ── Mobile nav ─────────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0;
  background: rgba(13,74,31,0.99); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 900; overflow-y: auto; border-top: 3px solid var(--gold);
}
body.nav-open .mobile-nav { display: block; }
.mobile-nav > ul { display: flex; flex-direction: column; padding: 0 0 3rem; }
.mobile-nav a {
  display: block; padding: 1rem 1.5rem; font-size: 1.05rem; font-weight: 600;
  color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.1); transition: all 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.08); padding-left: 2rem; }
.mobile-nav .mobile-section-label {
  padding: 1.5rem 1.5rem 0.5rem; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ── Back to top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-lt));
  border: none; border-radius: 6px; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { box-shadow: 0 0 20px var(--accent-glow); }
.back-to-top img { filter: brightness(0) invert(1); width: 18px; height: 18px; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; border-bottom: 1px solid var(--border); overflow: hidden;
  background-image: url('/images/hero-bg-all-pages.webp');
  background-size: cover; background-position: top center;
  background-color: var(--bg-head);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%);
}
.hero > .container { position: relative; z-index: 2; }
.hero-inner {
  display: flex; align-items: center; gap: 60px;
  padding: calc(var(--header-h) + 48px) 0 72px; min-height: 520px;
}
.hero-text { flex: 1; }
.hero-text h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); color: #fff; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 1px 4px rgba(0,0,0,0.8); }
.hero-text h1 em { font-style: normal; color: var(--gold-lt); }
.hero-sub { font-size: 15px; color: #fff; max-width: 520px; margin-bottom: 28px; line-height: 1.7; text-shadow: 0 1px 3px rgba(0,0,0,1), 0 2px 12px rgba(0,0,0,0.95), 0 0 24px rgba(0,0,0,0.8); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-cta .btn-primary { background: var(--gold); color: #000; border-color: var(--gold); }
.hero-cta .btn-primary img { filter: brightness(0); }
.hero-cta .btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.hero-cta .btn-outline { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.9); }
.hero-cta .btn-outline img { filter: brightness(0) invert(1); }
.hero-cta .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); color: #fff; box-shadow: none; }
.hero-stats {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong { font-family: var(--font-logo); font-size: 1.2rem; color: var(--gold-lt); letter-spacing: 0.04em; text-shadow: 0 1px 6px rgba(0,0,0,0.9); }
.hero-stat span { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 1px 4px rgba(0,0,0,0.9); }

/* Hero leprechaun — absolutely positioned so it never affects section height */
.hero-feature { display: none; position: absolute; bottom: -60px; right: 40px; z-index: 3; pointer-events: none; }
@media (min-width: 900px) { .hero-feature { display: block; } }
.hero-leprechaun { display: block; max-height: 600px; width: auto; object-fit: contain; }
/* Homepage hero — tighter top padding, no bottom padding */
.home-hero .hero-inner { padding-top: calc(var(--header-h) + 16px); padding-bottom: 48px; }

/* Hero welcome bonus display (review pages) */
.hero-bonus { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.hb-featured {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px 16px;
  background: rgba(0,0,0,0.55); border: 1px solid rgba(212,160,23,0.45); border-left: 3px solid var(--gold);
}
.hb-feat-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--gold); color: #000; padding: 3px 8px; flex-shrink: 0;
}
.hb-feat-amount { font-size: 1.15rem; font-weight: 800; color: var(--gold-lt); }
.hb-feat-cond { font-size: 12px; color: #d4d4d4; }
.hb-offers { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hb-offer {
  display: flex; flex-direction: column; gap: 3px; padding: 10px 12px;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.18);
}
.hb-offer-num { font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #a0a0a0; }
.hb-offer-val { font-size: 14px; font-weight: 700; color: #fff; }
.hb-offer-cond { font-size: 12px; color: #c0c0c0; }
.hb-note { font-size: 11px; color: #a8a8a8; }

/* ── Guide strips ───────────────────────────────────────────── */
.guides-section { padding: 50px 0; border-bottom: 1px solid var(--border); }
.guides-strips { display: flex; flex-direction: column; gap: 10px; }

.gstrip {
  display: grid; grid-template-columns: 110px 1fr auto;
  align-items: center; text-decoration: none; border-radius: 10px;
  overflow: hidden; background: var(--bg-card); border: 1px solid var(--border);
  min-height: 82px; position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: transform 0.06s linear, box-shadow 0.06s linear, border-color 0.06s linear;
}
.gstrip:hover {
  transform: translateX(6px);
  box-shadow: -6px 0 0 0 var(--c), 0 8px 24px rgba(0,0,0,0.10);
  border-color: var(--c);
}
.gstrip-left {
  background: #091a0c; height: 100%; min-height: 82px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  padding: 16px 28px 16px 16px;
}
.gstrip-left img { width: 48px; height: 48px; border-radius: 8px; }
.gstrip-right { padding: 16px 16px 16px 20px; display: flex; flex-direction: column; gap: 4px; }
.gstrip-cat { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c); opacity: 0.85; }
.gstrip-title { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.35; margin: 0; }
.gstrip p  { font-size: 13px; color: var(--text-3); line-height: 1.4; margin: 0; }
.gstrip-arrow { font-size: 22px; color: var(--c); padding: 0 24px 0 8px; opacity: 0.35; transition: opacity 0.06s linear, transform 0.06s linear; line-height: 1; }
.gstrip:hover .gstrip-arrow { opacity: 1; transform: translateX(4px); }

/* ── Casino section header ──────────────────────────────────── */
.casino-section-head {
  display: flex; align-items: stretch; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); margin-bottom: 20px; background: var(--bg-2); min-height: 68px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.csh-title {
  flex: 1; display: flex; align-items: center; padding: 0 24px;
  font-size: 18px; font-weight: 800; color: var(--text); border-right: 1px solid var(--border); gap: 8px;
}
.csh-title span { color: var(--accent); }
.csh-meta {
  display: flex; align-items: center; padding: 0 20px;
  font-size: 12px; color: var(--text-3); gap: 6px; flex-shrink: 0;
}
.csh-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
  animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.stars { color: #d97706; font-size: 13px; letter-spacing: 1px; line-height: 1; }
.tag { background: var(--bg-2); border: 1px solid var(--border); color: var(--text-3); font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; }

/* ── Why SpinRoyale — stepper ───────────────────────────────── */
.why-section {
  background: var(--bg-2); padding: 70px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.why-timeline { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.why-item:hover { border-color: var(--accent); box-shadow: 0 4px 16px var(--accent-glow); }
.why-dot {
  width: 64px; height: 64px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-dot img { width: 60px; height: 60px; border-radius: 10px; }
.why-item:hover .why-dot img { box-shadow: 0 4px 18px rgba(0,0,0,0.35); }
.why-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.why-desc  { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ── GRAI panel ─────────────────────────────────────────────── */
.grai-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #0c3519 0%, #166534 100%);
}
.grai-layout  { display: flex; flex-direction: column; gap: 48px; }
.grai-left { flex: 1; }
.grai-right { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.grai-badge {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px;
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(22,163,74,0.25);
  padding: 4px 10px; border-radius: 6px;
}
.grai-badge { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); }
.grai-badge img { width: 12px; height: 12px; filter: brightness(0) invert(1); opacity: 0.75; }
.grai-left h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.3; }
.grai-left p  { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 24px; max-width: 480px; }
.grai-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-lt); font-weight: 600; font-size: 14px; text-decoration: none;
  transition: gap 0.2s;
}
.grai-link:hover { gap: 12px; }
.grai-link img { filter: brightness(0) saturate(100%) invert(87%) sepia(40%) saturate(600%) hue-rotate(5deg) brightness(105%); }
.grai-point {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
}
.grai-point-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.grai-point-icon img { filter: brightness(0) invert(1); opacity: 0.9; }
.grai-point-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.grai-point-desc  { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── Responsible gambling ───────────────────────────────────── */
.rg-section { padding: 40px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.rg-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.rg-heading { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #4b5563; }
.rg-inner p { font-size: 13px; max-width: 560px; }
.rg-note { font-size: 12px; color: #4b5563; max-width: 480px; text-align: center; }
.rg-logos { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.rg-logos a { display: block; opacity: 0.6; transition: opacity 0.2s; }
.rg-logos a:hover { opacity: 1; }
.rg-logos img { height: 36px; width: auto; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-footer);
  padding: 60px 0 28px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--accent-lt) 60%, var(--gold) 80%, transparent 100%);
  opacity: 0.65;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .site-logo { font-size: 1.3rem; margin-bottom: 16px; display: inline-flex; text-shadow: 0 0 24px rgba(212,160,23,0.35); }
.footer-brand .site-logo .logo-spin   { color: var(--gold); }
.footer-brand .site-logo .logo-royale { color: #fff; }
.footer-brand p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.62); max-width: 260px; }
.footer-col-heading {
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 13.5px; color: rgba(255,255,255,0.62);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.footer-col a:hover { color: rgba(255,255,255,0.92); padding-left: 4px; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.58); line-height: 1.75; }
.footer-legal a { color: rgba(255,255,255,0.72); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: rgba(255,255,255,0.90); }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ── Responsive — 768px ──────────────────────────────────────── */
@media (min-width: 768px) {
  .why-timeline {
    flex-direction: row; align-items: flex-start; position: relative; gap: 0; padding-bottom: 0;
  }
  .why-timeline::before {
    content: ''; position: absolute; top: 32px; left: 5%; right: 5%;
    height: 2px; background: linear-gradient(to right, var(--accent), var(--accent-lt));
    opacity: 0.4; z-index: 0;
  }
  .why-item {
    flex: 1; flex-direction: column; align-items: center; text-align: center;
    background: transparent; border: none; padding: 0 8px; z-index: 1; gap: 12px;
    box-shadow: none;
  }
  .why-item:hover { border-color: transparent; box-shadow: none; }
  .why-dot { background: transparent; }

  .grai-layout { flex-direction: row; align-items: flex-start; gap: 64px; }
  .grai-left   { flex: 1.1; }
  .grai-right  { flex: 1; }

  .footer-grid   { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}

/* ── Responsive — 900px ──────────────────────────────────────── */
@media (min-width: 900px) {
  .site-nav  { display: flex; align-items: center; }
  .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SCREENSHOT SLIDESHOW
═══════════════════════════════════════════════════════════════ */

.hero-screenshots {
  display: none; flex-shrink: 0;
  position: relative; width: 690px;
  align-self: stretch;
}
@media (min-width: 900px) { .hero-screenshots { display: block; } }

/* Casino logo floating above the panels */
.ss-casino-logo {
  position: absolute; bottom: 440px; left: 175px;
  z-index: 3;
  border: 1px solid rgba(200,145,18,0.55);
  box-shadow: 0 0 10px rgba(200,145,18,0.4), 0 0 3px rgba(200,145,18,0.7), 0 2px 14px rgba(0,0,0,0.9);
}

/* Desktop panel — bottom-aligned with mobile */
.ss-desktop-outer {
  position: absolute; bottom: 28px; left: 0; width: 540px;
  border: 1.5px solid rgba(255,255,255,0.22); overflow: hidden; z-index: 1;
  box-shadow: 0 16px 50px rgba(0,0,0,0.65), 0 0 0 1px rgba(0,0,0,0.4);
}
.ss-browser-bar {
  height: 20px; background: #1c1c1e;
  display: flex; align-items: center; gap: 5px; padding: 0 10px;
}
.ss-browser-bar span { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ss-browser-bar span:nth-child(1) { background: #ff5f57; }
.ss-browser-bar span:nth-child(2) { background: #febc2e; }
.ss-browser-bar span:nth-child(3) { background: #28c840; }
.ss-desktop-inner { position: relative; width: 540px; height: 338px; overflow: hidden; background: #111; }

/* Mobile panel — same bottom edge as desktop, taller (reaches higher) */
.ss-mobile-outer {
  position: absolute; bottom: 28px; right: 0; width: 222px;
  border: 1.5px solid rgba(255,255,255,0.22); border-radius: 14px; overflow: hidden; z-index: 2;
  box-shadow: 0 16px 50px rgba(0,0,0,0.75), 0 0 0 1px rgba(0,0,0,0.5);
}
.ss-status-bar { height: 16px; background: #111; }
.ss-mobile-inner { position: relative; width: 222px; height: 480px; overflow: hidden; background: #111; }

/* Slide images */
.ss-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0; transition: opacity 0.75s ease;
}
.ss-slide.ss-active { opacity: 1; }

/* Dot indicators — centered below both panels */
.ss-dots {
  position: absolute; bottom: 6px; left: 0; right: 0;
  display: flex; gap: 7px; align-items: center; justify-content: center;
}
.ss-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.28); border: none; padding: 0;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.ss-dot.ss-active { background: var(--gold-lt); transform: scale(1.35); }
.ss-dot:hover { background: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════════════
   REVIEW PAGES
═══════════════════════════════════════════════════════════════ */

/* Affiliate disclosure bar */
.disclosure-bar {
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  padding: 8px 0; font-size: 12px; color: #4b5563; text-align: center;
}
.disclosure-bar a { color: #0d7a2e; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Quick facts stat bar (review pages) */
.qfacts-bar {
  position: relative;
  background: linear-gradient(175deg, #1e6035 0%, #091a0e 100%);
  border-top: 1px solid rgba(255,255,255,0.28);
  border-bottom: 3px solid var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 6px 24px rgba(0,0,0,0.4);
  overflow: hidden;
}
.qfacts-bar::before {
  content: '';
  position: absolute;
  inset: 0 0 50% 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.qfacts-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.qf-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}
.qf-stat:nth-child(4n) { border-right: none; }
.qf-stat:nth-last-child(-n+4) { border-bottom: none; }
.qf-stat:hover { background: rgba(255,255,255,0.05); }
.qf-v {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
}
.qf-k {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  text-align: center;
}
.qf-stat.qf-good .qf-v { color: #86efac; }
.qf-stat.qf-bad  .qf-v { color: #fca5a5; }
@media (min-width: 600px) {
  .qfacts-inner { grid-template-columns: repeat(8, 1fr); }
  .qf-stat {
    padding: 16px 12px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .qf-stat:nth-child(4n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .qf-stat:last-child { border-right: none; }
  .qf-v { font-size: 16px; }
  .qf-k { font-size: 9px; }
}
@media (min-width: 900px) {
  .qf-stat { padding: 20px 16px; }
  .qf-v { font-size: 19px; }
  .qf-k { letter-spacing: 1.4px; }
}

/* Review hero modifications */
.review-hero .hero-inner {
  min-height: 760px;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  row-gap: 0;
}
.review-hero .hero-inner > h1 {
  flex: 0 0 100%;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 1px 4px rgba(0,0,0,0.8);
}
@media (max-width: 899px) {
  .review-hero .hero-cta { justify-content: center; }
}
@media (min-width: 900px) {
  .review-hero .hero-inner > h1 { white-space: nowrap; }
}

.rhero-score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.rhero-score-num {
  font-family: var(--font-logo); font-size: 2rem; color: var(--gold-lt); line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.rhero-score-max { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.rhero-stars { color: var(--gold-lt); font-size: 18px; letter-spacing: 2px; text-shadow: 0 1px 6px rgba(0,0,0,0.8); }
.rhero-tag {
  font-size: 11px; font-weight: 700; padding: 3px 9px; letter-spacing: 1px;
  background: rgba(22,163,74,0.25); color: #6ee7b7; border: 1px solid rgba(22,163,74,0.4);
}

/* Review layout wrapper */
.review-wrap { padding: 44px 0 80px; }
.review-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }

/* ── Sidebar ──────────────────────────────────────────────── */
.review-sidebar { display: flex; flex-direction: column; gap: 14px; }
.rside-card { background: var(--bg-card); border: 1px solid var(--border); overflow: hidden; }
.rside-card-head {
  padding: 10px 14px; font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: #4b5563;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
}

/* Jump links */
.jump-nav a {
  display: flex; align-items: center; padding: 9px 14px; font-size: 13px; font-weight: 600;
  color: var(--text-2); border-bottom: 1px solid var(--border); gap: 8px; transition: all 0.15s;
}
.jump-nav a:last-child { border-bottom: none; }
.jump-nav a:hover { color: var(--accent); background: var(--accent-dim); padding-left: 20px; }
.jump-nav a img { width: 13px; height: 13px; opacity: 0.45; flex-shrink: 0;
  filter: invert(31%) sepia(0%) saturate(0%) brightness(60%); }
.jump-nav a:hover img { opacity: 1; filter: invert(44%) sepia(95%) saturate(500%) hue-rotate(103deg); }

/* Sidebar CTA */
.rside-cta { padding: 14px; border-top: 1px solid var(--border); background: var(--bg-2); }
.rside-cta .btn { width: 100%; justify-content: center; font-size: 14px; padding: 13px; }
.rside-cta .btn-primary { background: #0c7a38; border-color: #0c7a38; }
.rside-cta .btn-primary:hover { background: #0a6530; border-color: #0a6530; }
.rside-cta-note { font-size: 11px; color: #4b5563; text-align: center; margin-top: 7px; line-height: 1.5; }

/* ── Review main content ──────────────────────────────────── */
.review-main { display: flex; flex-direction: column; }
.review-section { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--border); }
.review-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.review-section h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 18px; padding-left: 14px; position: relative;
}
.review-section h2::before {
  content: ''; position: absolute; left: 0; top: 3px; bottom: 3px;
  width: 3px; background: var(--accent); border-radius: 2px;
}
.review-section h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.review-section p { font-size: 15px; margin-bottom: 12px; line-height: 1.75; }
.review-section p:last-child { margin-bottom: 0; }
.review-section ul { margin: 10px 0 12px 18px; font-size: 14px; line-height: 1.8; color: var(--text-2); }

/* Section visual image banner */
.section-visual { margin: 0 0 22px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.section-visual img { width: 100%; height: auto; display: block; }

/* Callout boxes (inline within sections) */
.callout-warn {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px;
  border-left: 3px solid var(--red); background: rgba(220,38,38,0.05);
  margin: 14px 0; font-size: 13px; line-height: 1.65; color: var(--text-2);
}
.callout-warn strong { color: #b91c1c; }
.callout-info {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px;
  border: 1px solid rgba(22,163,74,0.25); background: var(--accent-dim);
  margin: 14px 0; font-size: 13px; line-height: 1.65; color: var(--text-2);
}
.callout-info img { flex-shrink: 0; margin-top: 1px;
  filter: invert(44%) sepia(95%) saturate(500%) hue-rotate(103deg); }
.callout-warn img { flex-shrink: 0; margin-top: 1px;
  filter: invert(18%) sepia(99%) saturate(2500%) hue-rotate(345deg) brightness(90%); }

/* Bonus offer cards */
.bonus-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.bonus-card-review { border: 1px solid var(--border); background: var(--bg-card); overflow: hidden; }
.bcr-head {
  padding: 12px 16px; display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(22,163,74,0.1) 0%, rgba(22,163,74,0.03) 100%);
  border-bottom: 1px solid var(--border); gap: 10px; flex-wrap: wrap;
}
.bcr-label {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-4); background: var(--bg-2); border: 1px solid var(--border);
  padding: 2px 8px; flex-shrink: 0;
}
.bcr-title { font-size: 14px; font-weight: 700; color: var(--text); flex: 1; }
.bcr-amount {
  font-family: var(--font-logo); font-size: 1.2rem; font-weight: 800;
  color: var(--accent); letter-spacing: -0.01em; word-break: break-word;
}
.bcr-body { padding: 14px 16px; }
.bcr-body > p { font-size: 14px; margin-bottom: 10px; }
.bcr-terms { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.bcr-term { font-size: 12px; color: var(--text-3); }
.bcr-term strong { color: var(--text-2); }
.bcr-warn {
  margin-top: 12px; padding: 10px 12px;
  border-left: 3px solid #f97316; background: rgba(249,115,22,0.07);
  font-size: 12px; font-weight: 600; color: #fb923c; line-height: 1.6;
}

/* Game types grid */
.game-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0; }
.game-type-item {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-2);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.game-type-item:hover {
  border-color: rgba(22,163,74,0.4); color: var(--text); background: rgba(22,163,74,0.05);
}
.game-type-item img { width: 16px; height: 16px; flex-shrink: 0;
  filter: invert(44%) sepia(95%) saturate(500%) hue-rotate(103deg); }

/* Payment method grid */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 7px; margin: 14px 0; }
.payment-item {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 8px; min-height: 44px; background: var(--bg-card); border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; color: var(--text-2); text-align: center;
}
.payment-item::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.payment-item.excluded { color: var(--text-4); text-decoration: line-through; background: rgba(220,38,38,0.04); }
.payment-item.excluded::before { background: var(--red); }

/* Licence table */
.licence-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 16px 0; }
.licence-table th {
  text-align: left; padding: 9px 13px; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3);
  background: var(--bg-2); border: 1px solid var(--border);
}
.licence-table td { padding: 10px 13px; border: 1px solid var(--border); color: var(--text-2); vertical-align: top; line-height: 1.55; }
.licence-table td:first-child { color: var(--text); font-weight: 700; }
.licence-table tr:nth-child(even) td { background: var(--bg-2); }
.licence-table tr:nth-child(even) td:first-child { background: rgba(22,163,74,0.05); }

/* Wagering contribution table */
.wager-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 16px 0; }
.wager-table th {
  text-align: left; padding: 9px 13px; font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3);
  background: var(--bg-2); border: 1px solid var(--border);
}
.wager-table td { padding: 9px 13px; border: 1px solid var(--border); color: var(--text-2); font-size: 13px; vertical-align: middle; line-height: 1.55; }
.wager-table tr:nth-child(even) td { background: var(--bg-2); }
.wager-table .rate-100 { color: var(--accent); font-weight: 700; font-size: 15px; }
.wager-table .rate-mid  { color: #d97706; font-weight: 700; font-size: 15px; }
.wager-table .rate-low  { color: var(--red); font-weight: 700; font-size: 15px; }

/* Red flag items */
.flag-list { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.flag-item {
  display: flex; gap: 16px; padding: 18px 16px;
  border: 1px solid rgba(220,38,38,0.2); border-left: 4px solid var(--red);
  background: rgba(220,38,38,0.04);
}
.flag-icon { padding-top: 1px; flex-shrink: 0; }
.flag-icon img { width: 20px; height: 20px;
  filter: invert(35%) sepia(90%) saturate(2000%) hue-rotate(335deg) brightness(95%); }
.flag-content { flex: 1; min-width: 0; }
.flag-item-title { font-size: 14px; font-weight: 800; color: #f87171; margin-bottom: 8px; line-height: 1.4; }
.flag-item-body { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.flag-item-quote {
  font-size: 12px; color: var(--text-3); font-style: italic;
  margin-top: 10px; padding: 8px 12px; line-height: 1.65;
  border-left: 2px solid rgba(220,38,38,0.35); background: rgba(220,38,38,0.04);
}

/* Pros/cons */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.pros-cons-block { border: 1px solid var(--border); overflow: hidden; }
.pcb-head {
  padding: 10px 16px; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; border-bottom: 1px solid var(--border);
}
.pcb-head.pros-head { background: rgba(22,163,74,0.1); color: var(--bg-head); }
.pcb-head.cons-head { background: rgba(220,38,38,0.08); color: #b91c1c; }
.pcb-list { padding: 6px 0; }
.pcb-list li {
  display: flex; align-items: flex-start; gap: 9px; padding: 8px 16px;
  font-size: 13px; color: var(--text-2); line-height: 1.55;
  border-bottom: 1px solid var(--border);
}
.pcb-list li:last-child { border-bottom: none; }
.pcb-list li img { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; }
.pcb-list.pros-list li img { filter: invert(44%) sepia(95%) saturate(500%) hue-rotate(103deg); }
.pcb-list.cons-list li img { filter: invert(35%) sepia(90%) saturate(2000%) hue-rotate(335deg) brightness(95%); }

/* Verdict panel */
.verdict-panel {
  padding: 22px 20px; background: var(--bg-2); margin-top: 20px;
  border: 1px solid var(--border); border-left: 4px solid var(--accent);
}
.verdict-panel h3 {
  font-size: 15px; font-weight: 800; margin-bottom: 12px; color: var(--text);
  letter-spacing: -0.01em;
}
.verdict-panel p { font-size: 14px; margin-bottom: 10px; line-height: 1.75; color: var(--text-2); }
.verdict-panel p:last-child { margin-bottom: 0; color: var(--text-3); font-size: 13px; }

/* RG tools grid */
.rg-tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0; }
.rg-tool-item {
  display: flex; align-items: center; gap: 9px; padding: 11px 13px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-2);
}
.rg-tool-item img { width: 14px; height: 14px; flex-shrink: 0;
  filter: invert(44%) sepia(95%) saturate(500%) hue-rotate(103deg); }

/* ── Rating / methodology section ────────────────────────── */
.rating-header {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding: 22px; background: var(--bg-card); border: 1px solid var(--border);
  margin-bottom: 22px;
}
.rating-total { flex-shrink: 0; text-align: center; }
.rating-total-row { display: flex; align-items: baseline; gap: 4px; justify-content: center; }
.rating-total-num { font-size: 3.8rem; font-weight: 900; line-height: 1; color: var(--accent); letter-spacing: -0.03em; }
.rating-total-max { font-size: 1.3rem; font-weight: 600; color: var(--text-3); }
.rating-total-stars { font-size: 1.1rem; color: #d97706; margin: 5px 0 3px; }
.rating-total-label { font-size: 10px; color: var(--text-4); letter-spacing: 1px; text-transform: uppercase; }
.rating-divider { width: 1px; background: var(--border); align-self: stretch; flex-shrink: 0; }
.rating-summary-text { font-size: 14px; color: var(--text-2); line-height: 1.75; flex: 1; min-width: 200px; }

.score-rows { display: flex; flex-direction: column; gap: 10px; }
.score-row { display: flex; border: 1px solid var(--border); overflow: hidden; }
.score-row-num {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 72px; font-size: 1.7rem; font-weight: 900; color: #fff; letter-spacing: -0.02em;
}
.score-row-num.score-green  { background: rgba(22,163,74,0.85); }
.score-row-num.score-amber  { background: rgba(217,119,6,0.85); }
.score-row-num.score-orange { background: rgba(249,115,22,0.85); }
.score-row-num.score-red    { background: rgba(220,38,38,0.85); }
.score-row-main { flex: 1; padding: 14px 16px; background: var(--bg-card); min-width: 0; }
.score-row-title {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-3); margin-bottom: 8px;
}
.score-row-bar-track { height: 4px; background: var(--bg-2); border: 1px solid var(--border); margin-bottom: 10px; }
.score-row-bar-fill { height: 100%; }
.score-row-bar-fill.score-green  { background: var(--accent); }
.score-row-bar-fill.score-amber  { background: #d97706; }
.score-row-bar-fill.score-orange { background: #f97316; }
.score-row-bar-fill.score-red    { background: var(--red); }
.score-row-reason { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* Verdict CTA block */
.verdict-cta { text-align: center; margin-top: 28px; }
.verdict-cta .btn { font-size: 15px; padding: 14px 34px; }
.verdict-cta-note { font-size: 12px; color: var(--text-4); margin-top: 9px; }

/* Review responsive — mobile bonus card stack */
@media (max-width: 599px) {
  .bcr-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .bcr-title { flex: none; }
  .bcr-amount { font-size: 1.05rem; }
}
/* Review responsive — 700px */
@media (min-width: 700px) {
  .bcr-terms { grid-template-columns: repeat(3, 1fr); }
  .game-type-grid { grid-template-columns: repeat(3, 1fr); }
  .rg-tools-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Review responsive — 1020px: sidebar goes to right column */
@media (min-width: 1020px) {
  .review-layout { grid-template-columns: 1fr 288px; gap: 40px; }
  .review-sidebar { position: sticky; top: calc(var(--header-h) + 20px); max-height: calc(100vh - var(--header-h) - 40px); overflow-y: auto; }
}

/* ── Review Hub ─────────────────────────────────────────────────── */
.hub-hero .hero-inner {
  flex-direction: column; align-items: center; text-align: center;
  min-height: 360px; justify-content: center; gap: 14px; max-width: 820px; margin: 0 auto;
}
.hub-hero .hero-inner > h1 {
  color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 1px 4px rgba(0,0,0,0.7);
}
.hub-hero .hero-sub { max-width: 620px; margin-bottom: 8px; }

.rcard-list { display: flex; flex-direction: column; gap: 28px; list-style: none; padding: 0; margin: 0; }
.rcard { background: var(--bg-card); border: 1px solid var(--border); overflow: hidden; }

.rcard-banner {
  padding: 6px 16px; font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.banner-gold    { background: var(--gold); color: #000; }
.banner-green   { background: var(--accent); color: #fff; }
.banner-blue    { background: #2563eb; color: #fff; }
.banner-neutral { background: var(--bg-2); color: #4b5563; border-bottom: 1px solid var(--border); }

/* Card body: column on mobile, side-by-side on desktop */
.rcard-body { display: flex; flex-direction: column; }

/* ── Screenshot preview panel ─────────────────────────────────── */
.rcard-preview {
  position: relative; overflow: hidden;
  background: #141414;
  display: flex; flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
  height: 210px;
}

/* Browser chrome bar */
.rcard-browser-bar {
  background: #242424;
  height: 28px;
  display: flex; align-items: center;
  padding: 0 12px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rcard-browser-bar::before {
  content: '';
  display: block;
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff5f57;
  box-shadow: 14px 0 0 #ffbd2e, 28px 0 0 #28c840;
  flex-shrink: 0;
}
.rcard-url-bar {
  display: block;
  flex: 1;
  height: 14px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  margin-left: 46px;
}

/* Desktop screenshot fills the panel */
.rcard-screenshot {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.rcard-preview:hover .rcard-screenshot { transform: scale(1.04); }

/* Hover overlay */
.rcard-preview::after {
  content: 'Read Full Review';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.48);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700; font-size: 13px; letter-spacing: 0.5px;
  opacity: 0; transition: opacity 0.25s;
  pointer-events: none;
}
.rcard-preview:hover::after { opacity: 1; }

/* Mobile phone mockup — hidden on small screens */
.rcard-phone {
  display: none;
  position: absolute;
  bottom: 12px; right: 12px;
  width: 60px;
  background: #0d0d0d;
  border-radius: 11px;
  padding: 5px 3px 4px;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow: 0 6px 28px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}
.rcard-phone::before {
  content: '';
  display: block;
  width: 18px; height: 4px;
  background: rgba(255,255,255,0.14);
  border-radius: 2px;
  margin: 0 auto 4px;
}
.rcard-phone img { width: 100%; border-radius: 5px; display: block; }

/* ── Info panel ────────────────────────────────────────────────── */
.rcard-info {
  flex: 1;
  padding: 18px 16px;
  display: flex; flex-direction: column;
  gap: 13px; min-width: 0;
}

.rcard-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.rcard-name-block { flex: 1; min-width: 0; }
.rcard-logo { display: block; width: 108px; height: 40px; object-fit: contain; object-position: left center; margin-bottom: 8px; }
.rcard-name-block h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.rcard-tag-line { font-size: 11px; color: #4b5563; line-height: 1.5; }

.rcard-score-block { text-align: right; flex-shrink: 0; }
.rcard-score-big { font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1; letter-spacing: -0.03em; display: block; }
.rcard-score-big em { font-size: 0.9rem; font-weight: 600; color: var(--text-4); font-style: normal; }
.rcard-stars { color: #d97706; font-size: 13px; margin-top: 5px; letter-spacing: 1px; display: block; }

.rcard-offer {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding: 11px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.rcard-offer-v { font-size: 15px; font-weight: 800; color: var(--text); }
.rcard-offer-t { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.offer-t-good { color: var(--accent); }
.offer-t-warn { color: #b45309; }

.rcard-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.rp-yes, .rp-no {
  font-size: 13px; color: var(--text-2); line-height: 1.5;
  display: flex; gap: 7px; align-items: flex-start;
}
.rp-yes::before { content: '✓'; color: var(--accent); font-weight: 900; flex-shrink: 0; width: 14px; }
.rp-no::before  { content: '!'; color: #b45309; font-weight: 900; flex-shrink: 0; width: 14px; text-align: center; }

.rcard-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 2px; }

.hub-method { padding: 50px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.hub-method-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.hub-method-inner h2 { margin-bottom: 16px; }
.hub-method-inner p { font-size: 15px; line-height: 1.75; color: var(--text-2); }

/* ── Hub responsive ──────────────────────────────────────────── */
@media (min-width: 860px) {
  .rcard-body { flex-direction: row; }
  .rcard-preview { width: 400px; height: auto; }
  .rcard-phone { display: block; }
  .rcard-info { padding: 22px 22px; gap: 15px; }
}

@media (min-width: 1080px) {
  .rcard-preview { width: 460px; }
}

/* ── How We Review page ──────────────────────────────────────────── */
.how-body { max-width: 780px; margin: 0 auto; }
.how-body h2 { margin-bottom: 14px; }
.how-body p { font-size: 15px; line-height: 1.8; color: var(--text-2); margin-bottom: 14px; }
.how-body p:last-child { margin-bottom: 0; }

.how-pledge {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  margin: 28px 0;
}
.how-pledge-title { font-size: 11px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.how-pledge ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.how-pledge li { font-size: 14px; color: var(--text-2); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.how-pledge li::before { content: '✕'; color: #b45309; font-weight: 900; flex-shrink: 0; font-size: 11px; margin-top: 2px; }

.how-criteria { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.how-criterion {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  gap: 16px;
}
.how-crit-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.how-crit-icon img { filter: brightness(0) invert(1); }
.how-crit-content { flex: 1; min-width: 0; }
.how-crit-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.how-crit-title { font-size: 1rem; font-weight: 800; color: var(--text); }
.how-crit-num { font-size: 10px; font-weight: 800; color: var(--text-4); background: var(--bg-2); border: 1px solid var(--border); padding: 2px 7px; letter-spacing: 1px; flex-shrink: 0; }
.how-crit-desc { font-size: 13.5px; line-height: 1.7; color: var(--text-2); margin-bottom: 10px; }
.how-crit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.how-crit-list li { font-size: 12px; color: var(--text-3); display: flex; gap: 6px; align-items: flex-start; line-height: 1.5; }
.how-crit-list li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; font-size: 11px; margin-top: 1px; }

.how-rf {
  background: #fffbf0;
  border: 1px solid #fcd9a0;
  border-left: 4px solid #d97706;
  padding: 18px 22px;
  margin: 24px 0;
}
.how-rf p { font-size: 14px; line-height: 1.7; color: var(--text-2); margin-bottom: 0; }

.how-sources { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 20px 0; }
.how-source { background: var(--bg-card); border: 1px solid var(--border); padding: 14px 16px; }
.how-source strong { font-size: 13px; color: var(--text); display: block; margin-bottom: 4px; }
.how-source span { font-size: 12px; color: var(--text-3); line-height: 1.5; display: block; }

.how-notice {
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 16px 20px; margin-top: 8px;
  font-size: 13px; line-height: 1.75; color: var(--text-2);
}

@media (min-width: 640px) {
  .how-sources { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 720px) {
  .how-criterion { padding: 22px 24px; }
}

/* ── Utility: urgent callout ──────────────────────────────────── */
.callout-urgent {
  background: #fef2f2; border: 2px solid #fca5a5;
  border-left: 5px solid #dc2626;
  padding: 20px 24px; margin: 28px 0;
}
.callout-urgent-title { font-size: 15px; font-weight: 800; color: #991b1b; margin-bottom: 10px; }
.callout-urgent-phone { font-size: 2rem; font-weight: 900; color: #dc2626; line-height: 1.1; display: block; margin-bottom: 6px; }
.callout-urgent p { font-size: 13px; color: #7f1d1d; margin: 0; line-height: 1.6; }

/* ── Utility: green info callout ─────────────────────────────── */
.callout-green {
  background: var(--accent-dim); border: 1px solid rgba(22,163,74,0.25);
  border-left: 4px solid var(--accent);
  padding: 16px 20px; margin: 20px 0;
  font-size: 14px; line-height: 1.7; color: var(--text-2);
}
.callout-green strong { color: var(--text); }

/* ── Cookie / data table ─────────────────────────────────────── */
.data-table-wrap { overflow-x: auto; margin: 20px 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 540px; }
.data-table th {
  background: var(--bg-2); padding: 10px 12px; text-align: left;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-3);
  border-bottom: 2px solid var(--border-2);
}
.data-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--text-2); line-height: 1.55; vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table .td-name { font-family: monospace; font-size: 12px; color: var(--text); white-space: nowrap; }
.data-table .td-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.td-type-essential { color: var(--accent); }
.td-type-analytics  { color: #2563eb; }
.td-type-third      { color: #b45309; }

/* ── Styled ordered/unordered lists inside .how-body ─────────── */
.how-body .content-list { padding-left: 0; margin: 14px 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.how-body .content-list li { font-size: 14px; color: var(--text-2); line-height: 1.65; padding-left: 20px; position: relative; }
.how-body .content-list li::before { content: '–'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── Step-by-step numbered list ──────────────────────────────── */
.step-list { counter-reset: step; list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 12px; }
.step-list li { counter-increment: step; display: flex; gap: 14px; align-items: flex-start; }
.step-list li::before {
  content: counter(step);
  flex-shrink: 0; width: 26px; height: 26px;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; margin-top: 1px;
}
.step-list li span { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── Review author box ───────────────────────────────────────── */
.review-author-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.review-author-box {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.review-author-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.review-author-info {
  flex-shrink: 0;
  min-width: 0;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.review-author-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-3);
  margin-bottom: 2px;
}

.review-author-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.review-author-role {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 1px;
}

.review-author-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
  min-width: 0;
  padding: 14px 20px;
  display: flex;
  align-items: center;
}

.review-author-link {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  border-left: 1px solid var(--border);
  padding: 0 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: background 0.15s;
}

.review-author-link:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

/* ── Policy / info page two-column layout ─────────────────────── */
.policy-wrap {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 8px 0;
}

.policy-toc {
  margin-bottom: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 18px 20px;
}

.policy-toc-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-3);
  margin-bottom: 12px;
}

.policy-toc nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.policy-toc nav a {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-3);
  padding: 5px 10px;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  margin-left: -8px;
}

.policy-toc nav a:hover,
.policy-toc nav a.toc-active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--accent-dim);
}

.policy-content { min-width: 0; }

.policy-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  padding-top: 36px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 16px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.policy-content h2:first-child { padding-top: 0; }

.policy-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 8px;
}

.policy-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 14px;
}

.policy-content p:last-child { margin-bottom: 0; }

.policy-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.policy-content a:hover { color: var(--accent-lt); }

/* Global content-list — works inside or outside .how-body */
.content-list {
  padding-left: 0;
  margin: 14px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-list li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}

.content-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* 3-column variant for org grids */
@media (min-width: 1024px) {
  .how-sources--wide { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Author page ─────────────────────────────────────────────── */
.author-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 48px;
}

.author-photo-wrap {
  flex-shrink: 0;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.author-photo {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  display: block;
}

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

.author-name {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 4px;
}

.author-role {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
}

.author-bio p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 14px;
}

.author-bio p:last-child { margin-bottom: 0; }

.author-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.author-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 120px;
}

.author-meta-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
}

.author-meta-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.author-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  background: var(--bg);
  transition: border-color 0.15s, color 0.15s;
}

.author-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.review-chip {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 10px 14px;
  transition: border-color 0.15s, color 0.15s;
  line-height: 1.4;
}

.review-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (min-width: 680px) {
  .author-card {
    flex-direction: row;
    align-items: flex-start;
  }

  .author-photo-wrap {
    width: 200px;
    margin: 0;
  }
}

@media (min-width: 900px) {
  .author-photo-wrap { width: 240px; }
}

/* Policy desktop layout */
@media (min-width: 860px) {
  .policy-wrap {
    grid-template-columns: 220px 1fr;
    gap: 52px;
  }

  .policy-toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    margin-bottom: 0;
  }

  .policy-content h2 { padding-top: 32px; }
}

/* ════════════════════════════════════════════════════════════════
   MONEY PAGE COMPONENTS — bonus types, FAQ, section banners
════════════════════════════════════════════════════════════════ */

/* Full-width image banner inside a section (above text content) */
.section-banner {
  width: 100%; overflow: hidden; margin-bottom: 32px;
  border: 1px solid var(--border); max-height: 240px;
}
.section-banner img { width: 100%; height: 240px; object-fit: cover; object-position: center; display: block; }

/* Bonus type card grid — 1 col mobile, 2 col desktop */
.bonus-type-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 14px; max-width: 880px; margin: 28px auto 0;
}
@media (min-width: 640px) { .bonus-type-grid { grid-template-columns: 1fr 1fr; } }

.bonus-type-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.bonus-type-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 18px var(--accent-glow);
}
.bonus-type-icon {
  width: 46px; height: 46px; background: var(--accent);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bonus-type-icon img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.bonus-type-title { font-size: 1rem; font-weight: 800; color: var(--text); }
.bonus-type-body { font-size: 14px; color: var(--text-2); line-height: 1.72; }

/* Section intro label (above H2 in content sections) */
.section-label {
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg-head); margin-bottom: 8px; display: block;
}

/* Condition cards — icon left, content right */
.condition-list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.condition-item {
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; gap: 18px; padding: 20px 20px;
}
.condition-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.condition-icon img { width: 20px; height: 20px; opacity: 0.7; }
.condition-icon.warn-icon { background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.2); }
.condition-icon.warn-icon img { filter: invert(35%) sepia(90%) saturate(2000%) hue-rotate(335deg) brightness(95%); opacity: 1; }
.condition-content { flex: 1; min-width: 0; }
.condition-title { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.condition-body { font-size: 13.5px; color: var(--text-2); line-height: 1.72; }

/* RTP slot card grid (best-payout-casinos-ireland) */
.rtp-slot-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 12px; margin: 28px 0;
}
@media (min-width: 600px) { .rtp-slot-grid { grid-template-columns: 1fr 1fr; } }
.rtp-slot-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 18px 20px 16px; display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.18s;
}
.rtp-slot-card:hover { border-color: var(--gold); }
.rtp-slot-head {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}
.rtp-slot-info { min-width: 0; }
.rtp-slot-name { font-size: 14px; font-weight: 800; color: var(--text); line-height: 1.3; }
.rtp-slot-provider {
  font-size: 10px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; display: block;
}
.rtp-badge {
  flex-shrink: 0; background: var(--gold); color: #0d0d0d;
  font-size: 13px; font-weight: 900; padding: 5px 9px;
  line-height: 1; letter-spacing: -0.3px; white-space: nowrap;
}
.rtp-slot-body { font-size: 13px; color: var(--text-2); line-height: 1.72; }

/* Payout method card grid (best-payout-casinos-ireland) */
.method-card-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 14px; margin: 28px 0;
}
@media (min-width: 640px) { .method-card-grid { grid-template-columns: repeat(3, 1fr); } }
.method-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 20px 20px 18px; display: flex; flex-direction: column; gap: 10px;
}
.method-card-head { display: flex; align-items: flex-start; gap: 12px; }
.method-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.method-icon img { width: 20px; height: 20px; }
.method-icon.icon-fast {
  background: rgba(22,163,74,0.08); border-color: rgba(22,163,74,0.22);
}
.method-icon.icon-fast img { filter: invert(44%) sepia(95%) saturate(500%) hue-rotate(103deg); }
.method-icon.icon-warn { background: rgba(217,119,6,0.08); border-color: rgba(217,119,6,0.2); }
.method-icon.icon-warn img { filter: invert(40%) sepia(90%) saturate(700%) hue-rotate(15deg) brightness(85%); }
.method-icon.icon-slow { background: rgba(220,38,38,0.06); border-color: rgba(220,38,38,0.16); }
.method-icon.icon-slow img { filter: invert(35%) sepia(90%) saturate(2000%) hue-rotate(335deg) brightness(95%); }
.method-label { flex: 1; min-width: 0; }
.method-name { font-size: 14px; font-weight: 800; color: var(--text); line-height: 1.2; }
.method-speed {
  display: inline-block; margin-top: 5px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 8px;
}
.method-speed-fast { background: rgba(22,163,74,0.1); color: var(--accent); }
.method-speed-mid { background: rgba(217,119,6,0.08); color: #b45309; }
.method-speed-slow { background: rgba(220,38,38,0.08); color: #b91c1c; }
.method-card-body { font-size: 13px; color: var(--text-2); line-height: 1.72; }

/* Styled FAQ blocks */
.faq-block {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); background: var(--bg-card); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 18px 22px; display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
}
.faq-num {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.faq-question { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.4; }
.faq-a { padding: 16px 22px 18px; font-size: 14px; color: var(--text-2); line-height: 1.78; }

/* Money page text body — full container width */
.mp-body h2 { margin-bottom: 18px; }
.mp-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 22px 0 10px; }
.mp-body p  { font-size: 15px; line-height: 1.8; color: var(--text-2); margin-bottom: 14px; }
.mp-body p:last-child { margin-bottom: 0; }
.mp-body a  { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.mp-body a:hover { color: var(--accent-lt); }

/* Guide page bonus-type-card with inline h3/p (no .bonus-type-title class) */
.bonus-type-card h3 { font-size: 14px; font-weight: 800; color: var(--text); margin: 0 0 4px; line-height: 1.35; }
.bonus-type-card p  { font-size: 13px; color: var(--text-2); line-height: 1.7; margin: 0; }
.bonus-type-card a  { color: var(--accent); }
.btc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2);
  display: flex; align-items: center; justify-content: center;
}
.btc-icon img { opacity: 0.8; }

/* Guide page method-card with inline h3/p (casino-payment-methods-ireland) */
.method-card h3 { font-size: 15px; font-weight: 800; color: var(--text); margin: 0; line-height: 1.3; }
.method-card p  { font-size: 13px; color: var(--text-2); line-height: 1.72; margin: 0; }
.method-card a  { color: var(--accent); }
.mc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.mc-icon img { opacity: 0.8; }
.mc-speed {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.8px; margin: 6px 0 4px;
}

/* Links inside condition-content */
.condition-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Guides hub page — card grid */
.guide-hub-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 14px; margin: 32px 0;
}
@media (min-width: 640px) { .guide-hub-grid { grid-template-columns: 1fr 1fr; } }
.guide-hub-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 24px 22px 20px; text-decoration: none;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.guide-hub-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 18px var(--accent-glow);
}
.ghc-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.ghc-icon img { opacity: 0.72; }
.guide-hub-card:hover .ghc-icon { border-color: var(--accent); }
.guide-hub-card:hover .ghc-icon img { opacity: 1; }
.ghc-body { flex: 1; min-width: 0; }
.ghc-body h3 { font-size: 15px; font-weight: 800; color: var(--text); margin: 0 0 8px; line-height: 1.35; }
.ghc-body p  { font-size: 13px; color: var(--text-2); line-height: 1.72; margin: 0 0 12px; }
.ghc-link { font-size: 11px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; }
.ghc-rg { border-color: rgba(22,163,74,0.18); }

/* ── Homepage Casino Cards v2 (cc-*) ────────────────────────── */
.cc-list { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.cc-card {
  list-style: none; background: var(--bg-card); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-areas: "rank logo" "body body" "feats feats" "actions actions";
  transition: border-color 0.12s, box-shadow 0.12s, transform 0.12s;
}
.cc-card:hover { border-color: var(--accent); box-shadow: 0 6px 24px rgba(22,163,74,0.12); transform: translateY(-2px); }
.cc-card.featured { border-color: rgba(22,163,74,0.30); }
.cc-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}
.cc-rank {
  grid-area: rank;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); border-right: 1px solid var(--border); padding: 0 8px;
}
.cc-num { font-size: 17px; font-weight: 800; color: var(--text-3); font-family: var(--font-head); line-height: 1; }
.cc-card.featured .cc-num { color: var(--gold); }
.cc-logo { grid-area: logo; display: flex; align-items: center; padding: 14px 16px; }
.cc-logo img { max-width: 120px; max-height: 44px; object-fit: contain; }
.cc-body {
  grid-area: body; padding: 12px 16px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.cc-name { font-size: 15px; font-weight: 700; color: var(--text); margin: 0; line-height: 1.2; }
.cc-sub { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cc-stars { color: #d97706; font-size: 12px; letter-spacing: 1.5px; line-height: 1; }
.cc-lic {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--accent); background: rgba(22,163,74,0.10); border: 1px solid rgba(22,163,74,0.20);
  padding: 2px 7px; line-height: 1.4;
}
.cc-offer { font-size: 12px; color: var(--text-3); margin: 0; line-height: 1.3; }
.cc-feats {
  grid-area: feats; list-style: none; padding: 10px 16px; margin: 0;
  border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px 20px;
}
.cc-feat { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--text-2); list-style: none; }
.ccf-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.15);
  display: flex; align-items: center; justify-content: center;
}
.ccf-icon img { filter: brightness(0) saturate(100%) invert(47%) sepia(78%) saturate(466%) hue-rotate(93deg) brightness(95%) contrast(91%); }
.cc-actions {
  grid-area: actions; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-top: 1px solid var(--border);
}
.cc-review { font-size: 12px; font-weight: 600; color: var(--text-3); text-decoration: none; transition: color 0.12s; white-space: nowrap; }
.cc-review:hover { color: var(--accent); }
@media (min-width: 720px) {
  .cc-card {
    grid-template-columns: 52px 150px 1fr 1fr auto;
    grid-template-rows: 1fr;
    grid-template-areas: "rank logo body feats actions";
    min-height: 88px;
  }
  .cc-logo { border-right: 1px solid var(--border); padding: 16px 20px; justify-content: center; }
  .cc-body { border-top: none; padding: 16px 20px; justify-content: center; }
  .cc-feats { border-top: none; border-left: 1px solid var(--border); padding: 16px 20px; flex-wrap: nowrap; flex-direction: column; gap: 7px; justify-content: center; min-width: 160px; }
  .cc-actions { border-top: none; border-left: 1px solid var(--border); padding: 16px 20px; flex-direction: column; justify-content: center; align-items: center; min-width: 128px; gap: 8px; }
}

/* ── Floating "See Top 10" near leprechaun hand ─────────────── */
.hero-cta-inline { display: inline-flex; margin-top: 20px; }
.hero-top10-float { display: none; }
@media (min-width: 900px) {
  .hero-cta-inline { display: none; }
  .hero-top10-float {
    display: inline-flex;
    position: absolute;
    right: 390px;
    top: 38%;
    transform: translateY(-50%);
    z-index: 4;
    font-size: 1rem;
    padding: 14px 28px;
    box-shadow: 0 4px 24px rgba(212,160,23,0.45), 0 2px 8px rgba(0,0,0,0.5);
    animation: float-pulse 2.8s ease-in-out infinite;
  }
}
@keyframes float-pulse {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50%       { transform: translateY(-50%) translateY(-6px); }
}

/* ── Guide Hub (homepage) ───────────────────────────────────── */
.guide-hub-section { background: var(--bg-2); }
.guide-hub-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) { .guide-hub-grid { grid-template-columns: repeat(2, 1fr); } }
.gh-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 20px; text-decoration: none;
  transition: border-color 0.12s, box-shadow 0.12s, transform 0.12s;
}
.gh-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(22,163,74,0.10); transform: translateY(-2px); }
.gh-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--accent-dim); border: 1px solid rgba(22,163,74,0.20);
  display: flex; align-items: center; justify-content: center;
}
.gh-icon img { filter: brightness(0) saturate(100%) invert(47%) sepia(78%) saturate(466%) hue-rotate(93deg) brightness(95%) contrast(91%); }
.gh-body { flex: 1; }
.gh-cat { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 3px; }
.gh-title { font-size: 14px; font-weight: 700; color: var(--text); margin: 0 0 5px; }
.gh-desc { font-size: 13px; color: var(--text-3); line-height: 1.55; }
.gh-arrow { font-size: 18px; color: var(--text-4); flex-shrink: 0; transition: color 0.12s; }
.gh-card:hover .gh-arrow { color: var(--accent); }

/* ── Author spotlight (homepage) ────────────────────────────── */
.author-section { background: var(--bg-2); }
.author-spotlight {
  display: flex; max-width: 860px; margin: 0 auto;
  border: 1px solid var(--border); overflow: hidden;
}
.author-spot-img {
  width: 190px; flex-shrink: 0;
  background: var(--bg-head); overflow: hidden;
}
.author-spot-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.author-spot-body { flex: 1; padding: 32px 36px; background: var(--bg-card); }
.author-spot-label { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; }
.author-spot-name { font-size: 24px; font-weight: 700; color: var(--text); margin: 0 0 3px; }
.author-spot-role { font-size: 13px; color: var(--text-3); margin: 0 0 14px; }
.author-spot-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.author-spot-tags span {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid rgba(22,163,74,0.20);
}
.author-spot-bio { font-size: 14px; color: var(--text-2); line-height: 1.8; margin: 0 0 20px; }
.author-spot-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none;
  transition: gap 0.15s;
}
.author-spot-link:hover { gap: 10px; }
.author-spot-link img { filter: brightness(0) saturate(100%) invert(47%) sepia(78%) saturate(466%) hue-rotate(93deg) brightness(95%) contrast(91%); }
@media (max-width: 639px) {
  .author-spotlight { flex-direction: column; }
  .author-spot-img { width: 100%; height: 200px; }
  .author-spot-body { padding: 24px; }
}
