/* True Luck Casino — styles principaux
   Theme sombre, accents teal/cyan */

:root {
  --primary: #00e5c3;
  --primary-dark: #00b89a;
  --primary-glow: rgba(0, 229, 195, 0.25);
  --accent: #22e55a;
  --accent-glow: rgba(34, 229, 90, 0.2);
  --gold: #f5c542;
  --gold-light: #ffe082;
  --bg-deep: #0d0f18;
  --bg-card: #151827;
  --bg-card2: #1a1e30;
  --bg-section: #111420;
  --border: rgba(0, 229, 195, 0.15);
  --border-bright: rgba(0, 229, 195, 0.4);
  --text-main: #e8eaf6;
  --text-muted: #8892b0;
  --text-dim: #4a5568;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(0, 229, 195, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 3px; }

/* typographie */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--text-main); }
p:last-child { margin-bottom: 0; }

/* layout de base */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 80px 0; }
.section-alt { background: var(--bg-section); }

/* header/nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 15, 24, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: var(--transition);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--primary), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary);
  background: var(--primary-glow);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: #0d0f18 !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  box-shadow: 0 0 20px var(--primary-glow);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,229,195,0.4) !important;
  background: linear-gradient(135deg, #fff, var(--primary)) !important;
  color: #0d0f18 !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0c16 0%, #0d1a2a 40%, #0a1020 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,229,195,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(34,229,90,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(0,184,154,0.06) 0%, transparent 60%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 60px;
}
.hero-text { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  margin-bottom: 20px;
  color: #fff;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #0d0f18;
  box-shadow: 0 0 25px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(0,229,195,0.4);
  color: #0d0f18;
}
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-bright);
}
.btn-secondary:hover {
  background: var(--primary-glow);
  color: var(--primary);
  border-color: var(--primary);
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow), var(--shadow-glow);
  max-width: 380px;
  width: 100%;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), transparent, var(--accent));
  opacity: 0.3;
  z-index: -1;
}
.hero-logo-big {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 0 40px var(--primary-glow);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-logo-big img { width: 100%; height: 100%; object-fit: cover; }
.welcome-bonus {
  background: linear-gradient(135deg, rgba(0,229,195,0.1), rgba(34,229,90,0.08));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
}
.bonus-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245,197,66,0.3);
  display: block;
}
.bonus-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* promo strip */
.promo-strip {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  padding: 14px 0;
  overflow: hidden;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.promo-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}
.promo-strip-item {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d0f18;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* titres de section */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  color: #fff;
  margin-bottom: 14px;
}
.section-header h2 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* grille de jeux */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  group: true;
}
.game-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px var(--primary-glow);
}
.game-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.game-thumb::after {
  content: 'JOUER';
  position: absolute;
  inset: 0;
  background: rgba(0,229,195,0.9);
  color: #0d0f18;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  letter-spacing: 0.1em;
}
.game-card:hover .game-thumb::after { opacity: 1; }
.game-info { padding: 14px; }
.game-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 4px;
}
.game-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: #0d0f18;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.game-badge.hot { background: #ff4757; }
.game-badge.new { background: var(--accent); }

/* features/avantages */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-glow), rgba(34,229,90,0.1));
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* bonus */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, var(--bg-card), rgba(0,229,195,0.05));
  box-shadow: 0 0 30px var(--primary-glow);
}
.bonus-card.featured::after {
  content: '⭐ POPULAIRE';
  position: absolute;
  top: 16px; right: -30px;
  background: var(--primary);
  color: #0d0f18;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.08em;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow), 0 0 30px rgba(0,229,195,0.1);
  border-color: var(--primary);
}
.bonus-icon { font-size: 2.8rem; margin-bottom: 16px; }
.bonus-card h3 {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.bonus-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.bonus-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.bonus-list {
  text-align: left;
  margin-bottom: 24px;
}
.bonus-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bonus-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* tableaux */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 32px 0;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.9rem;
}
.info-table thead th {
  background: linear-gradient(135deg, rgba(0,229,195,0.12), rgba(34,229,90,0.08));
  color: var(--primary);
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-bright);
}
.info-table tbody td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
  vertical-align: middle;
}
.info-table tbody tr:last-child td { border-bottom: none; }
.info-table tbody tr:hover td { background: rgba(0,229,195,0.04); }
.info-table .td-icon { font-size: 1.3rem; }
.info-table .td-good { color: var(--primary); font-weight: 600; }
.info-table .td-gold { color: var(--gold); font-weight: 700; }

/* paiements */
.payments-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}
.pay-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pay-badge:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-glow);
}
.pay-badge .pay-icon { font-size: 1.3rem; }

/* promo banner */
.promo-banner {
  background: linear-gradient(135deg, #0d1a2a 0%, #0a1a14 100%);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 48px 0;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,229,195,0.1), transparent 60%);
  pointer-events: none;
}
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; right: 15%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,229,90,0.08), transparent 60%);
  pointer-events: none;
}
.promo-banner-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 12px;
}
.promo-banner-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}
.promo-bonus-big {
  text-align: center;
  flex-shrink: 0;
}
.promo-bonus-big .amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(245,197,66,0.4);
  display: block;
  line-height: 1;
}
.promo-bonus-big .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  display: block;
}

/* avis/témoignages */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0d0f18;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.review-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* faq */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--primary-glow);
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #0d0f18; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* footer */
.site-footer {
  background: #080a12;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}
.responsible-gaming {
  background: linear-gradient(135deg, rgba(255,71,87,0.08), rgba(255,71,87,0.04));
  border: 1px solid rgba(255,71,87,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.responsible-gaming p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* listes stylisées */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-main);
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li::before {
  content: '◆';
  color: var(--primary);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.check-list li::before { content: '✓'; font-size: 0.85rem; margin-top: 2px; font-weight: 700; }

/* badges de confiance */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.trust-item .t-icon {
  font-size: 1.4rem;
  color: var(--primary);
}
.trust-item strong { color: #fff; }

/* fil d'Ariane */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 8px; opacity: 0.4; }

/* responsive tablet */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 360px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { gap: 24px; }
}

/* responsive mobile 768px */
@media (max-width: 768px) {
  /* Layout */
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 0.95rem; }

  /* Header & Nav */
  .site-header { padding: 10px 0; }
  .logo-img { height: 36px; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 12, 20, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 80px 24px 40px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    font-size: 1.2rem;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--border);
  }
  .nav-menu a:hover, .nav-menu a.active {
    background: var(--primary-glow);
    border-color: var(--primary);
  }
  .nav-cta {
    width: 100% !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    padding: 16px 32px !important;
    margin-top: 8px !important;
  }
  .nav-burger {
    display: flex;
    z-index: 1001;
    position: relative;
  }
  .nav-burger span { width: 26px; height: 2.5px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-content { padding: 40px 0 36px; gap: 28px; }
  .hero-text { text-align: center; }
  .hero-badge { margin: 0 auto 20px; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .hero-desc { font-size: 1rem; margin-bottom: 28px; }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { justify-content: center; gap: 20px; }
  .stat-num { font-size: 1.5rem; }
  .hero-card { max-width: 100%; padding: 28px 20px; }
  .hero-logo-big { width: 100px; height: 100px; }
  .bonus-amount { font-size: 1.8rem; }

  /* Promo strip */
  .promo-strip { padding: 10px 0; }
  .promo-strip-item { font-size: 0.78rem; }

  /* Games grid */
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; }
  .game-info { padding: 10px 12px; }
  .game-name { font-size: 0.82rem; }
  .game-provider { font-size: 0.7rem; }

  /* Features, Bonuses, Reviews */
  .features-grid,
  .bonuses-grid,
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px 20px; }
  .bonus-card { padding: 24px 20px; }
  .review-card { padding: 22px 18px; }

  /* Promo banner */
  .promo-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 20px;
    margin: 32px 0;
    gap: 24px;
  }
  .promo-bonus-big { order: -1; }
  .promo-bonus-big .amount { font-size: 2.4rem; }
  .promo-banner-text h2 { font-size: 1.3rem; }
  .promo-banner-text .btn { width: 100%; justify-content: center; }

  /* Tables */
  .table-wrapper { margin: 20px 0; border-radius: 10px; }
  .info-table { font-size: 0.82rem; }
  .info-table thead th { padding: 10px 12px; font-size: 0.72rem; }
  .info-table tbody td { padding: 10px 12px; }

  /* Payments */
  .payments-logos { gap: 8px; }
  .pay-badge { padding: 9px 14px; font-size: 0.8rem; }

  /* Trust bar */
  .trust-bar { padding: 18px 0; }
  .trust-items { gap: 16px; justify-content: center; }
  .trust-item { font-size: 0.78rem; gap: 8px; }
  .trust-item .t-icon { font-size: 1.2rem; }

  /* Footer */
  .site-footer { padding: 40px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom p { font-size: 0.73rem; }
  .responsible-gaming { flex-direction: column; align-items: flex-start; gap: 8px; }
  .responsible-gaming p { font-size: 0.75rem; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: 0.88rem; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }
  .faq-answer p { font-size: 0.85rem; }

  /* Misc */
  .hero-stats .stat-item:nth-child(n+5) { display: none; }
  .divider { margin: 12px auto 0; }
}

/* responsive 480px */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }

  /* Typography */
  h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  h3 { font-size: 1.05rem; }

  /* Hero */
  .hero-content { padding: 32px 0 28px; }
  .hero-badge { font-size: 0.68rem; padding: 5px 12px; }
  .hero-desc { font-size: 0.92rem; }
  .hero-logo-big { width: 85px; height: 85px; }
  .hero-card { padding: 22px 16px; border-radius: 16px; }
  .welcome-bonus { padding: 14px; }
  .bonus-amount { font-size: 1.6rem; }
  .bonus-text { font-size: 0.78rem; }

  /* Stats */
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.7rem; }

  /* Buttons */
  .btn { font-size: 0.9rem; padding: 12px 22px; }
  .hero-buttons .btn { font-size: 0.95rem; padding: 13px 24px; }

  /* Games */
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-thumb { font-size: 2.2rem; }

  /* Section header */
  .section-tag { font-size: 0.7rem; padding: 4px 12px; }
  .section-header { margin-bottom: 28px; }

  /* Cards */
  .feature-card { padding: 20px 16px; }
  .feature-icon { width: 46px; height: 46px; font-size: 1.3rem; }
  .bonus-card { padding: 20px 16px; }
  .bonus-value { font-size: 1.6rem; }
  .review-card { padding: 18px 14px; }

  /* Promo banner */
  .promo-banner { padding: 24px 16px; border-radius: 14px; margin: 24px 0; }
  .promo-bonus-big .amount { font-size: 2rem; }

  /* Table — switch to minimal on very small */
  .info-table thead th { padding: 8px 10px; font-size: 0.68rem; }
  .info-table tbody td { padding: 8px 10px; font-size: 0.78rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { margin-bottom: 4px; }

  /* Trust */
  .trust-items { gap: 14px; }
  .trust-item { flex-direction: column; text-align: center; gap: 4px; }
  .trust-item .t-icon { font-size: 1.4rem; }

  /* Payments */
  .pay-badge { padding: 8px 12px; font-size: 0.75rem; }
  .payments-logos { gap: 6px; }

  /* FAQ */
  .faq-question { padding: 14px 16px; font-size: 0.84rem; gap: 12px; }
  .faq-icon { width: 24px; height: 24px; font-size: 0.9rem; }
}

/* responsive 360px */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  h1 { font-size: 1.4rem; }
  .hero-badge { display: none; }
  .hero-logo-big { width: 72px; height: 72px; }
  .hero-card { padding: 18px 12px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .nav-menu a { font-size: 1rem; padding: 12px 20px; }
  .btn { font-size: 0.85rem; padding: 11px 18px; }
}

/* touch */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover-only effects that don't work on touch */
  .game-card:hover { transform: none; }
  .game-card:active { transform: scale(0.98); }
  .feature-card:hover { transform: none; }
  .bonus-card:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .btn-primary:active { transform: scale(0.97); }
  .nav-cta:hover { transform: none !important; }

  /* Always show game overlay on touch */
  .game-thumb::after { display: none; }

  /* Better tap targets */
  .nav-menu a { min-height: 48px; }
  .btn { min-height: 48px; }
  .faq-question { min-height: 56px; }
  .pay-badge { min-height: 44px; }
  .footer-col ul li a { min-height: 36px; display: inline-flex; align-items: center; }
}

/* paysage mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-content { padding: 28px 0; gap: 20px; }
  .nav-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 24px 24px;
    gap: 6px;
  }
  .nav-menu a { width: auto; font-size: 0.95rem; padding: 10px 18px; }
}

/* scroll shadow mobile */
.table-wrapper.has-scroll {
  box-shadow: inset -20px 0 20px -10px rgba(0,229,195,0.07);
}

/* print */
@media print {
  .site-header, .promo-strip, .promo-banner,
  .hero-particles, .nav-burger, .trust-bar { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 20px 0; }
}

/* animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* SR-ONLY (accessibility) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* PARTICLES */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
