/* ========================================
   SinSpin Society — shared site stylesheet
   Extracted from casinos.html. Dark. Neon. Curated.
   ======================================== */

:root {
  --clr-bg: #080810;
  --clr-bg-alt: #0e0e18;
  --clr-surface: #14141f;
  --clr-surface-hover: #1a1a2a;
  --clr-border: #2a1525;
  --clr-border-glow: rgba(230, 57, 70, 0.25);
  --clr-text: #f0dde0;
  --clr-text-muted: #b08890;
  --clr-accent: #e63946;
  --clr-accent-glow: rgba(230, 57, 70, 0.6);
  --clr-accent-soft: rgba(230, 57, 70, 0.15);
  --clr-accent-light: #ff6b6b;
  --clr-accent-hot: #ff2d4a;
  --clr-gold: #f4a261;
  --clr-white: #ffffff;
  --clr-neon-pink: #ff1a5e;
  --clr-neon-pink-glow: rgba(255, 26, 94, 0.5);
  --clr-green: #2ecc71;
  --clr-green-soft: rgba(46, 204, 113, 0.15);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Outfit', -apple-system, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.5rem;
  --fs-5xl: 4.5rem;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: 0.3s ease;
  --nav-height: 72px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 40px rgba(230, 57, 70, 0.12);
}

/* --- Utility --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-xl); }
.section { padding: var(--space-5xl) 0; position: relative; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 20px var(--clr-accent-glow);
  animation: label-breathe 4s ease-in-out infinite;
}

@keyframes label-breathe {
  0%, 100% { text-shadow: 0 0 20px var(--clr-accent-glow); }
  50% { text-shadow: 0 0 10px var(--clr-accent-glow), 0 0 30px var(--clr-accent-glow), 0 0 50px rgba(230, 57, 70, 0.3); }
}

.section-heading {
  font-size: var(--fs-3xl);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 40px rgba(230, 57, 70, 0.15);
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-neon-pink), var(--clr-accent));
  margin-top: var(--space-md);
  border-radius: 3px;
  box-shadow: 0 0 8px var(--clr-accent-glow), 0 0 20px rgba(230, 57, 70, 0.3);
  animation: underline-glow 3s ease-in-out infinite;
}

@keyframes underline-glow {
  0%, 100% { box-shadow: 0 0 8px var(--clr-accent-glow), 0 0 20px rgba(230, 57, 70, 0.3); }
  50% { box-shadow: 0 0 14px var(--clr-accent-glow), 0 0 35px rgba(230, 57, 70, 0.5), 0 0 60px rgba(230, 57, 70, 0.15); }
}

.text-center .section-heading::after { margin-left: auto; margin-right: auto; }

.section-subtext {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 600px;
}

/* --- Ambient Glow --- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(255, 26, 94, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-hot) 100%);
  color: var(--clr-white);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.4), 0 0 60px rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-accent-light) 0%, var(--clr-accent) 100%);
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.6), 0 0 80px rgba(230, 57, 70, 0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(230, 57, 70, 0.4);
}

.btn-ghost:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-soft);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: var(--fs-sm); }
.btn-card { padding: 12px 28px; font-size: var(--fs-sm); width: 100%; justify-content: center; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(230, 57, 70, 0.2), 0 4px 30px rgba(230, 57, 70, 0.1);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }

.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--clr-accent-glow));
}

.nav-links { display: flex; align-items: center; gap: var(--space-xl); }

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--transition), text-shadow var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--clr-accent-light);
  text-shadow: 0 0 12px var(--clr-accent-glow);
}

.nav-cta { display: flex; align-items: center; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Casino Hero --- */
.casino-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(230, 57, 70, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 26, 94, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 80%, rgba(230, 57, 70, 0.06) 0%, transparent 40%);
}

.casino-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), var(--clr-neon-pink), var(--clr-accent), transparent);
  opacity: 0.5;
}

.casino-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.casino-hero h1 {
  font-size: var(--fs-4xl);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.casino-hero h1::after { display: none; }

.casino-hero h1 em {
  font-style: italic;
  color: var(--clr-accent);
  text-shadow:
    0 0 10px var(--clr-accent-glow),
    0 0 30px var(--clr-accent-glow),
    0 0 60px rgba(230, 57, 70, 0.3);
}

.casino-hero p {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.casino-hero-content > * {
  opacity: 0;
  animation: hero-enter 0.7s ease forwards;
}
.casino-hero-content > :nth-child(1) { animation-delay: 0.1s; }
.casino-hero-content > :nth-child(2) { animation-delay: 0.25s; }
.casino-hero-content > :nth-child(3) { animation-delay: 0.4s; }

/* --- Casino List Section --- */
.casino-list-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

/* Filter tabs */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-2xl);
  justify-content: center;
}

/* Filter pills are now real links (one crawlable URL per filter),
   so they need the block behaviour a <button> gave us for free. */
a.filter-btn {
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.filter-btn {
  padding: 8px 20px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  color: var(--clr-white);
  border-color: var(--clr-accent);
  background: var(--clr-accent-soft);
}

.filter-btn.active {
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-hot) 100%);
  border-color: var(--clr-accent);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.3);
}

/* Casino cards */
.casino-list { display: flex; flex-direction: column; gap: var(--space-lg); }

.casino-card {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: var(--space-lg);
  align-items: center;
  background: linear-gradient(135deg, var(--clr-surface) 0%, rgba(230, 57, 70, 0.02) 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--clr-accent);
  box-shadow: 0 0 10px var(--clr-accent-glow);
  opacity: 0;
  transition: opacity var(--transition);
}

.casino-card:hover {
  border-color: var(--clr-border-glow);
  box-shadow: 0 8px 40px rgba(230, 57, 70, 0.12), 0 0 60px rgba(230, 57, 70, 0.05);
  transform: translateY(-2px);
}

.casino-card:hover::before { opacity: 1; }

.casino-card.featured {
  border-color: rgba(230, 57, 70, 0.4);
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.1);
}

.casino-card.hidden { display: none; }

/* Logo placeholder */
.casino-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Info */
.casino-info { min-width: 0; }

.casino-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.badge-pick {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-hot));
  color: var(--clr-white);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
}

.badge-new {
  background: rgba(46, 204, 113, 0.15);
  color: var(--clr-green);
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.badge-category {
  background: rgba(244, 162, 97, 0.12);
  color: var(--clr-gold);
  border: 1px solid rgba(244, 162, 97, 0.25);
}

.casino-name {
  font-family: var(--ff-body);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.casino-tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  font-style: italic;
  margin-bottom: 8px;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: 8px;
}

.casino-stars {
  color: var(--clr-gold);
  font-size: var(--fs-sm);
  letter-spacing: 2px;
}

.casino-score {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-white);
  background: var(--clr-accent-soft);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.casino-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.casino-highlight {
  font-size: 0.7rem;
  color: var(--clr-text-muted);
  padding: 3px 8px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Bonus */
.casino-bonus {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  background: rgba(230, 57, 70, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(230, 57, 70, 0.15);
  min-width: 220px;
}

.bonus-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  font-weight: 600;
  margin-bottom: 4px;
}

.bonus-summary {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.3;
  margin-bottom: 4px;
}

.bonus-details {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* Actions */
.casino-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  min-width: 160px;
}

.casino-review-link {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: color var(--transition);
}

.casino-review-link:hover {
  color: var(--clr-accent);
  text-shadow: 0 0 10px var(--clr-accent-glow);
}

.casino-license {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  opacity: 0.6;
}

/* Image logo variant (real casino logos) */
.casino-logo--img {
  width: 100%;
  max-width: 96px;
  height: auto;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.casino-logo--img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Rating pending (no review yet) */
.casino-rating-pending {
  font-size: var(--fs-xs);
  font-style: italic;
  color: var(--clr-text-muted);
  opacity: 0.8;
}

/* Geo availability chips */
.casino-geos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.casino-geos-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  opacity: 0.7;
  margin-right: 2px;
}

.casino-geo {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

/* --- How We Pick --- */
.how-we-pick { background: var(--clr-bg-alt); }

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.method-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--transition);
  text-align: center;
}

.method-card:hover {
  border-color: var(--clr-border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.1);
}

.method-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--clr-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
}

.method-card h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.method-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* --- Bonus Types --- */
.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.bonus-type-card {
  background: linear-gradient(180deg, var(--clr-surface) 0%, rgba(230, 57, 70, 0.03) 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-type-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.bonus-type-card:hover {
  transform: translateY(-3px);
  border-color: var(--clr-border-glow);
}

.bonus-type-card:hover::after { opacity: 1; }

.bonus-type-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 8px var(--clr-accent-glow));
}

.bonus-type-card h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.bonus-type-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* --- Categories Section --- */
.categories-section { background: var(--clr-bg-alt); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.category-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-neon-pink));
  opacity: 0;
  transition: opacity var(--transition);
}

.category-card:hover {
  border-color: var(--clr-border-glow);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.1);
}

.category-card:hover::before { opacity: 1; }

.category-card-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.category-card h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.category-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.category-card .category-count {
  font-size: var(--fs-xs);
  color: var(--clr-accent);
  font-weight: 600;
  margin-top: var(--space-sm);
}

/* --- Payment Methods --- */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-2xl);
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}

.payment-badge:hover {
  border-color: var(--clr-border-glow);
  color: var(--clr-white);
}

.payment-icon {
  font-size: 1.2rem;
}

/* --- Responsible Gambling --- */
.responsible-gambling {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.rg-content {
  max-width: 800px;
  margin: 0 auto;
}

.rg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.rg-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.rg-card h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.rg-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.rg-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: all var(--transition);
}

.rg-link:hover {
  border-color: var(--clr-green);
  color: var(--clr-green);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--clr-accent);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-accent);
  margin: var(--space-xl) auto 0;
}

/* --- FAQ --- */
.faq { background: var(--clr-bg); }

.faq-list {
  max-width: 720px;
  margin: var(--space-3xl) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
  transition: border-color var(--transition);
}
.faq-item.active { border-bottom-color: var(--clr-accent); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-white);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition), text-shadow var(--transition);
}
.faq-question:hover { color: var(--clr-accent); text-shadow: 0 0 15px var(--clr-accent-glow); }
.faq-item.active .faq-question { color: var(--clr-accent); }

.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-left: var(--space-md);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-item.active .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-bottom: var(--space-lg);
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), var(--clr-neon-pink), var(--clr-accent), transparent);
  opacity: 0.5;
  box-shadow: 0 0 10px var(--clr-accent-glow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: var(--space-md); }
.footer-brand .logo-img { height: 48px; }

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  max-width: 300px;
  margin-bottom: var(--space-lg);
}

.footer-socials { display: flex; gap: var(--space-md); }

.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.3);
}
.footer-socials a svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  padding: var(--space-xs) 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--clr-accent-light); }

.footer-disclaimer {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.7;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--clr-accent-light); }

/* --- Mobile Sticky CTA --- */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--clr-border-glow);
  padding: var(--space-sm) var(--space-md);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(230, 57, 70, 0.15);
}

.mobile-sticky.show { transform: translateY(0); }

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  max-width: 600px;
  margin: 0 auto;
}

.mobile-sticky-info { display: flex; align-items: center; gap: var(--space-sm); min-width: 0; }

.mobile-sticky-rank {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--clr-accent);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.mobile-sticky-text { min-width: 0; }

.mobile-sticky-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-sticky-bonus {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-sticky .btn { flex-shrink: 0; }

/* --- No Results --- */
.no-results {
  text-align: center;
  padding: var(--space-3xl) 0;
  color: var(--clr-text-muted);
  display: none;
}

.no-results.show { display: block; }

/* --- Responsive: 1024px --- */
@media (max-width: 1024px) {
  .casino-card {
    grid-template-columns: 80px 1fr;
    gap: var(--space-md);
  }
  .casino-bonus { grid-column: 1 / -1; }
  .casino-actions { grid-column: 1 / -1; flex-direction: row; justify-content: center; }
  .casino-logo { width: 64px; height: 64px; font-size: var(--fs-xl); }
  .methodology-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-types-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8, 8, 16, 0.98);
    backdrop-filter: blur(12px);
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-bottom: 1px solid var(--clr-border-glow);
  }

  .casino-hero h1 { font-size: var(--fs-3xl); }

  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }
  .casino-logo { margin: 0 auto; }
  .casino-badges { justify-content: center; }
  .casino-rating { justify-content: center; }
  .casino-highlights { justify-content: center; }
  .casino-geos { justify-content: center; }
  .casino-logo--img { margin: 0 auto; }
  .casino-actions { flex-direction: column; }
  .casino-bonus { min-width: unset; }

  .methodology-grid { grid-template-columns: 1fr; }
  .bonus-types-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }

  .section { padding: var(--space-3xl) 0; }
  .section-heading { font-size: var(--fs-2xl); }

  .mobile-sticky { display: block; }

  .filter-bar { gap: 6px; }
  .filter-btn { padding: 6px 14px; font-size: var(--fs-xs); }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; }
  .casino-hero-content > * { opacity: 1; }
}

/* ==========================================================
   ARTICLE PAGES — casino reviews & guides
   Added for the /casinos/<slug>/ and /casino-guides/<slug>/
   templates. Reuses the badge, pill and card language above.
   ========================================================== */

.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.breadcrumbs {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
}

.breadcrumbs a { color: var(--clr-text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--clr-accent-light); }
.breadcrumbs .sep { opacity: 0.4; }

.article-title {
  font-family: var(--ff-heading);
  font-size: 2.125rem;
  line-height: 1.2;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.article-title em { font-style: italic; color: var(--clr-accent); }

/* Title straight into the date box, no floating gap between them. */
.article-title + .article-dates { margin-top: var(--space-xs); }

/* --- Byline --- */
/* Author credit. No rules above or below - the monogram and the
   "Reviewed by" label do the work of saying what this block is. */
.byline {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.byline-avatar {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-hot) 100%);
  box-shadow: 0 0 18px rgba(230, 57, 70, 0.35);
}

.byline-text { display: flex; flex-direction: column; min-width: 0; }

.byline-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.byline-author {
  color: var(--clr-white);
  font-weight: 600;
  font-size: var(--fs-base);
  line-height: 1.3;
  margin-bottom: 2px;
}

.byline-bio { font-style: italic; line-height: 1.6; }

/* --- Affiliate disclosure --- */
.disclosure {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  border-left: 2px solid var(--clr-accent);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-xl);
}

/* --- Verdict / direct-answer block --- */
.verdict-block {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.10), rgba(255, 26, 94, 0.03));
  border: 1px solid var(--clr-border-glow);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.verdict-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.verdict-block p {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--clr-text);
  margin: 0;
}

/* --- Prominent overall rating --- */
.overall-rating {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
}

.overall-rating-score {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  line-height: 1;
  color: var(--clr-white);
  text-shadow: 0 0 24px var(--clr-accent-glow);
}

.overall-rating-score span { font-size: var(--fs-lg); color: var(--clr-text-muted); }
.overall-rating .casino-stars { font-size: var(--fs-xl); }
.overall-rating-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: var(--space-xs);
}

/* --- Key facts table --- */
.key-facts {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-3xl);
}

.key-facts-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
  align-items: center;
}

.key-facts-row:last-child { border-bottom: none; }
.key-facts-row:nth-child(odd) { background: rgba(20, 20, 31, 0.5); }

.key-facts-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.key-facts-value {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  color: var(--clr-text);
  line-height: 1.7;
}

/* --- Body copy --- */
.article-body h2 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--clr-white);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--clr-border);
}

.article-body h3 {
  font-size: 1.2rem;
  color: var(--clr-white);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.article-body {
  font-size: 1rem;
  line-height: 1.5;
}

.article-body p {
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  color: var(--clr-text);
}

.article-body ul, .article-body ol {
  margin: 0 0 var(--space-lg) var(--space-lg);
  line-height: 1.5;
}

/* Bold lead-ins act as mini sub-headings, so give them full contrast. */
.article-body strong { color: var(--clr-white); font-weight: 600; }
.article-body li { margin-bottom: var(--space-sm); }
.article-body a { color: var(--clr-accent-light); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--clr-accent); }

/* Placeholder marker — remove with the placeholder copy */
.placeholder-note {
  display: block;
  font-size: var(--fs-sm);
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--clr-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
}

/* --- Rating breakdown --- */
.rating-breakdown {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.rating-breakdown h2 { margin-top: 0; border-bottom: none; }

.rating-row {
  display: grid;
  grid-template-columns: 160px 1fr 48px;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.rating-row:last-child { margin-bottom: 0; }
.rating-row-label { font-size: var(--fs-sm); color: var(--clr-text-muted); }

.rating-bar {
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-hot));
  box-shadow: 0 0 12px var(--clr-accent-glow);
}

.rating-row-value { font-weight: 700; color: var(--clr-white); text-align: right; font-size: var(--fs-sm); }

/* --- Recommend / don't recommend --- */
.recommend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}

.recommend-card {
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
}

.recommend-card.yes { border-color: rgba(46, 204, 113, 0.35); }
.recommend-card.no { border-color: var(--clr-border-glow); }

.recommend-card h4 {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.recommend-card.yes h4 { color: var(--clr-green); }
.recommend-card.no h4 { color: var(--clr-accent); }
.recommend-card p { margin: 0; line-height: 1.7; color: var(--clr-text); }

/* --- Closing signal --- */
.closing-signal {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--clr-text-muted);
  border-left: 2px solid var(--clr-accent);
  padding-left: var(--space-lg);
  margin: var(--space-2xl) 0;
}

/* --- Article CTA --- */
.article-cta { text-align: center; margin: var(--space-2xl) 0; }
.article-cta .btn { min-width: 260px; justify-content: center; }
.article-cta-note { display: block; font-size: var(--fs-sm); color: var(--clr-text-muted); margin-top: var(--space-sm); }

/* --- 18+ line --- */
.age-line {
  text-align: center;
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  color: var(--clr-text-muted);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-lg);
  margin-top: var(--space-2xl);
}

/* --- Guide cards (hub) --- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition);
}

.guide-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
  box-shadow: 0 0 26px rgba(230, 57, 70, 0.22), 0 14px 40px rgba(0, 0, 0, 0.45);
}

.guide-card .casino-badges { margin-bottom: var(--space-sm); }

.guide-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.guide-card p { font-size: var(--fs-sm); line-height: 1.7; color: var(--clr-text-muted); margin-bottom: var(--space-md); }
.guide-card-meta { margin-top: auto; font-size: var(--fs-xs); color: var(--clr-text-muted); letter-spacing: 0.06em; }
.guide-card-link { color: var(--clr-accent-light); font-size: var(--fs-sm); font-weight: 600; margin-top: var(--space-sm); }

/* --- Related articles --- */
.related-module { margin-top: var(--space-3xl); border-top: 1px solid var(--clr-border); padding-top: var(--space-xl); }
.related-module h2 { font-family: var(--ff-heading); font-size: var(--fs-xl); color: var(--clr-white); margin-bottom: var(--space-lg); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--space-md); }

/* --- Category intro on filter pages --- */
.category-intro {
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--clr-text-muted);
}

/* --- Full review link on cards --- */
.casino-review-link { display: inline-block; margin-top: var(--space-xs); }

@media (max-width: 768px) {
  .article-wrap { padding-top: calc(var(--nav-height) + var(--space-xl)); }
  .article-title { font-size: 1.6rem; }
  .key-facts-row { grid-template-columns: 1fr; gap: var(--space-xs); }
  .recommend-grid { grid-template-columns: 1fr; }
  .rating-row { grid-template-columns: 120px 1fr 40px; }
  .byline-dates { margin-left: 0; }
  .overall-rating { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
}

/* --- Review lead-in: fit lists, short-version line, todo markers --- */
.fit-list { list-style: none; margin: 0; }
.fit-list li {
  padding: var(--space-xs) 0;
  line-height: 1.6;
  color: var(--clr-text);
  font-size: var(--fs-sm);
}

.short-version {
  font-weight: 600;
  color: var(--clr-white);
  border-left: 2px solid var(--clr-accent);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0 var(--space-2xl);
}

/* Anything still in [square brackets] in the source copy renders like this,
   so unfinished facts are impossible to miss on the page. */
.todo-marker {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px dashed var(--clr-text-muted);
  color: var(--clr-white);
  padding: 0 4px;
  border-radius: 3px;
  font-style: italic;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body ol li::marker { color: var(--clr-accent); font-weight: 600; }
.article-body .fit-list { list-style: none; margin-left: 0; }

/* --- Article dates: plain line under the title, no box --- */
.article-dates {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin: 0 0 var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.article-dates em { font-style: normal; }
.article-dates time { color: var(--clr-text); }
.article-dates .sep { opacity: 0.4; }

/* --- Shared-licence note (generated when two brands share a licence no.) --- */
.operator-note {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--clr-text-muted);
  border-left: 2px solid var(--clr-accent);
  padding-left: var(--space-md);
  margin: 0 0 var(--space-2xl);
}
.operator-note strong { color: var(--clr-white); }
.operator-note a { color: var(--clr-accent-light); text-decoration: underline; text-underline-offset: 3px; }
.operator-note a:hover { color: var(--clr-accent); }

/* ==========================================================
   Whole-card click -> review page
   Uses the "stretched link" pattern: the Full Review anchor
   grows an invisible overlay across the entire card. That keeps
   the HTML valid (no nested <a>) and keeps the link focusable
   and readable to screen readers, unlike a JS click handler.
   ========================================================== */

.casino-card:has(.casino-review-link) { cursor: pointer; }

.casino-review-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-md);
}

/* Claim Bonus must sit above the overlay so it still goes to the
   affiliate link rather than the review. */
.casino-actions .btn-card {
  position: relative;
  z-index: 2;
}

/* Keyboard users get the same visible focus ring on the whole card. */
.casino-review-link:focus-visible::after {
  outline: 2px solid var(--clr-accent-light);
  outline-offset: -3px;
}

/* Hovering anywhere on the card lights up the review link. */
.casino-card:hover .casino-review-link { color: var(--clr-accent-light); }

/* --- Review header: title/dates left, Claim Bonus right --- */
.article-head {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-lg);
}

.article-head-main { min-width: 0; }
.article-head-main .article-title { margin-bottom: var(--space-xs); }
.article-head-main .article-dates { margin-bottom: 0; }

.article-head-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
}

.article-head-cta .article-cta-note { margin-top: 0; }

@media (max-width: 768px) {
  .article-head { grid-template-columns: 1fr; gap: var(--space-lg); }
  .article-head-cta { order: 2; }
}

/* --- Per-article disclaimer line --- */
.article-disclaimer {
  font-size: var(--fs-sm);
  font-style: italic;
  line-height: 1.7;
  color: var(--clr-text-muted);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-lg);
  margin-top: var(--space-2xl);
}

/* --- End-of-article CTA (guides -> casino shortlist) --- */
.outro-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
}

.outro-cta .btn { min-width: 220px; justify-content: center; }
.outro-cta .article-cta-note { display: block; margin-top: var(--space-sm); }

/* Author credit sitting at the foot of an article rather than the head. */
.byline--foot {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-xl);
  margin-top: var(--space-2xl);
}
