/* Dragonia Casino Avis — Stylesheet */

/* ---- CSS VARIABLES ---- */
:root {
  /* Color Palette */
  --bg-primary: #1a0f14;
  --bg-secondary: #22141a;
  --bg-card: #2b1b22;
  --bg-card-hover: #321f28;
  --bg-alt: #1e1218;
  --sidebar-bg: #1c1018;
  --header-bg: #1e1218;

  --gold-light: #f1c24b;
  --gold-mid: #d4a017;
  --gold-dark: #a07010;
  --gold-gradient: linear-gradient(135deg, #f1c24b 0%, #d4a017 50%, #a07010 100%);
  --gold-gradient-h: linear-gradient(135deg, #ffe077 0%, #f1c24b 50%, #d4a017 100%);

  --red-accent: #c0392b;
  --red-light: #e74c3c;
  --crimson: #8b0000;

  --text-primary: #f2e7d5;
  --text-secondary: #b8a898;
  --text-muted: #7a6a60;
  --text-gold: #f1c24b;
  --text-white: #fff;

  --border-color: #3d2530;
  --border-gold: #d4a01760;

  --success: #27ae60;
  --danger: #e74c3c;
  --warning: #f39c12;

  /* Fonts */
  --font-display: 'Rajdhani', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sizing */
  --sidebar-width: 260px;
  --header-height: 70px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 18px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 20px rgba(212, 160, 23, 0.3);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.05);
  --glow-gold: 0 0 30px rgba(241, 194, 75, 0.4);

  /* Transitions */
  --trans-fast: 0.15s ease;
  --trans-mid: 0.25s ease;
  --trans-slow: 0.4s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--trans-fast);
}
a:hover { color: var(--gold-gradient-h); }

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

ul { list-style: none; }

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

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-mid); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sidebar-toggle {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--trans-fast);
}
.sidebar-toggle:hover {
  border-color: var(--gold-mid);
  color: var(--gold-light);
}

.logo-link {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 38px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 8px rgba(212, 160, 23, 0.35));
  transition: filter var(--trans-mid);
}

.logo-link:hover .logo-img {
  filter: drop-shadow(0 2px 16px rgba(241, 194, 75, 0.6));
}

.sidebar-logo-img {
  height: 32px;
  width: auto;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
  opacity: 0.92;
}

/* Keep fallback text style if logo fails to load */
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* logo-sub removed — label is embedded in the PNG logo */

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.header-nav .nav-link {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  border-radius: var(--border-radius-sm);
  transition: all var(--trans-fast);
  white-space: nowrap;
}
.header-nav .nav-link:hover {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.1);
}

.header-actions { flex-shrink: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--trans-mid);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #1a0a00;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-gradient-h);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
  color: #1a0a00;
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold-mid);
}
.btn-outline:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-large {
  padding: 14px 30px;
  font-size: 1rem;
}

.btn-xlarge {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: var(--border-radius);
}

.btn-full { width: 100%; justify-content: center; }

.mt-20 { margin-top: 20px; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border-color);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--trans-slow);
  overflow-y: auto;
}

.sidebar.open {
  transform: translateX(0);
  box-shadow: 4px 0 40px rgba(0, 0, 0, 0.6);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-mid);
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-close {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-fast);
}
.sidebar-close:hover {
  border-color: var(--red-accent);
  color: var(--red-light);
}

.sidebar-nav ul {
  padding: 12px 0;
}

.sidebar-nav .nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--trans-fast);
  border-left: 3px solid transparent;
}

.sidebar-nav .nav-item a i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sidebar-nav .nav-item a:hover,
.sidebar-nav .nav-item.active a {
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.08);
  border-left-color: var(--gold-mid);
}

.sidebar-nav .nav-item.nav-cta a {
  margin: 12px 20px;
  padding: 12px 20px;
  background: var(--gold-gradient);
  color: #1a0a00;
  border-radius: var(--border-radius-sm);
  border-left: none;
  justify-content: center;
  font-size: 0.9rem;
}
.sidebar-nav .nav-item.nav-cta a:hover {
  background: var(--gold-gradient-h);
  box-shadow: var(--shadow-gold);
  transform: none;
}

.sidebar-footer {
  margin-top: auto;
  padding: 16px 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.age-badge {
  background: var(--red-accent);
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

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

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  padding-top: var(--header-height);
  min-height: 100vh;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding: 80px 40px 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background: #0f0608;
}

/* ---- Animated background layer ---- */
.hero-section .hero-bg {
  position: absolute;
  inset: -8%;
  background:
    url('../images/hero-banner.jpg') center center / cover no-repeat;
  animation: heroBgKenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}

/* Ken Burns: slow zoom + slight drift */
@keyframes heroBgKenBurns {
  0%   { transform: scale(1.00) translate(0%, 0%); }
  25%  { transform: scale(1.06) translate(-1.5%, 0.5%); }
  50%  { transform: scale(1.10) translate(-2%, -1%); }
  75%  { transform: scale(1.07) translate(-0.5%, -1.5%); }
  100% { transform: scale(1.04) translate(1%, -0.5%); }
}

/* ---- Dark gradient overlay over the bg ---- */
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(10, 4, 8, 0.90) 0%,
      rgba(20, 10, 14, 0.72) 40%,
      rgba(15, 6, 10, 0.28) 100%);
  z-index: 1;
  animation: heroOverlayPulse 8s ease-in-out infinite alternate;
}

@keyframes heroOverlayPulse {
  0%   { opacity: 1; }
  50%  { opacity: 0.88; }
  100% { opacity: 1; }
}

/* ---- Red fire glow — bottom right ---- */
.hero-section .hero-glow-fire {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(180, 40, 10, 0.35) 0%, rgba(220, 80, 20, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: fireGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes fireGlow {
  0%   { transform: scale(1.0);   opacity: 0.7; }
  50%  { transform: scale(1.12);  opacity: 1.0; }
  100% { transform: scale(0.95);  opacity: 0.65; }
}

/* ---- Gold embers particles ---- */
.hero-section .hero-embers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-section .hero-embers span {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  animation: emberRise var(--dur, 6s) ease-in var(--delay, 0s) infinite;
}

@keyframes emberRise {
  0%   { transform: translateY(0)   translateX(0)   scale(1);   opacity: 0; }
  10%  { opacity: 0.9; }
  60%  { opacity: 0.5; }
  100% { transform: translateY(-420px) translateX(var(--drift, 30px)) scale(0.3); opacity: 0; }
}

/* ---- Gold shimmer line at top edge ---- */
.hero-section .hero-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(241,194,75,0.8), transparent);
  z-index: 3;
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

.hero-inner,
.hero-visual {
  position: relative;
  z-index: 4;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.5;
  z-index: 5;
  animation: heroLineGlow 3s ease-in-out infinite alternate;
}

@keyframes heroLineGlow {
  0%   { opacity: 0.3; box-shadow: none; }
  100% { opacity: 0.8; box-shadow: 0 0 12px rgba(241,194,75,0.6); }
}

.hero-inner {
  flex: 1;
  max-width: 680px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.rating-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

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

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1;
}

.hero-card-float {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius);
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  min-width: 140px;
  box-shadow: var(--shadow-card);
  transition: transform var(--trans-mid);
}
.hero-card-float:hover { transform: translateY(-4px); }

.hero-card-float i {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.hero-card-float span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
}
.hero-card-float small {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-1 { animation: float 4s ease-in-out infinite; }
.card-2 { animation: float 4s ease-in-out 1.3s infinite; }
.card-3 { animation: float 4s ease-in-out 2.6s infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 18px 40px;
  overflow: hidden;
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

.stat-item i {
  font-size: 1.4rem;
  color: var(--gold-mid);
  flex-shrink: 0;
}

.stat-item div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stat-item span {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-section {
  padding: 70px 40px;
}

.content-section.alt-bg {
  background: var(--bg-alt);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold-mid);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-white);
  position: relative;
  padding-bottom: 16px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* ---- Two Column ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.col-text p { color: var(--text-secondary); }

/* ---- Styled List ---- */
.styled-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.styled-list li i {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.85rem;
}

/* ---- Rating Card ---- */
.rating-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.rating-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.rating-bar-item span {
  flex: 1;
  color: var(--text-secondary);
  font-size: 0.78rem;
}

.bar-track {
  width: 100px;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 3px;
  transition: width 1s ease;
}

.rating-bar-item strong {
  color: var(--gold-light);
  font-size: 0.82rem;
  width: 26px;
  text-align: right;
  flex-shrink: 0;
}

.rating-total {
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rating-total span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.score-big {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 22px;
  transition: all var(--trans-mid);
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ---- Bonus Cards ---- */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  position: relative;
  transition: all var(--trans-mid);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.bonus-card.featured {
  border-color: var(--gold-mid);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.2);
}

.bonus-card.featured::before {
  content: 'Meilleure offre';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #1a0a00;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.bonus-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-mid);
}

.bonus-icon {
  font-size: 1.8rem;
  color: var(--gold-light);
}

.bonus-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.bonus-amount span {
  font-size: 0.85rem;
  font-weight: 600;
}

.bonus-extra {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.bonus-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0;
  flex: 1;
}

.bonus-card ul li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding-left: 12px;
  position: relative;
}

.bonus-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold-mid);
}

/* ---- Games Categories ---- */
.games-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.game-cat {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 22px;
  transition: all var(--trans-mid);
}

.game-cat:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.game-cat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 14px;
}

.game-cat h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.game-cat p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.cat-count {
  display: inline-block;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold-mid);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Payment Methods ---- */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.payment-method {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 90px;
  transition: all var(--trans-fast);
  cursor: default;
}

.payment-method:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.payment-method i { color: var(--gold-light); }
.payment-method span { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.payment-method small { font-size: 0.65rem; color: var(--text-muted); text-align: center; }

/* ---- Support Card ---- */
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
}

.support-card h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.support-item:last-child { border-bottom: none; }

.support-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.support-icon.live { background: rgba(39, 174, 96, 0.15); color: var(--success); border: 1px solid rgba(39, 174, 96, 0.3); }
.support-icon.email { background: rgba(212, 160, 23, 0.12); color: var(--gold-mid); border: 1px solid rgba(212, 160, 23, 0.3); }
.support-icon.faq { background: rgba(52, 152, 219, 0.12); color: #5dade2; border: 1px solid rgba(52, 152, 219, 0.3); }

.support-item div strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-white);
}
.support-item div span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.support-rating {
  display: flex;
  gap: 2px;
  color: var(--gold-light);
  font-size: 0.65rem;
  margin-top: 4px;
}

/* ---- Mobile Features ---- */
.mobile-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.mobile-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 22px;
  transition: all var(--trans-mid);
}

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

.mobile-feature i {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.mobile-feature h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.mobile-feature p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ---- Reviews Grid ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 28px 0;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 22px;
  transition: all var(--trans-mid);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card);
}

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

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #f1c24b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #1a0a00;
  flex-shrink: 0;
}

.review-header div strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-white);
}

.review-header div span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.review-stars {
  margin-left: auto;
  display: flex;
  gap: 2px;
  color: var(--gold-light);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.review-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  border-left: 3px solid var(--gold-mid);
  padding-left: 12px;
  margin: 0;
}

.review-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Reviews Summary ---- */
.reviews-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.summary-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  width: 130px;
  flex-shrink: 0;
}

.summary-bar {
  flex: 1;
  height: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
}

.summary-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  transition: width 1.2s ease;
}
.summary-fill.positive { background: linear-gradient(90deg, #27ae60, #2ecc71); }
.summary-fill.neutral { background: linear-gradient(90deg, #f39c12, #f1c40f); }
.summary-fill.negative { background: linear-gradient(90deg, #c0392b, #e74c3c); }

/* ---- Pros & Cons ---- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}

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

.pros-col { border-top: 3px solid var(--success); }
.cons-col { border-top: 3px solid var(--danger); }

.pros-title, .cons-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-title { color: var(--success); }
.cons-title { color: var(--danger); }

.pros-list, .cons-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pros-list li, .cons-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pros-list li i { color: var(--success); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }
.cons-list li i { color: var(--danger); flex-shrink: 0; margin-top: 3px; font-size: 0.8rem; }

.pros-list li div, .cons-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pros-list li strong, .cons-list li strong {
  font-size: 0.88rem;
  color: var(--text-white);
}

.pros-list li span, .cons-list li span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- Verdict Section ---- */
.verdict-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #1a0f14 100%);
}

.verdict-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  margin: 32px 0;
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.12);
}

.verdict-score {
  text-align: center;
  flex-shrink: 0;
}

.verdict-score-inner {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.verdict-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.verdict-max {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-muted);
}

.verdict-score p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.verdict-details h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

/* ---- CTA Block ---- */
.cta-block {
  text-align: center;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.06) 0%, rgba(139, 0, 0, 0.08) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--border-radius-lg);
  margin-top: 32px;
}

.cta-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.cta-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.disclaimer-small {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 16px !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.disclaimer-small i { color: var(--warning); flex-shrink: 0; margin-top: 1px; }

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item.open { border-color: var(--border-gold); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-white);
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all var(--trans-fast);
}

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

.faq-question i {
  color: var(--gold-mid);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform var(--trans-mid);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--gold-light); }

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  border-top: 1px solid var(--border-color);
}

.faq-answer.visible { display: block; }

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-top: 16px;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-wrapper {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.table-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  padding: 14px 20px;
  background: rgba(212, 160, 23, 0.06);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.info-table thead tr {
  background: rgba(212, 160, 23, 0.08);
}

.info-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-mid);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.info-table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}

.info-table tr:last-child td { border-bottom: none; }

.info-table tr:hover td {
  background: rgba(212, 160, 23, 0.04);
  color: var(--text-primary);
}

.info-table td i { color: var(--gold-mid); margin-right: 6px; font-size: 0.8rem; }

.status-ok {
  color: var(--success) !important;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--sidebar-bg);
  border-top: 1px solid var(--border-color);
  padding: 50px 40px 30px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

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

.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.age-badge-lg {
  background: var(--red-accent);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 6px;
}

.responsible-badge {
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-nav-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-mid);
  margin-bottom: 16px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-col ul li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--trans-fast);
}

.footer-nav-col ul li a:hover { color: var(--gold-light); }

.footer-divider {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 24px;
}

.footer-bottom {
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border: none;
  border-radius: 50%;
  color: #1a0a00;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans-mid);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}

/* ============================================================
   COLORED ICONS — All icons across the site
   ============================================================ */

/* ---- SIDEBAR nav icons — each unique color ---- */
.sidebar-nav .nav-item:nth-child(1) a i  { color: #f1c24b; } /* Accueil     — gold */
.sidebar-nav .nav-item:nth-child(2) a i  { color: #f1c24b; } /* Notre Avis  — gold star */
.sidebar-nav .nav-item:nth-child(3) a i  { color: #5dade2; } /* Licence     — blue shield */
.sidebar-nav .nav-item:nth-child(4) a i  { color: #e74c3c; } /* Bonus       — red gift */
.sidebar-nav .nav-item:nth-child(5) a i  { color: #9b59b6; } /* Jeux        — purple dice */
.sidebar-nav .nav-item:nth-child(6) a i  { color: #27ae60; } /* Paiements   — green card */
.sidebar-nav .nav-item:nth-child(7) a i  { color: #1abc9c; } /* Service     — teal headset */
.sidebar-nav .nav-item:nth-child(8) a i  { color: #e67e22; } /* Mobile      — orange phone */
.sidebar-nav .nav-item:nth-child(9) a i  { color: #f39c12; } /* Temoignages — amber chat */
.sidebar-nav .nav-item:nth-child(10) a i { color: #3498db; } /* Points      — blue thumbs */
.sidebar-nav .nav-item:nth-child(11) a i { color: #e74c3c; } /* Verdict     — red gavel */
.sidebar-nav .nav-item:nth-child(12) a i { color: #f1c24b; } /* S'inscrire  — gold */

/* ---- STATS BAR — each icon a distinct color ---- */
.stats-bar .stat-item:nth-child(1) i { color: #5dade2;  } /* shield    — blue */
.stats-bar .stat-item:nth-child(2) i { color: #e74c3c;  } /* gift      — red */
.stats-bar .stat-item:nth-child(3) i { color: #9b59b6;  } /* dice      — purple */
.stats-bar .stat-item:nth-child(4) i { color: #27ae60;  } /* clock     — green */
.stats-bar .stat-item:nth-child(5) i { color: #e67e22;  } /* mobile    — orange */

/* ---- SECTION TAGS icons ---- */
.section-tag i { color: inherit; }

/* Specific section tag colors */
#avis-global   .section-tag { color: #f1c24b; border-color: rgba(241,194,75,0.4);  background: rgba(241,194,75,0.08);  }
#fiabilite     .section-tag { color: #5dade2; border-color: rgba(93,173,226,0.4);  background: rgba(93,173,226,0.08);  }
#bonus         .section-tag { color: #e74c3c; border-color: rgba(231,76,60,0.4);   background: rgba(231,76,60,0.08);   }
#jeux          .section-tag { color: #9b59b6; border-color: rgba(155,89,182,0.4);  background: rgba(155,89,182,0.08);  }
#paiements     .section-tag { color: #27ae60; border-color: rgba(39,174,96,0.4);   background: rgba(39,174,96,0.08);   }
#service-client .section-tag{ color: #1abc9c; border-color: rgba(26,188,156,0.4);  background: rgba(26,188,156,0.08);  }
#mobile        .section-tag { color: #e67e22; border-color: rgba(230,126,34,0.4);  background: rgba(230,126,34,0.08);  }
#temoignages   .section-tag { color: #f39c12; border-color: rgba(243,156,18,0.4);  background: rgba(243,156,18,0.08);  }
#points-forts  .section-tag { color: #3498db; border-color: rgba(52,152,219,0.4);  background: rgba(52,152,219,0.08);  }
#verdict       .section-tag { color: #e74c3c; border-color: rgba(231,76,60,0.4);   background: rgba(231,76,60,0.08);   }
#faq           .section-tag { color: #f1c24b; border-color: rgba(241,194,75,0.4);  background: rgba(241,194,75,0.08);  }

/* ---- H2 underline — colored per section ---- */
#avis-global    .section-header h2::after { background: linear-gradient(90deg, #f1c24b, #d4a017); }
#fiabilite      .section-header h2::after { background: linear-gradient(90deg, #5dade2, #2980b9); }
#bonus          .section-header h2::after { background: linear-gradient(90deg, #e74c3c, #c0392b); }
#jeux           .section-header h2::after { background: linear-gradient(90deg, #9b59b6, #6c3483); }
#paiements      .section-header h2::after { background: linear-gradient(90deg, #27ae60, #1e8449); }
#service-client .section-header h2::after { background: linear-gradient(90deg, #1abc9c, #148f77); }
#mobile         .section-header h2::after { background: linear-gradient(90deg, #e67e22, #ca6f1e); }
#temoignages    .section-header h2::after { background: linear-gradient(90deg, #f39c12, #d68910); }
#points-forts   .section-header h2::after { background: linear-gradient(90deg, #3498db, #1a5276); }
#verdict        .section-header h2::after { background: linear-gradient(90deg, #e74c3c, #f1c24b); }
#faq            .section-header h2::after { background: linear-gradient(90deg, #f1c24b, #e67e22); }

/* ---- HERO floating cards — each icon colored ---- */
.hero-card-float.card-1 i { color: #e74c3c;  } /* dragon   — red */
.hero-card-float.card-2 i { color: #9b59b6;  } /* gamepad  — purple */
.hero-card-float.card-3 i { color: #f1c24b;  } /* bolt     — gold */

/* ---- HERO badge icon ---- */
.hero-badge i { color: #e74c3c; }

/* ---- HERO disclaimer icon ---- */
.hero-disclaimer i { color: #5dade2; }

/* ---- FEATURE CARDS icons — colored per section ---- */
#fiabilite .feature-icon { border-color: rgba(93,173,226,0.4); background: rgba(93,173,226,0.1); }
#fiabilite .feature-card:nth-child(1) .feature-icon i { color: #5dade2; }
#fiabilite .feature-card:nth-child(2) .feature-icon i { color: #f1c24b; }
#fiabilite .feature-card:nth-child(3) .feature-icon i { color: #27ae60; }
#fiabilite .feature-card:nth-child(4) .feature-icon i { color: #e74c3c; }

/* ---- BONUS CARDS icons ---- */
.bonus-card:nth-child(1) .bonus-icon i { color: #f1c24b; }
.bonus-card:nth-child(2) .bonus-icon i { color: #3498db; }
.bonus-card:nth-child(3) .bonus-icon i { color: #27ae60; }
.bonus-card:nth-child(4) .bonus-icon i { color: #9b59b6; }

/* ---- GAME CATEGORY icons (already colored inline but reinforce) ---- */
.game-cat:nth-child(1) .game-cat-icon { background: linear-gradient(135deg, #d4a017, #f1c24b); }
.game-cat:nth-child(2) .game-cat-icon { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.game-cat:nth-child(3) .game-cat-icon { background: linear-gradient(135deg, #1a6b4a, #27ae60); }
.game-cat:nth-child(4) .game-cat-icon { background: linear-gradient(135deg, #6c3483, #9b59b6); }

/* ---- PAYMENT METHODS icons ---- */
.payment-method:nth-child(1) i { color: #1a6bbf; }  /* Visa       — blue */
.payment-method:nth-child(2) i { color: #e74c3c; }  /* Mastercard — red */
.payment-method:nth-child(3) i { color: #c0392b; }  /* Skrill     — red */
.payment-method:nth-child(4) i { color: #1abc9c; }  /* Neteller   — teal */
.payment-method:nth-child(5) i { color: #3498db; }  /* Trustly    — blue */
.payment-method:nth-child(6) i { color: #f39c12; }  /* Bitcoin    — amber */
.payment-method:nth-child(7) i { color: #627eea; }  /* Ethereum   — indigo */
.payment-method:nth-child(8) i { color: #27ae60; }  /* Virement   — green */

/* ---- SUPPORT CHANNEL icons (already colored, reinforce) ---- */
.support-icon.live  { background: rgba(39,174,96,0.15);   color: #27ae60; border-color: rgba(39,174,96,0.35); }
.support-icon.email { background: rgba(241,194,75,0.12);  color: #f1c24b; border-color: rgba(241,194,75,0.35); }
.support-icon.faq   { background: rgba(93,173,226,0.12);  color: #5dade2; border-color: rgba(93,173,226,0.35); }

/* ---- MOBILE FEATURES icons ---- */
#mobile .mobile-feature:nth-child(1) i { color: #e67e22; }
#mobile .mobile-feature:nth-child(2) i { color: #f1c24b; }
#mobile .mobile-feature:nth-child(3) i { color: #9b59b6; }
#mobile .mobile-feature:nth-child(4) i { color: #e74c3c; }
#mobile .mobile-feature:nth-child(5) i { color: #27ae60; }
#mobile .mobile-feature:nth-child(6) i { color: #3498db; }

/* ---- STYLED LISTS — colored checkmarks per section ---- */
#avis-global    .styled-list li i { color: #f1c24b; }
#fiabilite      .styled-list li i { color: #5dade2; }
#bonus          .styled-list li i { color: #e74c3c; }
#jeux           .styled-list li i { color: #9b59b6; }
#paiements      .styled-list li i { color: #27ae60; }
#service-client .styled-list li i { color: #1abc9c; }
#mobile         .styled-list li i { color: #e67e22; }
#verdict        .styled-list li i { color: #f1c24b; }

/* ---- PROS list — green ---- */
.pros-list li i { color: #2ecc71 !important; }

/* ---- CONS list — red ---- */
.cons-list li i { color: #e74c3c !important; }

/* ---- PROS/CONS titles ---- */
.pros-title { color: #2ecc71; }
.pros-title i { color: #2ecc71; }
.cons-title { color: #e74c3c; }
.cons-title i { color: #e74c3c; }
.pros-col { border-top-color: #2ecc71; }
.cons-col { border-top-color: #e74c3c; }

/* ---- VERDICT section icons ---- */
#verdict .styled-list li i { color: #f1c24b; }

/* ---- TABLE icons ---- */
.info-table td i { color: #f1c24b; }
.table-title i   { color: #f1c24b; }

/* ---- FAQ question icon ---- */
.faq-question i  { color: #f1c24b; }
.faq-item.open .faq-question i { color: #e74c3c; }

/* ---- FOOTER nav icons ---- */
.footer-nav-col h4 { color: #f1c24b; }
.responsible-badge i { color: #27ae60; }

/* ---- RATING BARS — gradient fill ---- */
.rating-bar-item:nth-child(1) .bar-fill { background: linear-gradient(90deg, #e74c3c, #f1c24b); }
.rating-bar-item:nth-child(2) .bar-fill { background: linear-gradient(90deg, #5dade2, #27ae60); }
.rating-bar-item:nth-child(3) .bar-fill { background: linear-gradient(90deg, #9b59b6, #e74c3c); }
.rating-bar-item:nth-child(4) .bar-fill { background: linear-gradient(90deg, #27ae60, #f1c24b); }
.rating-bar-item:nth-child(5) .bar-fill { background: linear-gradient(90deg, #1abc9c, #3498db); }
.rating-bar-item:nth-child(6) .bar-fill { background: linear-gradient(90deg, #e67e22, #f1c24b); }

/* ---- HERO rating stars ---- */
.rating-stars i { color: #f1c24b; }
.rating-stars .fa-star-half-alt { color: #d4a017; }

/* ---- REVIEW STARS ---- */
.review-stars i.fa-star        { color: #f1c24b; }
.review-stars i.fa-star-half-alt { color: #d4a017; }
.review-stars i.far.fa-star    { color: #4a3a30; }

/* ---- CTA BLOCK icon ---- */
.cta-block .btn-primary i { color: #1a0a00; }

/* ---- DISCLAIMER icons ---- */
.disclaimer-small i { color: #f39c12; }

/* ---- SCORE BIG — verdict ---- */
.verdict-number {
  background: linear-gradient(135deg, #f1c24b 0%, #e74c3c 60%, #f1c24b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- AGE badge ---- */
.age-badge    { background: #c0392b; }
.age-badge-lg { background: #c0392b; }

/* ---- HEADER nav active link ---- */
.header-nav .nav-link.active { color: #f1c24b; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .header-nav { display: none; }

  .hero-section {
    padding: 60px 24px 50px;
    gap: 30px;
    flex-direction: column;
    min-height: auto;
    text-align: center;
  }

  .hero-inner { max-width: 100%; }
  .hero-rating { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-disclaimer { justify-content: center; }

  .hero-visual {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-card-float {
    min-width: 120px;
    padding: 12px 16px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: 1 / -1; }

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

  .verdict-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
  }

  .stats-bar {
    padding: 14px 24px;
    overflow: hidden;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stats-bar .stat-item:nth-child(4),
  .stats-bar .stat-item:nth-child(5) {
    grid-column: span 1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .header-inner { padding: 0 16px; }

  .header-actions .btn-cta {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .logo-text { font-size: 1.3rem; }
  .logo-img { height: 30px; }
  .sidebar-logo-img { height: 26px; }

  .content-section { padding: 50px 20px; }

  .hero-section {
    padding: 48px 20px 40px;
    text-align: center;
  }

  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 0.9rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-card-float {
    min-width: 100px;
    padding: 10px 12px;
  }

  .hero-card-float span { font-size: 1.1rem; }
  .hero-card-float i { font-size: 1.2rem; }

  .section-header h2 { font-size: 1.3rem; }

  .features-grid,
  .bonus-cards,
  .games-categories,
  .mobile-features {
    grid-template-columns: 1fr;
  }

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

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

  .stats-bar { padding: 12px 16px; }
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand { grid-column: auto; }

  .site-footer { padding: 36px 20px 24px; }

  .verdict-box { padding: 22px; gap: 20px; }
  .verdict-number { font-size: 3rem; }

  .cta-block { padding: 32px 20px; }
  .cta-block h3 { font-size: 1.3rem; }

  .table-wrapper { border-radius: var(--border-radius-sm); }
  .info-table th, .info-table td { padding: 10px 12px; font-size: 0.78rem; }

  .scroll-top { bottom: 20px; right: 20px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .payment-methods { gap: 8px; }
  .payment-method { min-width: 75px; padding: 10px; }

  .header-actions .btn-cta span { display: none; }

  .hero-visual { display: none; }

  /* Stats bar — 2 per row, hide text labels */
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-item strong {
    font-size: 0.75rem;
  }

  .stat-item span { display: none; }

  .stat-item i { font-size: 1.1rem; }
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* Loading shimmer for dynamic content */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* Section separator glow line */
.content-section + .content-section.alt-bg {
  position: relative;
}
