/* ============================================================
   MEILLEUR CASINO EN LIGNE - Main Stylesheet
   Modern, mobile-first, dark-mode casino affiliate design
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #0f1119;
  --bg-secondary: #1a1d2e;
  --bg-card: #222640;
  --bg-card-hover: #2a2f4a;
  --bg-highlight: #1e2235;
  --text-primary: #e8e9f0;
  --text-secondary: #a0a3b5;
  --text-muted: #6b6f82;
  --accent-gold: #f0b90b;
  --accent-green: #00d68f;
  --accent-red: #ff4757;
  --accent-blue: #4a6cf7;
  --accent-purple: #8b5cf6;
  --border-color: #2e3348;
  --border-light: #3a3f55;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --header-height: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: #ffd54f; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.8rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.6rem; margin-top: 2rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; color: var(--text-secondary); }
li { margin-bottom: 0.4rem; }

strong { color: var(--text-primary); font-weight: 600; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 3rem 0; }
.section--alt { background: var(--bg-secondary); }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 17, 25, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo span { color: var(--accent-gold); }

.nav-main { display: flex; align-items: center; gap: 0.15rem; }
.nav-main > a, .nav-dropdown > .nav-dropdown-toggle {
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-main > a:hover, .nav-main > a.active,
.nav-dropdown:hover > .nav-dropdown-toggle {
  color: var(--text-primary);
  background: var(--bg-card);
}

/* --- Dropdown Nav --- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle::after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  display: inline-block;
  margin-left: 2px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  max-height: 480px;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  border-radius: 0;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--bg-card-hover);
  color: var(--accent-gold);
}
.nav-dropdown-menu .dropdown-divider {
  border-top: 1px solid var(--border-color);
  margin: 0.35rem 0;
}
.nav-dropdown-menu .dropdown-label {
  padding: 0.4rem 1rem 0.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Mobile Nav --- */
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav-main {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.15rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main > a, .nav-dropdown > .nav-dropdown-toggle { padding: 0.75rem 1rem; font-size: 1rem; width: 100%; }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg-highlight);
    border-radius: var(--radius-sm);
    max-height: none;
    margin-top: 0.25rem;
  }
  .nav-dropdown-menu a { padding-left: 1.5rem; }
}

/* --- Hero --- */
.hero {
  padding: 3rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-color);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta span { display: flex; align-items: center; gap: 0.35rem; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.trust-badge .icon { font-size: 1.1rem; }

/* --- Casino Card --- */
.casino-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.casino-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.1);
  transform: translateY(-2px);
}

.casino-card.featured {
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(240, 185, 11, 0.05) 100%);
}

.casino-card.featured::before {
  content: "Choix #1";
  position: absolute;
  top: 12px;
  right: -32px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 2.5rem;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.casino-rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 60px;
}

.casino-rank .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.casino-rank .label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; }

.casino-info { flex: 1; min-width: 0; }

.casino-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.casino-bonus {
  font-size: 0.95rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.casino-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  background: var(--bg-highlight);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.casino-meta-row {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.casino-meta-row span { display: flex; align-items: center; gap: 0.3rem; }

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 160px;
  align-items: stretch;
}

.casino-rating {
  text-align: center;
  margin-bottom: 0.3rem;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.rating-max { font-size: 0.85rem; color: var(--text-muted); }

.stars { color: var(--accent-gold); font-size: 0.9rem; letter-spacing: 2px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #e5a800);
  color: var(--bg-primary);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 185, 11, 0.4);
  color: var(--bg-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.btn-small { padding: 0.5rem 1rem; font-size: 0.8rem; }

@media (max-width: 768px) {
  .casino-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .casino-rank { flex-direction: row; justify-content: center; }
  .casino-tags { justify-content: center; }
  .casino-meta-row { justify-content: center; }
  .casino-actions { min-width: auto; }
  .casino-card.featured::before { display: none; }
}

/* --- Comparison Table --- */
.table-responsive { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius-md); }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--bg-highlight);
  color: var(--accent-gold);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.comparison-table td {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  vertical-align: middle;
}

.comparison-table tr:hover td { background: var(--bg-card-hover); }

.comparison-table .casino-name-cell {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* --- Info Boxes --- */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-box--warning { border-left: 4px solid var(--accent-gold); }
.info-box--danger { border-left: 4px solid var(--accent-red); }
.info-box--success { border-left: 4px solid var(--accent-green); }
.info-box--info { border-left: 4px solid var(--accent-blue); }

.info-box h4 { color: var(--accent-gold); margin-bottom: 0.5rem; }
.info-box--danger h4 { color: var(--accent-red); }
.info-box--success h4 { color: var(--accent-green); }
.info-box--info h4 { color: var(--accent-blue); }

/* --- Pros/Cons --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-color);
}

.pros h4 { color: var(--accent-green); }
.cons h4 { color: var(--accent-red); }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li::before { content: "✓ "; color: var(--accent-green); font-weight: 700; }
.cons li::before { content: "✗ "; color: var(--accent-red); font-weight: 700; }

/* --- FAQ --- */
.faq-list { margin: 1.5rem 0; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question::after { content: "−"; }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* --- Content Sections --- */
.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.content-block h2 { margin-top: 0; }

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* --- Feature Cards --- */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h4 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; margin-bottom: 0; }

/* --- Stats Row --- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  min-width: 140px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Payment Icons --- */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  background: var(--bg-highlight);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* --- Author Box --- */
.author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-info h4 { margin-bottom: 0.2rem; }
.author-info .role { font-size: 0.85rem; color: var(--accent-gold); margin-bottom: 0.4rem; }
.author-info p { font-size: 0.9rem; margin-bottom: 0; }

@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
}

/* --- TOC --- */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.toc h3 { font-size: 1rem; margin-bottom: 1rem; margin-top: 0; color: var(--accent-gold); }

.toc ol {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.toc li { margin-bottom: 0.5rem; }
.toc a { color: var(--text-secondary); font-size: 0.9rem; }
.toc a:hover { color: var(--accent-gold); }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* --- Footer --- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-col h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col p { font-size: 0.85rem; color: var(--text-muted); }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-muted); font-size: 0.85rem; }
.footer-col a:hover { color: var(--accent-gold); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-badge {
  padding: 0.3rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Responsible Gaming Banner --- */
.rg-banner {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 0.9rem;
}

.rg-banner .icon { font-size: 2rem; flex-shrink: 0; }
.rg-banner p { margin-bottom: 0; }
.rg-banner a { color: var(--accent-blue); font-weight: 600; }

/* --- Methodology Steps --- */
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.method-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.method-step .step-num {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.method-step h4 { margin-bottom: 0.3rem; }
.method-step p { margin-bottom: 0; font-size: 0.9rem; }

/* --- Blacklist Card --- */
.blacklist-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-red);
  border-left: 4px solid var(--accent-red);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.blacklist-card h4 { color: var(--accent-red); }
.blacklist-card p { font-size: 0.9rem; margin-bottom: 0; }

/* --- Sticky CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 17, 25, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; justify-content: center; align-items: center; gap: 1rem; }
}

.sticky-cta .btn { flex: 1; max-width: 300px; }

/* --- Disclaimer --- */
.disclaimer {
  background: var(--bg-highlight);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 2rem 0;
  line-height: 1.6;
}

/* --- Affiliate Disclosure --- */
.affiliate-disclosure {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.75rem;
  background: var(--bg-highlight);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

/* --- Update Badge --- */
.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 214, 143, 0.1);
  border: 1px solid rgba(0, 214, 143, 0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent-green);
}

/* --- Score Badge --- */
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
}

.score-badge.excellent { background: rgba(0, 214, 143, 0.15); color: var(--accent-green); border: 2px solid var(--accent-green); }
.score-badge.good { background: rgba(240, 185, 11, 0.15); color: var(--accent-gold); border: 2px solid var(--accent-gold); }
.score-badge.average { background: rgba(255, 165, 0, 0.15); color: orange; border: 2px solid orange; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }
.text-red { color: var(--accent-red); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* --- Review Page --- */
.review-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.review-header-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.review-header-info { flex: 1; }
.review-header-info h1 { margin-bottom: 0.5rem; }
.review-header-info .review-rating { font-size: 1.2rem; color: var(--accent-gold); font-weight: 700; }
.review-header-info .review-meta { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

.review-header-cta { flex-shrink: 0; }

@media (max-width: 768px) {
  .review-header { flex-direction: column; text-align: center; }
  .review-header-cta { width: 100%; }
  .review-header-cta .btn { width: 100%; }
}

.review-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.review-summary-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.review-summary-item .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 0.3rem; }
.review-summary-item .value { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }

/* --- Guide Cards --- */
.guide-card {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.3s;
  align-items: flex-start;
}

.guide-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.guide-card .guide-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-highlight);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.guide-card h3 { font-size: 1.1rem; margin-top: 0; margin-bottom: 0.3rem; }
.guide-card h3 a { color: var(--text-primary); }
.guide-card h3 a:hover { color: var(--accent-gold); }
.guide-card p { font-size: 0.85rem; margin-bottom: 0; }

/* --- Comparison vs Box --- */
.vs-box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin: 1.5rem 0;
}
.vs-box .vs-label { font-size: 1.5rem; font-weight: 800; color: var(--text-muted); text-align: center; }
@media (max-width: 600px) { .vs-box { grid-template-columns: 1fr; } .vs-box .vs-label { display: none; } }

/* --- Legal Page --- */
.legal-content h2 { font-size: 1.4rem; }
.legal-content h3 { font-size: 1.15rem; }
.legal-content p, .legal-content li { font-size: 0.9rem; }

/* --- Print --- */
@media print {
  .site-header, .site-footer, .sticky-cta, .btn, .nav-dropdown-menu { display: none; }
  body { background: #fff; color: #000; }
  .casino-card { border: 1px solid #ccc; }
}
