:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-hover: #d63851;
  --gold: #f5a623;
  --gold-hover: #e09510;
  --green: #27ae60;
  --text: #e0e0e0;
  --text-dark: #1a1a2e;
  --text-muted: #a0a0b0;
  --bg-dark: #0f0f1a;
  --bg-card: #1e1e34;
  --bg-card-hover: #252545;
  --bg-light: #f8f9fa;
  --border: #2a2a4a;
  --border-light: #e0e0e0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-hover); }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* HEADER & NAVIGATION */
.site-header {
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo img { height: 52px; max-height: 52px; }
}

.logo span { color: var(--accent); font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; display: block; }

.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav > li {
  list-style: none;
  position: relative;
}

.main-nav > li > a {
  color: #fff;
  padding: 22px 16px;
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  max-height: 70vh;
  overflow-y: auto;
}

.main-nav > li:hover > .dropdown-menu { display: block; }

.dropdown-menu li { list-style: none; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--bg-card);
  color: var(--gold);
}

.dropdown-menu li:last-child a { border-bottom: none; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0a1628 100%);
  padding: 40px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(233,69,96,0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(245,166,35,0.08) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(10deg); }
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233,69,96,0.4);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* SECTIONS */
.section {
  padding: 40px 0;
}

.section-dark { background: var(--bg-dark); }
.section-alt { background: var(--secondary); }
.section-light { background: var(--bg-light); color: var(--text-dark); }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* CASINO CARDS */
.casino-list { display: flex; flex-direction: column; gap: 20px; }

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 60px 1fr 200px 180px 160px;
  align-items: center;
  gap: 25px;
  transition: var(--transition);
  position: relative;
}

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

.casino-mini-review {
  grid-column: 1 / -1;
}

.casino-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245,166,35,0.05) 100%);
}

.casino-card.featured::before {
  content: 'Top Pick';
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 4px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.casino-rank {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.casino-info h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
}

.casino-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-num { font-weight: 700; color: var(--gold); font-size: 1.1rem; }

.casino-bonus {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  text-align: center;
}

.casino-bonus strong {
  display: block;
  color: var(--green);
  font-size: 0.95rem;
}

.casino-bonus span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.casino-cta { text-align: center; }

.casino-cta .btn { width: 100%; margin-bottom: 8px; }

.casino-cta .review-link {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.casino-cta .review-link:hover { color: var(--gold); }

/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 30px 0;
}

.comparison-table thead { background: var(--primary); }

.comparison-table th {
  padding: 15px 20px;
  text-align: left;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

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

.comparison-table .check { color: var(--green); }
.comparison-table .cross { color: var(--accent); }

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* PROS/CONS */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 25px 0;
}

.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 25px;
}

.pros { border-left: 4px solid var(--green); }
.cons { border-left: 4px solid var(--accent); }

.pros h4, .cons h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.pros ul, .cons ul { list-style: none; }

.pros li, .cons li {
  padding: 6px 0;
  font-size: 0.9rem;
  position: relative;
  padding-left: 25px;
}

.pros li::before { content: '\2713'; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.cons li::before { content: '\2717'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

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

.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CONTENT SECTIONS */
.content-block {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 0;
}

.content-block h2 {
  font-size: 1.8rem;
  color: #fff;
  margin: 40px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.content-block h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin: 30px 0 12px;
}

.content-block h4 {
  font-size: 1.1rem;
  color: #fff;
  margin: 20px 0 10px;
}

.content-block p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.8;
}

.content-block ul, .content-block ol {
  margin: 15px 0;
  padding-left: 25px;
}

.content-block li {
  margin-bottom: 8px;
  color: var(--text);
}

/* INFO BOX */
.info-box {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 25px;
  margin: 25px 0;
}

.info-box.warning {
  background: rgba(233,69,96,0.08);
  border-color: rgba(233,69,96,0.3);
}

.info-box.success {
  background: rgba(39,174,96,0.08);
  border-color: rgba(39,174,96,0.3);
}

.info-box h4 { color: var(--gold); margin-bottom: 10px; }
.info-box.warning h4 { color: var(--accent); }
.info-box.success h4 { color: var(--green); }

/* AUTHOR BOX */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 40px 0;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  flex-shrink: 0;
}

.author-info h4 { color: #fff; margin-bottom: 5px; }
.author-info .author-title { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }
.author-info p { font-size: 0.9rem; color: var(--text-muted); }

/* BREADCRUMB */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); margin: 0 8px; }
.breadcrumb .current { color: var(--gold); }

/* FOOTER */
.site-footer {
  background: var(--primary);
  border-top: 2px solid var(--accent);
  padding: 60px 0 0;
}

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

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); padding-left: 5px; }

.footer-responsible {
  background: rgba(233,69,96,0.1);
  border: 1px solid rgba(233,69,96,0.3);
  border-radius: var(--radius);
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}

.footer-responsible p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

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

.age-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 36px;
  font-weight: 800;
  font-size: 0.85rem;
  margin: 0 5px;
}

/* GUIDE CARDS */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
}

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

.guide-card .tag {
  display: inline-block;
  background: rgba(233,69,96,0.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.guide-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.guide-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.guide-card .read-more { color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* REVIEW PAGE SPECIFIC */
.review-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0a1628 100%);
  padding: 40px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

.review-logo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.review-meta { flex: 1; }
.review-meta h1 { font-size: 2.2rem; color: #fff; margin-bottom: 8px; }
.review-meta .review-subtitle { color: var(--text-muted); font-size: 1rem; }

.review-score {
  text-align: center;
  background: var(--bg-card);
  padding: 20px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
}

.review-score .score { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.review-score .score-label { font-size: 0.8rem; color: var(--text-muted); }

/* TABLE OF CONTENTS */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  margin: 30px 0;
}

.toc h4 { color: #fff; margin-bottom: 15px; }
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--text-muted); font-size: 0.9rem; }
.toc a:hover { color: var(--gold); }

/* STEP BOXES */
.steps { counter-reset: step; }

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px 25px 25px 80px;
  margin-bottom: 15px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 25px;
  top: 25px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
}

.step h4 { color: #fff; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .casino-card {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }
  .casino-rating, .casino-bonus, .casino-cta {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.active { display: flex; }

  .main-nav > li > a {
    padding: 15px 25px;
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu {
    position: static;
    display: none;
    border: none;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    border-radius: 0;
  }

  .main-nav > li.dropdown-open > .dropdown-menu { display: block; }

  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  .casino-card { padding: 20px; }

  .pros-cons { grid-template-columns: 1fr; }

  .review-header { flex-direction: column; text-align: center; gap: 12px; }
  .review-meta h1 { font-size: 1.4rem; margin-bottom: 4px; }
  .review-meta .review-subtitle { font-size: 0.92rem; line-height: 1.35; }
  .review-hero { padding: 18px 0 22px; }
  .review-hero .hero-brand {
    padding: 8px 14px !important;
    min-height: 44px !important;
    margin-bottom: 8px !important;
  }
  .review-hero .hero-brand-logo {
    height: 36px !important;
    max-width: 150px !important;
  }
  .review-hero .review-score {
    padding: 10px 16px;
  }
  .review-hero .review-score .score { font-size: 1.6rem; }
  .review-hero .review-score .score-label { font-size: 0.72rem; }
  .review-hero .bonus-highlight {
    padding: 14px 16px;
    margin: 12px 0 4px;
    border-radius: 10px;
  }
  .review-hero .bonus-highlight .bonus-amount {
    font-size: 1.2rem;
    margin-bottom: 4px;
    line-height: 1.25;
  }
  .review-hero .bonus-highlight .bonus-desc {
    font-size: 0.82rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .review-hero .bonus-highlight .btn {
    padding: 12px 18px;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
  }
  .review-hero .hero-badges { display: none; }

  .footer-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 1.6rem; }

  .guides-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-badge { text-align: center; padding: 8px 10px; font-size: 0.78rem; border-radius: 8px; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* CATEGORY PAGE (legacy - now uses .hero) */
.category-intro {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #0a1628 100%);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.category-intro h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
}

.category-intro p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* PAYMENT METHODS */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text);
}

/* BONUS TABLE */
.bonus-highlight {
  background: linear-gradient(135deg, rgba(39,174,96,0.1), rgba(245,166,35,0.1));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  margin: 25px 0;
}

.bonus-highlight .bonus-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.bonus-highlight .bonus-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* LAST UPDATED */
.last-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* LEGAL PAGES */
.legal-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 50px 0;
}

.legal-content h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent);
}

.legal-content h2 {
  font-size: 1.5rem;
  color: #fff;
  margin: 35px 0 15px;
}

.legal-content h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin: 25px 0 10px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text);
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text);
}

/* TAGS AND BADGES */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-gold { background: rgba(245,166,35,0.15); color: var(--gold); }
.badge-green { background: rgba(39,174,96,0.15); color: var(--green); }
.badge-red { background: rgba(233,69,96,0.15); color: var(--accent); }

/* ===========================================
   Affiliate-list-placement §4 — hero mobile-only collapse
   =========================================== */
.hero-more-toggle { position: absolute; left: -9999px; }
.hero-more-summary { display: none; }
.hero-more { display: block; }
@media (max-width: 768px) {
  .hero-more-summary {
    display: inline-block;
    cursor: pointer;
    color: var(--accent);
    font-size: 0.875rem;
    margin-top: 12px;
    font-weight: 600;
    user-select: none;
  }
  .hero-more-summary::after { content: " \25B8"; }
  .hero-more { display: none; }
  .hero-more-toggle:checked ~ .hero-more-summary::after { content: " \25BE"; }
  .hero-more-toggle:checked ~ .hero-more { display: block; }
}

/* ===========================================
   Mobile-nav §Hard rules — 44×44 tap target, close button, scroll lock
   =========================================== */
.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  display: none; /* hidden on desktop; shown on mobile via media query */
  align-items: center;
  justify-content: center;
  padding: 0;
}
.menu-close,
.menu-close-wrap { display: none; }
body.menu-open { overflow: hidden; }

@media (max-width: 768px) {
  .menu-close-wrap {
    display: block;
    text-align: right;
    padding: 8px 16px;
    border-bottom: 1px solid var(--border);
  }
  .menu-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
  }
  .main-nav.active {
    /* full-height slide-out panel */
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1100;
    background: var(--primary);
    padding-top: 0;
  }
}

/* ===========================================
   mobile-toplist-card — Bonus is NOT a button (skill rule)
   =========================================== */
.casino-bonus {
  cursor: default;
  pointer-events: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  .casino-bonus {
    border-radius: 4px;  /* lower the radius so it doesn't read as a pill */
  }
  /* Make sure the CTA stands out as the only interactive element */
  .casino-cta .btn {
    display: block;
    width: 100%;
    min-height: 44px;
    font-weight: 800;
  }
}

/* ===========================================
   Tighter toplist-lead on mobile so the first card peeks above fold
   per [[keyword-page-toplist]] §4b
   =========================================== */
@media (max-width: 768px) {
  .toplist-lead {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin: 8px auto 14px !important;
    padding: 0 6px;
  }
}

/* ===========================================
   Sticky mobile affiliate CTA bar (≤768px only)
   Always-visible primary CTA — additional, not substitute.
   =========================================== */
.sticky-mobile-cta { display: none; }
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 950;
    background: linear-gradient(180deg, rgba(20,20,32,0.97) 0%, rgba(10,10,20,0.99) 100%);
    border-top: 1px solid rgba(245,166,35,0.4);
    padding: 8px 12px 10px;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.4);
  }
  .sticky-mobile-cta-inner {
    display: flex; align-items: center; gap: 10px;
    max-width: 720px; margin: 0 auto;
  }
  .sticky-mobile-cta-text {
    flex: 1 1 auto; min-width: 0;
    color: #fff; font-size: 0.78rem; line-height: 1.25;
    text-align: left;
  }
  .sticky-mobile-cta-text strong {
    display: block; color: var(--gold, #F5A623);
    font-size: 0.88rem; font-weight: 800;
  }
  .sticky-mobile-cta-text span {
    display: block; color: rgba(255,255,255,0.75);
    font-size: 0.74rem;
  }
  .sticky-mobile-cta-btn {
    flex: 0 0 auto;
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    min-height: 44px;
    white-space: nowrap;
  }
  /* Body padding so the bar doesn't cover the page footer */
  body { padding-bottom: 64px; }
  /* Cookie banner needs to sit ABOVE the sticky bar */
  .cookie-banner, #cookie-banner, [class*="cookie"] { z-index: 960 !important; }
}

/* ===========================================
   Step-card tip lists (how-to-start section)
   =========================================== */
.feature-card .step-tips {
  list-style: none;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--border);
  text-align: left;
}
.feature-card .step-tips li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.feature-card .step-tips li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green, #27ae60);
  font-weight: 800;
}
.feature-card .step-tips li strong { color: #e0e0e0; }

/* ===========================================
   Review "Aperçu du site" screenshot figure
   =========================================== */
.site-preview {
  margin: 0 0 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.site-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--border);
}
.site-preview figcaption {
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ===========================================
   Toplist mini-review screenshot thumbnail
   =========================================== */
.mini-review-shot {
  margin: 0 0 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 520px;
}
.mini-review-shot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  object-position: top center;
}
.mini-review-shot figcaption {
  padding: 7px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--bg-card);
}

/* ============================================
   Toplist cards — bigger logos, bolder amber bonus, glowy CTA
   (operator request 2026-05-27). Bonus stays FLAT (not a button)
   per mobile-toplist-card; only the CTA glows.
   ============================================ */
/* Larger brand logos (override the inline height:60px on the card <img>) */
.casino-card .casino-info h3 img {
  width: 148px !important;
  height: 80px !important;
  max-height: 80px !important;
  object-fit: contain !important;
  padding: 6px 10px !important;
  border-radius: 10px !important;
  margin-right: 20px !important;
}

/* Bonus: larger, bolder, warm amber highlight — flat, no shadow */
.casino-bonus {
  background: linear-gradient(135deg, rgba(245,166,35,0.18), rgba(245,166,35,0.07));
  border: 1px solid rgba(245,166,35,0.5);
}
.casino-bonus strong {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.2;
}
.casino-bonus span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e0c074;
}

/* CTA: bigger, bolder, glowing gold */
.casino-cta .btn {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 15px 22px;
  text-transform: uppercase;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(245,166,35,0.55), 0 0 38px rgba(245,166,35,0.28);
  animation: ctaGlow 2.2s ease-in-out infinite;
}
.casino-cta .btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 28px rgba(245,166,35,0.85), 0 0 64px rgba(245,166,35,0.45);
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 16px rgba(245,166,35,0.45), 0 0 32px rgba(245,166,35,0.22); }
  50%      { box-shadow: 0 0 28px rgba(245,166,35,0.72), 0 0 56px rgba(245,166,35,0.40); }
}
@media (prefers-reduced-motion: reduce) {
  .casino-cta .btn { animation: none; }
}
@media (max-width: 768px) {
  .casino-card .casino-info h3 img { height: 72px !important; max-height: 72px; }
  .casino-bonus strong { font-size: 1.15rem; }
  .casino-cta .btn { font-size: 1rem; padding: 13px 18px; }
}

/* HERO-TO-HEADING-SPACING — collapse the stacked gap between the hero and the
   first content heading (was ~160px: hero 40 + section 40 + content-block 40 +
   h2 margin 40). Adjacent-sibling + first-child scoped so only the first
   heading after a hero is affected. */
.hero + .section { padding-top: 16px; }
.content-block h2:first-child,
.content-block h3:first-child,
.legal-content h2:first-child,
.legal-content h3:first-child { margin-top: 0; }
.section .content-block:first-child { padding-top: 0; }

/* ============================================
   Affiliate CTAs (Jouer / Réclamer le Bonus / Parier ...) — emerald + glow
   (operator request 2026-05-27). Targets only rel=nofollow buttons, so
   internal nav buttons (contact, profile) stay unaffected. Emerald CTA
   contrasts the warm amber bonus per mobile-toplist-card.
   ============================================ */
a.btn[rel*="nofollow"] {
  background: linear-gradient(180deg, #2ee06f 0%, #1e9e57 55%, #14834a 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(46,224,111,0.5) !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: 0 0 18px rgba(46,224,111,0.6), 0 0 42px rgba(46,224,111,0.32),
              inset 0 1px 0 rgba(255,255,255,0.28) !important;
  animation: ctaGlowGreen 2.1s ease-in-out infinite;
}
a.btn[rel*="nofollow"]:hover {
  background: linear-gradient(180deg, #3df07d 0%, #23ad60 55%, #178c4f 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px rgba(46,224,111,0.9), 0 0 68px rgba(46,224,111,0.5),
              inset 0 1px 0 rgba(255,255,255,0.35) !important;
}
@keyframes ctaGlowGreen {
  0%, 100% { box-shadow: 0 0 16px rgba(46,224,111,0.52), 0 0 34px rgba(46,224,111,0.26),
                         inset 0 1px 0 rgba(255,255,255,0.24); }
  50%      { box-shadow: 0 0 30px rgba(46,224,111,0.82), 0 0 60px rgba(46,224,111,0.46),
                         inset 0 1px 0 rgba(255,255,255,0.30); }
}
@media (prefers-reduced-motion: reduce) {
  a.btn[rel*="nofollow"] { animation: none; }
}

/* ============================================
   Review-hero affiliate CTA — desktop only
   (mobile uses the sticky bottom bar instead)
   ============================================ */
.review-hero .hero-cta-desktop {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.05rem;
  padding: 14px 30px;
}
@media (max-width: 768px) {
  .review-hero .hero-cta-desktop { display: none; }
}

/* ============================================
   Comparison tables — larger logos + horizontal scroll on mobile
   (operator request 2026-05-27). Rows stay on one line; the table
   scrolls sideways inside .table-scroll instead of squishing.
   ============================================ */
.comparison-table td img {
  width: 148px !important;
  height: 80px !important;
  max-height: 80px !important;
  object-fit: contain !important;
  padding: 6px 10px !important;
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 10px;
}
@media (max-width: 768px) {
  .comparison-table td img { height: 44px !important; max-height: 44px; }
  .table-scroll .comparison-table { min-width: 660px; }
  .table-scroll .comparison-table th,
  .table-scroll .comparison-table td { white-space: nowrap; }
}

/* ============================================
   Hide H2 section descriptions on mobile (operator request 2026-05-27)
   — keeps headings + content tight on small screens. Elements remain in
   the DOM (crawlable), only visually hidden ≤768px.
   ============================================ */
@media (max-width: 768px) {
  .section-subtitle,
  .toplist-lead { display: none !important; }
}

/* ============================================
   Hamburger: hidden on desktop, shown on mobile (authoritative, last word)
   ============================================ */
@media (max-width: 768px) {
  .menu-toggle { display: inline-flex !important; }
}
