:root {
  --gold: #d4a843;
  --gold-light: #f0c966;
  --gold-dark: #b8892a;
  --bg-dark: #0a0a0f;
  --bg-card: #12121c;
  --bg-card2: #1a1a28;
  --border: rgba(212,168,67,0.18);
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --green: #22c55e;
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-width: 300px;
  overflow-x: hidden;
}

/* ═══════════════════════════════ HEADER ═══════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
nav { display: flex; align-items: center; gap: 8px; }
nav a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
nav a:hover { color: var(--gold-light); background: rgba(212,168,67,0.08); }
.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important; font-weight: 700 !important;
  border-radius: 10px !important; padding: 9px 18px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.35) !important;
  background: rgba(212,168,67,0.08) !important;
  color: var(--gold-light) !important;
}

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 8px;
  background: none; border: none;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 12px 24px 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  padding: 12px 14px; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); background: rgba(212,168,67,0.08); }

@media (max-width: 991px) {
  nav { display: none; }
  .burger { display: flex; }
}

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 24px 80px;
  text-align: center;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.18;
  pointer-events: none; user-select: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, var(--bg-dark) 0%, transparent 30%, transparent 70%, var(--bg-dark) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,67,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero > *:not(.hero-bg-img) { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,0.1); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 600; color: var(--gold-light);
  margin-bottom: 28px; letter-spacing: 0.5px;
}
.hero-badge::before { content: '★'; }
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -1px;
  max-width: 800px; margin: 0 auto 16px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-muted); max-width: 600px; margin: 0 auto 14px;
  line-height: 1.7;
}
.hero-tagline {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: var(--gold-light); font-style: italic; margin-bottom: 44px;
  opacity: 0.85;
}

/* ═══════════════════════════════ BADGES ═══════════════════════════════ */
.badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 900px; margin: 0 auto 70px;
  padding: 0 24px;
}
.badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 22px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}
.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,168,67,0.15);
  border-color: var(--gold);
}
.badge-icon { font-size: 1.4rem; }
.badge-text { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.8px; color: var(--gold-light); }

/* ═══════════════════════════════ SECTION TITLE ═══════════════════════════════ */
.section-title { text-align: center; margin-bottom: 40px; padding: 0 24px; }
.section-title h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px;
}
.section-title h2 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-title p { color: var(--text-muted); font-size: 0.95rem; max-width: 540px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; margin: 14px auto 0;
}

/* ═══════════════════════════════ UPDATED DATE ═══════════════════════════════ */
.updated-bar {
  max-width: 900px; margin: 0 auto 24px;
  padding: 0 24px;
  display: flex; align-items: center; gap: 8px;
}
.updated-bar span {
  font-size: 0.8rem; color: var(--text-muted);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.updated-bar span::before { content: '🕐'; font-size: 0.85rem; }

/* ═══════════════════════════════ CASINO CARDS ═══════════════════════════════ */
.casinos { max-width: 900px; margin: 0 auto; padding: 0 24px 80px; }

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}
.casino-card.featured::before {
  content: '⭐ RECOMMANDÉ';
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-size: 0.65rem; font-weight: 800;
  padding: 4px 10px; border-radius: 6px; letter-spacing: 0.5px;
}
.card-inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 0;
}
.card-logo-wrap {
  padding: 24px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border-right: 1px solid var(--border);
}
.card-logo-img {
  width: 110px; height: 52px; object-fit: contain;
  filter: brightness(1.1);
  transition: filter 0.2s;
}
.casino-card:hover .card-logo-img { filter: brightness(1.3) drop-shadow(0 0 8px rgba(212,168,67,0.4)); }
.card-rank {
  font-size: 0.7rem; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.5px;
  background: rgba(212,168,67,0.1); border-radius: 6px; padding: 3px 8px;
}
.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }

.card-body { padding: 20px 24px; }
.card-name {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.tag-lic {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px;
  background: rgba(34,197,94,0.15); color: var(--green);
  border: 1px solid rgba(34,197,94,0.3); border-radius: 6px;
  padding: 2px 8px;
}
.card-bonus {
  font-size: 1.15rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.card-perks { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.perk {
  font-size: 0.72rem; font-weight: 600;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted); border-radius: 6px; padding: 4px 10px;
  display: flex; align-items: center; gap: 4px;
}
.perk::before { content: '✓'; color: var(--green); }
.card-info { font-size: 0.78rem; color: var(--text-muted); }

.card-cta { padding: 20px 24px; display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 160px; }
.btn-cta {
  display: inline-block; width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; font-size: 0.88rem; font-weight: 800;
  text-decoration: none; text-align: center;
  padding: 13px 20px; border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-cta:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(212,168,67,0.4); }
.btn-cta-outline {
  display: inline-block; width: 100%;
  border: 1px solid var(--border); color: var(--text-muted);
  font-size: 0.78rem; font-weight: 500;
  text-decoration: none; text-align: center;
  padding: 8px 14px; border-radius: 10px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-cta-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.cta-label { font-size: 0.68rem; color: var(--text-muted); text-align: center; }

@media (max-width: 700px) {
  .card-inner { grid-template-columns: 1fr; }
  .card-logo-wrap { border-right: none; border-bottom: 1px solid var(--border); flex-direction: row; justify-content: space-between; padding: 16px 20px; }
  .card-cta { border-top: 1px solid var(--border); }
  .casino-card.featured::before { top: 10px; right: 10px; }
}
@media (max-width: 450px) {
  .card-name { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ═══════════════════════════════ REVIEWS ═══════════════════════════════ */
.reviews-section {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.reviews-grid {
  max-width: 1100px; margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(212,168,67,0.35); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--bg-card2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--gold-light);
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.review-date { font-size: 0.72rem; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; }
.review-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.review-casino { font-size: 0.72rem; font-weight: 600; color: var(--gold-light); margin-top: 12px; display: flex; align-items: center; gap: 4px; }
.review-casino::before { content: '🎰'; }

/* ═══════════════════════════════ WHY SECTION ═══════════════════════════════ */
.why-section { padding: 80px 24px; }
.why-grid {
  max-width: 1100px; margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
}
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,67,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.why-icon::before {
  content: '';
  display: block;
  width: 22px; height: 22px;
  background: var(--gold-light);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.why-icon--shield::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4 5v6c0 5.25 3.5 10.15 8 11.35C16.5 21.15 20 16.25 20 11V5l-8-3zm0 2.18l6 2.25V11c0 4.1-2.72 7.93-6 9.18C8.72 18.93 6 15.1 6 11V6.43l6-2.25z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L4 5v6c0 5.25 3.5 10.15 8 11.35C16.5 21.15 20 16.25 20 11V5l-8-3zm0 2.18l6 2.25V11c0 4.1-2.72 7.93-6 9.18C8.72 18.93 6 15.1 6 11V6.43l6-2.25z'/%3E%3C/svg%3E");
}
.why-icon--trophy::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94A5.01 5.01 0 0011 15.9V18H9v2h6v-2h-2v-2.1a5.01 5.01 0 003.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zm-2 3c0 1.65-1.35 3-3 3s-3-1.35-3-3V5h6v3zM5 8V7h2v3.87C5.86 10.43 5 9.3 5 8zm14 0c0 1.3-.86 2.43-2 2.87V7h2v1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94A5.01 5.01 0 0011 15.9V18H9v2h6v-2h-2v-2.1a5.01 5.01 0 003.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zm-2 3c0 1.65-1.35 3-3 3s-3-1.35-3-3V5h6v3zM5 8V7h2v3.87C5.86 10.43 5 9.3 5 8zm14 0c0 1.3-.86 2.43-2 2.87V7h2v1z'/%3E%3C/svg%3E");
}
.why-icon--dice::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 3h14a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2zm2 3a1 1 0 100 2 1 1 0 000-2zm10 0a1 1 0 100 2 1 1 0 000-2zM7 16a1 1 0 100 2 1 1 0 000-2zm5-4a1 1 0 100 2 1 1 0 000-2zm5 4a1 1 0 100 2 1 1 0 000-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 3h14a2 2 0 012 2v14a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2zm2 3a1 1 0 100 2 1 1 0 000-2zm10 0a1 1 0 100 2 1 1 0 000-2zM7 16a1 1 0 100 2 1 1 0 000-2zm5-4a1 1 0 100 2 1 1 0 000-2zm5 4a1 1 0 100 2 1 1 0 000-2z'/%3E%3C/svg%3E");
}
.why-icon--gift::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6h-2.18c.11-.32.18-.66.18-1a3 3 0 00-3-3c-1 0-1.96.53-2.5 1.34L12 4.2l-.5-.86C10.96 2.53 10 2 9 2a3 3 0 00-3 3c0 .34.07.68.18 1H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 16H4v-2h16v2zm0-5H4V8h5.08L7 11.25 8.62 12 11 7.76l1 1.73 1-1.73L15.38 12 17 11.25 14.92 8H20v7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6h-2.18c.11-.32.18-.66.18-1a3 3 0 00-3-3c-1 0-1.96.53-2.5 1.34L12 4.2l-.5-.86C10.96 2.53 10 2 9 2a3 3 0 00-3 3c0 .34.07.68.18 1H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 16H4v-2h16v2zm0-5H4V8h5.08L7 11.25 8.62 12 11 7.76l1 1.73 1-1.73L15.38 12 17 11.25 14.92 8H20v7z'/%3E%3C/svg%3E");
}
.why-icon--card::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.11 0-2 .89-2 2v12c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E");
}
.why-icon--heart::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--gold-light); }
.why-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════ FOOTER ═══════════════════════════════ */
footer {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}
.footer-top {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.2rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.7; margin-top: 12px; max-width: 300px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.8px; color: var(--gold-light); margin-bottom: 16px; text-transform: uppercase; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.82rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }

/* ── Regulatory Badges ─────────────────────────────────────────────────── */
.footer-badges {
  max-width: 1100px; margin: 0 auto 40px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.f-badge {
  display: inline-flex; align-items: center;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: transform 0.22s, box-shadow 0.22s, filter 0.22s;
  flex-shrink: 0;
}
.f-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
  filter: brightness(1.12);
}
.f-badge-svg {
  display: block;
  height: 44px;
  width: auto;
}
/* Image-based badges */
.f-badge--img {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  height: 56px;
}
.f-badge-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { font-size: 0.75rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════ SCROLL ANIMATIONS ═══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════ COOKIE BANNER ═══════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bg-card2); border-top: 1px solid var(--border);
  padding: 18px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
#cookie-banner.hidden { display: none; }
#cookie-banner p { font-size: 0.82rem; color: var(--text-muted); max-width: 700px; }
#cookie-banner p a { color: var(--gold-light); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  border: none; cursor: pointer; border-radius: 10px;
  padding: 10px 20px; font-size: 0.82rem; font-weight: 700; font-family: inherit;
  transition: transform 0.2s;
}
.cookie-btns button:hover { transform: scale(1.03); }
.btn-accept { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; }
.btn-decline { background: rgba(255,255,255,0.06); color: var(--text-muted); }

/* ═══════════════════════════════ FAQ ═══════════════════════════════ */
.faq-section { padding: 0 24px 80px; }
.faq-list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: rgba(212,168,67,0.35); }
.faq-item.open { border-color: var(--gold); }

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  color: var(--text); text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-light); }
.faq-item.open .faq-q { color: var(--gold-light); }

.faq-arrow {
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212,168,67,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: transform 0.3s, background 0.25s;
}
.faq-arrow::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(45deg) translate(-1px, -2px);
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(212,168,67,0.15); }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 20px;
}
.faq-a p {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.75;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.faq-a strong { color: var(--gold-light); }

/* ═══════════════════════════════ AGE GATE ═══════════════════════════════ */
#age-gate {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(5, 5, 10, 0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
#age-gate.hidden { display: none; }

.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,168,67,0.1);
  animation: ageFadeIn 0.4s ease;
}
@keyframes ageFadeIn {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.age-gate-icon { margin-bottom: 20px; }
.age-gate-box h2 {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.age-gate-box > p {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px;
}
.age-gate-sub {
  font-size: 1rem; font-weight: 700; color: var(--text) !important;
  margin: 20px 0 24px !important;
}
.age-gate-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.age-btn-yes {
  border: none; cursor: pointer; border-radius: 12px;
  padding: 14px 20px; font-size: 0.95rem; font-weight: 700; font-family: inherit;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.age-btn-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.35); }
.age-btn-no {
  border: 1px solid var(--border); cursor: pointer; border-radius: 12px;
  padding: 12px 20px; font-size: 0.875rem; font-weight: 500; font-family: inherit;
  background: rgba(255,255,255,0.04); color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.age-btn-no:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.age-gate-legal {
  font-size: 0.72rem !important; color: var(--text-muted); opacity: 0.65; line-height: 1.6;
}

/* ═══════════════════════════════ COOKIE BANNER ═══════════════════════════════ (override) */
#cookie-banner {
  flex-wrap: nowrap; gap: 20px; padding: 16px 28px;
  align-items: center;
}
@media (max-width: 700px) { #cookie-banner { flex-wrap: wrap; } }
.cookie-content { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.cookie-icon { font-size: 1.5rem; flex-shrink: 0; }
.cookie-text { display: flex; flex-direction: column; gap: 2px; }
.cookie-text strong { font-size: 0.85rem; color: var(--text); }
.cookie-text span { font-size: 0.78rem; color: var(--text-muted); }
.cookie-text a { color: var(--gold-light); }

/* ═══════════════════════════════ JEU RESPONSABLE ═══════════════════════════════ */
.responsible-section {
  background: linear-gradient(135deg, rgba(212,168,67,0.07) 0%, rgba(212,168,67,0.02) 100%);
  border-top: 1px solid rgba(212,168,67,0.2);
  border-bottom: 1px solid rgba(212,168,67,0.2);
  padding: 40px 24px;
}
.responsible-inner {
  display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start;
}
.responsible-left {
  display: flex; align-items: flex-start; gap: 16px;
  flex: 0 0 320px;
}
.responsible-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 14px;
  background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.2);
  display: flex; align-items: center; justify-content: center;
}
.responsible-left h3 { font-size: 1rem; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; }
.responsible-left p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.responsible-items {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px; flex: 1;
}
.responsible-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.55;
}
.responsible-num {
  font-size: 0.72rem; font-weight: 800; color: var(--gold);
  background: rgba(212,168,67,0.1); border-radius: 6px;
  padding: 2px 7px; flex-shrink: 0; margin-top: 1px; letter-spacing: 0.5px;
}
.responsible-item a { color: var(--gold-light); text-decoration: none; }
.responsible-item a:hover { text-decoration: underline; }
.responsible-item strong { color: var(--text); }

@media (max-width: 700px) {
  .responsible-left { flex: 1 1 100%; }
}

/* ═══════════════════════════════ MISC ═══════════════════════════════ */
.container { max-width: 1100px; margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ═══════════════════════════════ SKIP LINK ═══════════════════════════════ */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 99999;
  background: var(--gold); color: #000; font-weight: 700;
  padding: 10px 20px; border-radius: 0 0 10px 10px;
  text-decoration: none; font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: 3px solid var(--gold-dark); outline-offset: 2px; }

/* ═══════════════════════════════ FOCUS VISIBLE ═══════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* ═══════════════════════════════ RESPONSIVE 991px ═══════════════════════════════ */
@media (max-width: 991px) {
  .hero { padding: 80px 20px 60px; }
  .badges { gap: 10px; padding: 20px 16px; }
  #casinos, .why-section, .faq-section { padding-left: 16px; padding-right: 16px; }
  .section-title h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
}

/* ═══════════════════════════════ RESPONSIVE 768px ═══════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 70px 16px 50px; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero-sub, .hero-tagline { font-size: 0.875rem; }

  /* Benefit badges */
  .badges { justify-content: center; gap: 8px; padding: 16px; }
  .badge { padding: 10px 14px; font-size: 0.72rem; }

  /* Casino cards */
  .casinos { padding: 0 16px; }
  .card-inner { grid-template-columns: 1fr; }
  .card-logo-wrap {
    border-right: none; border-bottom: 1px solid var(--border);
    flex-direction: row; justify-content: space-between;
    padding: 16px 20px; min-width: unset;
  }
  .card-logo { width: 80px; height: 80px; }
  .card-body { padding: 16px 20px; }
  .card-cta { border-top: 1px solid var(--border); padding: 16px 20px; }

  /* Reviews */
  .reviews-section { padding: 50px 16px; }
  .reviews-grid { gap: 14px; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Responsible section */
  .responsible-section { padding: 30px 16px; }
  .responsible-inner { flex-direction: column; gap: 20px; }
  .responsible-left { flex: 1 1 100%; }
  .responsible-items { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  footer { padding: 40px 16px 0; }
  .footer-badges { gap: 8px; }
  .f-badge--img { height: 48px; padding: 5px 10px; }
  .f-badge-img { height: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ═══════════════════════════════ RESPONSIVE 480px ═══════════════════════════════ */
@media (max-width: 480px) {
  /* Header */
  .header-inner { padding: 0 16px; }
  .logo { font-size: 1.15rem; }

  /* Hero */
  .hero { padding: 60px 14px 44px; }
  .hero h1 { font-size: clamp(1.4rem, 7vw, 2rem); }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }

  /* Benefit badges */
  .badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 14px; }
  .badge { justify-content: center; }

  /* Casino cards */
  .casino-card { margin: 0; }
  .card-logo-wrap { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 16px; }
  .card-rank { font-size: 0.65rem; }
  .card-body { padding: 14px 16px; }
  .card-cta { padding: 14px 16px; }
  .casino-card.featured::before { font-size: 0.6rem; padding: 4px 10px; top: 8px; right: 8px; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 20px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-section { padding: 0 14px 60px; }
  .faq-q { padding: 16px 16px; font-size: 0.875rem; }
  .faq-a { padding: 0 16px; }
  .faq-item.open .faq-a { padding: 0 16px 16px; }

  /* Responsible */
  .responsible-items { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-badges { justify-content: flex-start; }
  .f-badge-svg { height: 38px; }
  .f-badge--img { height: 44px; padding: 4px 8px; }
  .f-badge-img { height: 30px; }

  /* Cookie banner */
  #cookie-banner { padding: 14px 16px; gap: 10px; }
  .cookie-btns { width: 100%; }
  .cookie-btns button { flex: 1; padding: 10px 12px; font-size: 0.78rem; }
}

/* ═══════════════════════════════ RESPONSIVE 360px ═══════════════════════════════ */
@media (max-width: 360px) {
  body { font-size: 14px; }
  .hero h1 { font-size: 1.3rem; }
  .badges { grid-template-columns: 1fr; }
  .badge { justify-content: flex-start; }
  .section-title h2 { font-size: 1.25rem; }
  .why-grid, .responsible-items { grid-template-columns: 1fr; }
  .f-badge--img { height: 40px; }
  .f-badge-img { height: 26px; }
  .age-gate-box { padding: 32px 20px 28px; }
  .age-gate-box h2 { font-size: 1.2rem; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
