/* styles.css — theme + page styles */
/* Domain: thebeigelshop.com */

/* ---------- WELCOME POPUP ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  background: #1a1712;
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(218,165,32,0.2);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.popup-overlay.active .popup-box {
  transform: translateY(0);
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.popup-close:hover { color: #fff; }
.popup-star {
  font-size: 3rem;
  color: #daa520;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(218,165,32,0.4);
}
.popup-heading {
  font-family: var(--font-heading);
  color: #daa520;
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}
.popup-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.popup-cta {
  display: block;
  padding: 1rem;
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(185,28,28,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 1rem;
}
.popup-cta:visited { color: #fff !important; -webkit-text-fill-color: #fff; }
.popup-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(185,28,28,0.5); }
.popup-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
}
.popup-dismiss:hover { color: rgba(255,255,255,0.6); }

/* ---------- FLOATING CTA BUTTON ---------- */
.floating-cta {
  position: fixed;
  right: 0;
  bottom: 2rem;
  top: auto;
  z-index: 9000;
  writing-mode: horizontal-tb;
}
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #7c3aed, #6d28d9, #4c1d95);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 40px 0 0 40px;
  box-shadow: -4px 4px 20px rgba(124,58,237,0.5), 0 0 30px rgba(124,58,237,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  animation: floatingPulse 2s ease-in-out infinite;
}
.floating-cta a:visited { color: #fff !important; -webkit-text-fill-color: #fff; }
.floating-cta a:hover {
  transform: translateX(-6px);
  box-shadow: -6px 4px 25px rgba(124,58,237,0.6), 0 0 40px rgba(124,58,237,0.3);
}
.floating-cta-star {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
@keyframes floatingPulse {
  0%, 100% { box-shadow: -4px 4px 20px rgba(124,58,237,0.5), 0 0 30px rgba(124,58,237,0.2); }
  50% { box-shadow: -4px 4px 25px rgba(124,58,237,0.7), 0 0 45px rgba(124,58,237,0.35); }
}
@media (max-width: 1024px) {
  .floating-cta { display: none; }
}

/* ========== FROST GLASS DESIGN SYSTEM ========== */
/* Domain: thebeigelshop.com */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --success: #10b981;
  --danger: #ef4444;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #f8fafc;
  --bg-card: rgba(255,255,255,0.85);
  --bg-glass: rgba(255,255,255,0.6);
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --font-heading: 'Domine', Georgia, serif;
  --font-body: 'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Sansita Swashed', cursive;
  --max-width: 1200px;
  --nav-height: 110px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 100px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
}

/* Main nav */
.nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius-xs);
  transition: background 0.2s, color 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background: #f1f0ff;
  color: var(--primary);
}
.nav-arrow {
  font-size: 0.55rem;
  transition: transform 0.2s;
  margin-left: 0.15rem;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1001;
  max-height: 70vh;
  overflow-y: auto;
}
.nav-menu > li:hover > .nav-dropdown,
.nav-menu > li:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: #f8f7ff; color: var(--primary); }
.nav-dropdown-label {
  display: block;
  padding: 0.5rem 1.1rem 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Mobile hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.75rem; position: relative; z-index: 1001; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #1e1b4b;
  color: #cbd5e1;
  margin-top: auto;
  padding: 3rem 1.5rem 1.5rem;
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a {
  color: #94a3b8;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #e2e8f0; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}
.footer-badges { display: flex; gap: 0.75rem; align-items: center; }
.footer-badges img { height: 28px; opacity: 0.7; }
.footer-disclaimer {
  max-width: var(--max-width);
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.6;
}

/* ---------- HERO / H1 BLOCK ---------- */
.page-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4c1d95 100%);
  padding: 2.5rem 1.5rem 2rem;
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.gradient-word {
  background: linear-gradient(90deg, #a78bfa, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 4px;
  padding: 0.15em 0.5em;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.35rem;
}
.hero-bonus {
  margin: 0.6rem 0 0.15rem;
}

/* ---------- HERO META (author / updated / fact-checker) ---------- */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 1rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.hero-meta-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.hero-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-meta-item a {
  color: #c4b5fd;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,181,253,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.hero-meta-item a:hover {
  color: #e9d5ff;
  border-color: rgba(233,213,255,0.6);
}
.hero-meta-sep {
  color: rgba(255,255,255,0.3);
}
@media (max-width: 600px) {
  .hero-meta {
    flex-direction: column;
    gap: 0.35rem;
  }
  .hero-meta-sep {
    display: none;
  }
}

/* ---------- CONTENT WRAPPER ---------- */
.casino-content-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem 2rem;
  width: 100%;
  text-align: left;
}
.casino-content-wrapper:has(.casino-sidebar) {
  display: flex;
  gap: 2rem;
}
.casino-main-col { flex: 1; min-width: 0; }

/* ---------- SIDEBAR ---------- */
.casino-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  align-self: flex-start;
  max-height: calc(100vh - var(--nav-height) - 2rem);
  overflow-y: auto;
}
.sidebar-widget {
  background: linear-gradient(145deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 0.85rem;
  color: #fff;
  border: 1px solid rgba(167,139,250,0.2);
  box-shadow: 0 4px 20px rgba(30,27,75,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.sidebar-widget-light {
  background: linear-gradient(145deg, #ffffff, #f8f7ff);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 0.85rem;
  color: var(--text);
  box-shadow: 0 4px 15px rgba(124,58,237,0.08);
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #a78bfa, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.25rem;
}
.sidebar-title-dark {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #7c3aed, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.25rem;
}

/* Top Picks */
.sidebar-pick {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-pick:last-child { border-bottom: none; }
.sidebar-pick-rank {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.sidebar-pick-rank.gold { background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706); box-shadow: 0 2px 10px rgba(245,158,11,0.5); }
.sidebar-pick-rank.silver { background: linear-gradient(135deg, #e2e8f0, #94a3b8, #64748b); box-shadow: 0 2px 8px rgba(148,163,184,0.4); }
.sidebar-pick-rank.bronze { background: linear-gradient(135deg, #d97706, #b45309, #78350f); box-shadow: 0 2px 8px rgba(180,83,9,0.4); }
.sidebar-pick-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.sidebar-pick-info { flex: 1; min-width: 0; }
.sidebar-pick-name { font-weight: 700; font-size: 0.8rem; color: #fff; margin-bottom: 2px; }
.sidebar-pick-bonus { font-size: 0.65rem; color: rgba(196,181,253,0.7); }
.sidebar-pick-cta {
  font-size: 0.62rem;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 6px rgba(245,158,11,0.3);
}
.sidebar-pick-cta:hover { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(245,158,11,0.45); color: #1a1a1a; }

/* Quick Stats */
.sidebar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  text-align: center;
}
.sidebar-stat-num {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 4px;
}
.sidebar-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* Trust & Safety */
.sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0;
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 500;
}
.sidebar-trust-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.sidebar-trust-icon.green { background: linear-gradient(135deg, #bbf7d0, #86efac); color: #15803d; box-shadow: 0 2px 6px rgba(34,197,94,0.25); }
.sidebar-trust-icon.blue { background: linear-gradient(135deg, #bfdbfe, #93c5fd); color: #1d4ed8; box-shadow: 0 2px 6px rgba(59,130,246,0.25); }
.sidebar-trust-icon.amber { background: linear-gradient(135deg, #fde68a, #fcd34d); color: #b45309; box-shadow: 0 2px 6px rgba(245,158,11,0.25); }

/* Editor's Pick cards */
.sidebar-editor-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  margin-bottom: 0.75rem;
  position: relative;
  background: #fff;
}
.sidebar-editor-card:last-child { margin-bottom: 0; }
.sidebar-editor-badge {
  position: absolute;
  top: -8px;
  left: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 3px;
}
.sidebar-editor-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.sidebar-editor-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  padding: 3px;
  flex-shrink: 0;
}
.sidebar-editor-name { font-weight: 700; font-size: 0.85rem; color: var(--text); }
.sidebar-editor-sub { font-size: 0.68rem; color: var(--text-muted); }
.sidebar-editor-rating {
  margin-left: auto;
  background: #f0fdf4;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
}
.sidebar-editor-bonus {
  display: inline-block;
  background: linear-gradient(135deg, #f5c842, #daa520);
  color: #1a1a1a;
  font-weight: 700;
  font-style: italic;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}
.sidebar-editor-cta {
  display: block;
  text-align: center;
  padding: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(124,58,237,0.25);
  transition: transform 0.15s;
}
.sidebar-editor-cta:hover { transform: translateY(-1px); }
.sidebar-editor-cta:visited { color: #fff !important; -webkit-text-fill-color: #fff; }

@media (max-width: 1024px) {
  .casino-sidebar { display: none; }
  .casino-content-wrapper { display: block; }
}

/* ---------- INTRO TEXT ---------- */
.intro-text {
  max-width: 100%;
  margin: 0 0 2rem;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.7;
  text-align: left;
}

/* ---------- COMPARISON TABLE (Desktop) ---------- */
.comparison-table-wrap { margin: 0 0 2rem; }
.comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  background: #fff;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table thead th {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  border-bottom: none;
  white-space: nowrap;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comparison-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #eef2f7;
  vertical-align: middle;
  transition: background 0.2s;
}
.comparison-table tbody tr:nth-child(even) { background: #f8f7ff; }
.comparison-table tbody tr:nth-child(odd) { background: #fff; }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr {
  transition: transform 0.15s, box-shadow 0.15s;
}
.comparison-table tbody tr:hover {
  background: linear-gradient(90deg, #f5f3ff, #ede9fe);
  box-shadow: inset 3px 0 0 var(--primary);
}
.comparison-table tbody tr:first-child {
  background: linear-gradient(90deg, #fffbeb, #fef3c7);
}
.comparison-table tbody tr:first-child:hover {
  background: linear-gradient(90deg, #fef3c7, #fde68a);
  box-shadow: inset 3px 0 0 var(--accent);
}
.table-link { color: var(--text); text-decoration: none; transition: color 0.15s; }
.table-link:hover { color: var(--primary); }
.rank-num-cell {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.8rem;
}
.bonus-text { font-weight: 500; color: var(--text); }
.comparison-table tbody tr:nth-child(1) .rank-num-cell {
  background: linear-gradient(135deg, var(--accent), #f59e0b, var(--accent-dark));
  box-shadow: 0 2px 6px rgba(245,158,11,0.4);
}
.comparison-table tbody tr:nth-child(2) .rank-num-cell {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}
.comparison-table tbody tr:nth-child(3) .rank-num-cell {
  background: linear-gradient(135deg, #b45309, #92400e);
}
.col-cta { text-align: right; white-space: nowrap; }
.table-cta {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 4px rgba(245,158,11,0.3);
}
.table-cta:visited, .table-cta:active, .table-cta:focus { color: #fff; }
.table-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 8px rgba(245,158,11,0.35); color: #fff; }
.table-logo { width: 130px; height: 80px; object-fit: contain; vertical-align: middle; background: #fff; border-radius: 8px; padding: 15px; border: 1px solid #e8e8e8; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.table-casino-name { font-weight: 600; font-size: 0.85rem; color: var(--text); white-space: nowrap; }

/* ---------- MOBILE CARDS ---------- */
.mobile-cards { display: none; }
.mobile-card {
  background: linear-gradient(135deg, #fff 0%, #f8f7ff 100%);
  border: 1px solid #e0ddf5;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.mobile-card:hover {
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--primary);
}
.mobile-card:first-child {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
}
.mobile-card:first-child:hover {
  border-left: 3px solid var(--accent);
}
.mobile-card-body { padding: 1rem; }
.mobile-card-info { text-decoration: none; color: var(--text); display: block; margin-bottom: 0.75rem; }
.mobile-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.mobile-rank {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.mobile-card-bonus { font-weight: 500; font-size: 0.9rem; margin-bottom: 0.35rem; }
.mobile-bonus-text { color: var(--text); }
.mobile-card-tagline { font-size: 0.8rem; color: var(--text-muted); }
.mobile-cta {
  display: block;
  text-align: center;
  padding: 0.65rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-xs);
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(245,158,11,0.3);
}
.mobile-cta:visited, .mobile-cta:active, .mobile-cta:focus { color: #fff; }
.mobile-cta:hover { color: #fff; }

/* ---------- AFFILIATE CARDS (new card-style table) ---------- */
.affiliate-cards { margin: 0 0 2rem; }
.aff-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.aff-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.aff-card--top {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fde68a;
}
.aff-card--top:hover {
  border-color: var(--accent);
}
.aff-top-pick {
  position: absolute;
  top: -1px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 2px 6px rgba(124,58,237,0.3);
}
.aff-card-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.aff-rank {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  min-width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.aff-card--top .aff-rank { color: var(--accent-dark); }
.aff-logo { flex-shrink: 0; }
.aff-logo img {
  width: 140px;
  height: 85px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 10px;
}
.aff-info { flex: 1; min-width: 0; }
.aff-name {
  font-family: 'Domine', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}
.aff-bonus {
  display: inline-block;
  background: var(--text);
  color: #fff;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 8px 20px;
  border-radius: var(--radius-xs);
  margin-bottom: 10px;
}
.aff-card--top .aff-bonus {
  background: linear-gradient(135deg, #92400e, #78350f);
}
.aff-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.aff-tags span {
  background: #f3f0eb;
  color: #555;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.aff-card--top .aff-tags span {
  background: rgba(245,158,11,0.15);
  color: #92400e;
}
.aff-wagering {
  text-align: center;
  min-width: 90px;
  flex-shrink: 0;
}
.aff-wager-num {
  display: block;
  font-family: 'Sansita Swashed', cursive;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-dark);
}
.aff-wager-label {
  display: block;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.aff-action {
  text-align: center;
  min-width: 130px;
  flex-shrink: 0;
}
.aff-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 4px rgba(245,158,11,0.3);
  margin-bottom: 6px;
  white-space: nowrap;
}
.aff-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(245,158,11,0.4);
  color: #fff;
}
.aff-cta:visited, .aff-cta:active, .aff-cta:focus { color: #fff; }
.aff-award {
  display: block;
  font-family: 'Fira Sans', sans-serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Affiliate cards responsive — tablet */
@media (max-width: 900px) {
  .aff-card { padding: 1rem; }
  .aff-card-inner { gap: 0.75rem; }
  .aff-wagering { min-width: 70px; }
  .aff-wager-num { font-size: 1.15rem; }
  .aff-action { min-width: 110px; }
  .aff-cta { padding: 8px 16px; font-size: 0.78rem; }
}
/* Affiliate cards responsive — mobile (logo + CTA side-by-side) */
@media (max-width: 640px) {
  .aff-card {
    padding: 1.25rem 1rem;
    margin-bottom: 0.85rem;
  }
  .aff-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "rank rank"
      "logo action"
      "info info"
      "wagering wagering";
    align-items: center;
    text-align: center;
    gap: 0.6rem 0.75rem;
  }
  .aff-rank {
    grid-area: rank;
    font-size: 1rem;
    min-width: auto;
    justify-self: center;
  }
  .aff-logo {
    grid-area: logo;
    justify-self: center;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .aff-logo img {
    width: 120px;
    height: 70px;
    padding: 8px;
  }
  .aff-info {
    grid-area: info;
    width: 100%;
  }
  .aff-name {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  .aff-bonus {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
  }
  .aff-tags {
    justify-content: center;
  }
  .aff-tags span {
    font-size: 0.7rem;
    padding: 4px 12px;
    border: 1px solid #ddd;
    background: #fff;
  }
  .aff-card--top .aff-tags span {
    border-color: rgba(245,158,11,0.3);
  }
  .aff-wagering {
    grid-area: wagering;
    min-width: auto;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    justify-self: center;
  }
  .aff-wager-num {
    font-size: 1.3rem;
  }
  .aff-wager-label {
    font-size: 0.65rem;
  }
  .aff-action {
    grid-area: action;
    min-width: auto;
    width: 100%;
    justify-self: center;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .aff-cta {
    display: inline-block;
    width: 100%;
    padding: 11px 14px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    text-align: center;
    margin: 0;
  }
  .aff-award {
    font-size: 0.68rem;
    line-height: 1.2;
  }
  .aff-top-pick {
    left: 14px;
  }
}

/* ---------- CASINO REVIEW CARDS ---------- */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.casino-card:hover { box-shadow: var(--shadow-md); }
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #faf9ff 0%, #f3f0ff 100%);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}
.header-left { display: flex; align-items: center; gap: 1rem; min-width: 0; flex: 1; }
.rank-ring { position: relative; flex-shrink: 0; width: 56px; height: 56px; }
.rank-ring svg { width: 56px; height: 56px; }
.rank-bg { fill: none; stroke: #e5e7eb; stroke-width: 3; }
.rank-fill { fill: none; stroke: var(--primary); stroke-width: 3; stroke-linecap: round; transition: stroke-dashoffset 0.6s ease; }
.rank-ring .rank-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.casino-logo { width: 120px; height: 75px; object-fit: contain; background: #fff; border-radius: 8px; padding: 15px; border: 1px solid #e8e8e8; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.header-info { min-width: 0; }
.casino-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.15rem;
  border: none;
  padding: 0;
}
.casino-welcome-bonus {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  font-style: italic;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5c842, #daa520);
  padding: 0.35rem 1rem;
  border-radius: 6px;
  margin: 0.3rem 0;
  letter-spacing: -0.01em;
}
.casino-tagline { font-size: 0.82rem; color: var(--text-muted); }
.header-cta {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(245,158,11,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
.header-cta:visited, .header-cta:active, .header-cta:focus { color: #fff; }
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 8px rgba(245,158,11,0.35); color: #fff; }

/* ---------- SPEC TILES ---------- */
.spec-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: #fefefe;
}
.spec-tile {
  background: #f8f7ff;
  border: 1px solid #ede9fe;
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}
.spec-icon { margin-bottom: 0.35rem; }
.spec-value { font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 0.15rem; }
.spec-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- PROS / CONS ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
}
.pros-col, .cons-col { display: flex; flex-direction: column; gap: 0.5rem; }
.pro-item, .con-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.4;
}
.pro-item svg, .con-item svg { flex-shrink: 0; margin-top: 0.1rem; }

/* ---------- NARRATIVE ---------- */
.casino-narrative { padding: 0 1.5rem 1rem; font-size: 0.92rem; line-height: 1.65; color: var(--text); text-align: left; }
.casino-narrative p { margin: 0 0 0.75rem; }

/* ---------- RATING PILLS ---------- */
.rating-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0 1.5rem 1rem; }
.rating-pill {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.rating-pill--high { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.rating-pill--low { background: #fefce8; color: #ca8a04; border: 1px solid #fde68a; }

/* ---------- STAR RATINGS ---------- */
.ct-star-filled { color: var(--accent); }
.ct-star-empty { color: #d1d5db; }

/* ---------- TESTIMONIAL / BLOCKQUOTE ---------- */
.testimonial, blockquote.testimonial {
  margin: 0 1.5rem 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #faf9ff, #f3f0ff);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.testimonial p { margin: 0; }

/* ---------- CTA FOOTER ---------- */
.cta-footer {
  padding: 1rem 1.5rem 1.25rem;
  text-align: center;
  background: linear-gradient(135deg, #faf9ff, #f8f7ff);
  border-top: 1px solid var(--border-light);
}
.cta-button,
.cta-button:visited,
.cta-button:active,
.cta-button:focus,
.cta-button:hover {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(124,58,237,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(124,58,237,0.35); }
.casino-cta.casino-cta--orange {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border-radius: var(--radius-xs);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(245,158,11,0.3);
  transition: transform 0.15s;
}
.casino-cta.casino-cta--orange:visited, .casino-cta.casino-cta--orange:active, .casino-cta.casino-cta--orange:focus { color: #fff; }
.casino-cta.casino-cta--orange:hover { transform: translateY(-1px); color: #fff; }
.cta-tc { display: block; margin-top: 0.4rem; font-size: 0.72rem; color: var(--text-muted); }

/* ---------- GLASS CARD (editorial sections) ---------- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

/* ---------- CASINO TABLE (generic tables) ---------- */
.casino-table, table.casino-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1rem 0;
}
.casino-table th, .casino-table td {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  text-align: left;
}
.casino-table thead th {
  background: #f8f7ff;
  font-weight: 600;
  color: var(--text);
  font-size: 0.82rem;
}
.casino-table tbody tr:hover { background: #faf9ff; }

/* ---------- FAQ STYLES ---------- */
.glass-card h2 { margin-top: 0; }
.glass-card h3 { margin-top: 1.25rem; }
.glass-card p { margin: 0 0 0.75rem; }
.glass-card ul, .glass-card ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.glass-card li { margin-bottom: 0.35rem; font-size: 0.92rem; }

/* ---------- RELATED PAGES ---------- */
.casino-related-pages {
  margin: 2.5rem 0 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.casino-related-pages h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 0.75rem;
  border: none;
  padding: 0;
}
.casino-related-pages ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.casino-related-pages li a {
  display: inline-block;
  padding: 0.4em 1em;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.85em;
  color: var(--primary);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.casino-related-pages li a:hover { border-color: var(--primary); background: #f1f0ff; }

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 0.35rem; }

/* ---------- 18+ BADGE ---------- */
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--danger);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .site-header { position: relative; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
    max-height: 80vh;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; min-width: 44px; min-height: 44px; }
  .nav-logo-img { height: 55px; }
  .nav-menu > li { border-bottom: 1px solid var(--border-light); }
  .nav-menu > li:last-child { border-bottom: none; }
  .nav-menu > li > a { padding: 0.85rem 1.25rem; font-size: 1rem; display: block; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .nav-dropdown a { padding: 0.5rem 1.25rem; display: block; font-size: 0.92rem; }
  .nav-menu > li.dropdown-open > .nav-dropdown { max-height: 500px; }

  .desktop-table { display: none; }
  .mobile-cards { display: block; }

  .comparison-table { font-size: 0.8rem; }
  .card-header { flex-direction: column; align-items: flex-start; }
  .header-cta { width: 100%; text-align: center; }
  .pros-cons { grid-template-columns: 1fr; }
  .spec-tiles { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 1.5rem 1rem 1.25rem; }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .spec-tiles { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .casino-content-wrapper { padding: 1rem; }
  .casino-content-wrapper:has(.casino-sidebar) { display: block; }
  .casino-narrative { padding: 0 1rem 0.75rem; }
  .spec-tiles { padding: 1rem; }
  .pros-cons { padding: 1rem; }
  .rating-bar { padding: 0 1rem 0.75rem; }
  .testimonial { margin: 0 1rem 0.75rem; }
  .cta-footer { padding: 0.75rem 1rem 1rem; }
  .card-header { padding: 1rem; }

  /* Compact hero for iPhone - push table above the fold */
  .page-hero { padding: 1rem 1rem 0.75rem; }
  .page-hero h1 { font-size: 1.25rem; margin: 0 0 0.3rem; }
  .page-hero .subtitle { font-size: 0.72rem; line-height: 1.35; }
  .page-hero .subtitle br { display: none; }
  .highlight { font-size: 0.68rem; padding: 0.1em 0.4em; display: block; width: fit-content; margin: 0.4rem auto 0; }
  .page-hero .subtitle .highlight { display: block; margin: 0.45rem auto 0; }
  .hero-bonus { margin: 0.3rem 0 0.1rem; }
  .hero-bonus .highlight { font-size: 0.7rem; }
  .hero-meta { margin-top: 0.5rem; font-size: 0.68rem; gap: 0.2rem; }
  .hero-meta-avatar { width: 16px; height: 16px; }
  .hero-meta-item svg { width: 11px; height: 11px; }
  .nav-logo-img { height: 40px; }
  .nav-container { height: 55px; }

  /* Tighter content gap */
  .casino-content-wrapper { padding: 0.5rem 0.75rem 1.5rem; }
  .casino-page-content h2:first-of-type { margin-top: 0.25rem; font-size: 1rem; }
  .intro-text { font-size: 0.82rem; margin: 0 0 0.75rem; }

  /* Compact mobile cards */
  .mobile-card-body { padding: 0.65rem; }
  .mobile-card-bonus { font-size: 0.78rem; }
  .mobile-cta { padding: 0.5rem; font-size: 0.8rem; }
}


/* ========== PAGE CONTENT ========== */
.casino-page-content { font-family: var(--font-body); color: var(--text); line-height: 1.6; }
.casino-page-content h1 { font-family: var(--font-heading); color: var(--text); font-size: 1.75rem; margin: 0 0 0.5rem; }
.casino-page-content h2:first-of-type { margin-top: 0.5rem; }
.casino-page-content h2 { font-family: var(--font-heading); color: var(--text); font-size: 1.4rem; margin: 2.5rem 0 1.25rem; border-bottom: 2px solid #e5e7eb; padding-bottom: 0.5rem; }
.casino-page-content h3 { font-family: var(--font-heading); color: var(--text); font-size: 1.15rem; margin: 1.5rem 0 0.75rem; }
.casino-page-content p { margin: 0 0 1rem; }
.casino-page-content a { color: var(--primary); text-decoration: underline; }
.casino-page-content a:hover { opacity: 0.8; }

/* ========== RELATED PAGES ========== */
.casino-related-pages { margin: 2.5rem 0 1.5rem; padding: 1.5rem; background: #f9fafb; border-radius: 6px; }
.casino-related-pages h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--text); margin: 0 0 0.75rem; border: none; padding: 0; }
.casino-related-pages ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.casino-related-pages li a { display: inline-block; padding: 0.4em 1em; background: #fff; border: 1px solid #e5e7eb; border-radius: 6px; font-size: 0.875em; color: var(--primary); text-decoration: none; transition: border-color 0.2s ease, background 0.2s ease; }
.casino-related-pages li a:hover { border-color: var(--primary); background: #eff6ff; }

/* ========== CONTENT WRAPPER ========== */
.casino-content-wrapper { max-width: 1200px; margin: 0 auto; padding: 0.75rem 1.5rem 2rem; width: 100%; }
