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

/* ========== 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: 64px;
}

/* ---------- 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 {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo a:hover { color: var(--primary-dark); }

/* 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.5rem; }
.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;
}

/* ---------- CONTENT WRAPPER ---------- */
.casino-content-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

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

/* ---------- COMPARISON TABLE (Desktop) ---------- */
.comparison-table-wrap { margin: 0 0 2rem; }
.comparison-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table thead th {
  background: #f8f7ff;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comparison-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: #faf9ff; }
.table-link { color: var(--text); text-decoration: none; }
.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); }
.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:hover { transform: translateY(-1px); box-shadow: 0 4px 8px rgba(245,158,11,0.35); color: #fff; }
.table-logo { max-height: 90px; max-width: 90px; object-fit: contain; vertical-align: middle; background: rgba(255,255,255,0.9); border-radius: 10px; padding: 4px; }
.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: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.mobile-card:hover { box-shadow: var(--shadow-md); }
.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:hover { color: #fff; }

/* ---------- 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 { max-height: 80px; max-width: 80px; object-fit: contain; background: rgba(255,255,255,0.95); border-radius: 10px; padding: 4px; }
.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-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: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); }
.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 {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  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); color: #fff; }
.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: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);
}

/* ---------- 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: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .nav-menu > li.dropdown-open > .nav-dropdown { max-height: 500px; }
  .nav-menu > li > a { padding: 0.75rem 0.5rem; font-size: 1rem; }

  .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-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; }
}


/* ========== 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 { 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: 2rem 1.5rem; width: 100%; }
