/* ============================================================
   PARIS GAGNANT ELITE CLUB — Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --bg:         #F7F4EE;
  --bg-card:    #FFFFFF;
  --bg-dark:    #0C1520;
  --bg-navy:    #132236;
  --bg-navy2:   #1D3354;

  --gold:       #C8922A;
  --gold-light: #E5B84A;
  --gold-pale:  #F0D98E;
  --gold-dark:  #9B6E1A;

  --text:       #0C1520;
  --text-muted: #5C6B7A;
  --text-light: #92A0AE;
  --text-white: #F7F4EE;

  --border:      #E0D9CE;
  --border-gold: rgba(200,146,42,.3);

  --shadow-sm: 0 2px 8px rgba(12,21,32,.06);
  --shadow-md: 0 6px 24px rgba(12,21,32,.10);
  --shadow-lg: 0 16px 48px rgba(12,21,32,.15);
  --shadow-xl: 0 24px 64px rgba(12,21,32,.20);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease:       cubic-bezier(.25,.46,.45,.94);
  --transition: .3s var(--ease);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  --navbar-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,146,42,.1);
  border: 1px solid rgba(200,146,42,.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* --- Reveal animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   AGE GATE
   ============================================================ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,21,32,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px;
  transition: opacity .5s var(--ease);
}
#age-gate.hidden { opacity: 0; pointer-events: none; }

.age-gate-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.age-gate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.age-gate-card.hidden-card { display: none; }

.age-gate-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(200,146,42,.3);
}
.age-gate-icon svg { width: 34px; height: 34px; fill: white; }
.age-gate-card h2 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 10px;
}
.age-gate-card p {
  color: var(--text-muted);
  font-size: .93rem;
  margin-bottom: 30px;
  line-height: 1.65;
}
.age-gate-actions { display: flex; flex-direction: column; gap: 10px; }

.btn-age-yes {
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  font-weight: 700;
  font-size: .97rem;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200,146,42,.35);
  letter-spacing: .02em;
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,42,.45); }
.btn-age-no {
  padding: 13px 24px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  font-size: .88rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-age-no:hover { border-color: var(--text-muted); color: var(--text); }
.age-gate-disclaimer {
  font-size: .73rem;
  color: var(--text-light);
  margin-top: 18px;
  line-height: 1.6;
}

/* Access denied card */
#access-denied {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 52px 44px;
  max-width: 400px;
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
#access-denied.show { display: flex; }
.denied-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #FEE2E2;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.denied-icon svg { width: 30px; height: 30px; stroke: #DC2626; fill: none; stroke-width: 2; }
#access-denied h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--bg-dark);
  margin-bottom: 10px;
}
#access-denied p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8888;
  background: var(--bg-dark);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  border-top: 2px solid var(--gold);
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
}
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-accept {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  font-weight: 600;
  font-size: .86rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.btn-cookie-accept:hover { opacity: .9; }
.btn-cookie-decline {
  padding: 10px 18px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.38); color: white; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.navbar.at-top { background: transparent; }
.navbar.scrolled {
  background: rgba(12,21,32,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(200,146,42,.35);
  flex-shrink: 0;
}
.navbar-logo-icon svg { width: 22px; height: 22px; fill: white; }
.navbar-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.15;
}
.navbar-logo-text span { color: var(--gold-light); }

.navbar-nav { display: flex; align-items: center; gap: 2px; }
.navbar-nav a {
  padding: 8px 13px;
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .01em;
}
.navbar-nav a:hover { color: white; background: rgba(255,255,255,.08); }
.navbar-cta {
  padding: 9px 20px !important;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: white !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(200,146,42,.35);
}
.navbar-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(200,146,42,.45) !important;
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 3px;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar-hamburger span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0; right: 0;
  background: rgba(12,21,32,.97);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 2px;
  z-index: 999;
  border-bottom: 1px solid rgba(200,146,42,.18);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 16px;
  color: rgba(255,255,255,.82);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: .95rem;
}
.mobile-menu a:hover { color: white; background: rgba(255,255,255,.07); }
.mobile-menu .m-cta {
  margin-top: 6px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(158deg, var(--bg-dark) 0%, var(--bg-navy) 55%, #1D3A6A 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--navbar-h));
  padding-top: var(--navbar-h);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.hero-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(200,146,42,.35) 0%, transparent 70%);
  top: -140px; right: -80px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(32,96,200,.28) 0%, transparent 70%);
  bottom: -60px; left: 8%;
  animation: orbFloat 9s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(229,184,74,.2) 0%, transparent 70%);
  top: 38%; left: 48%;
  animation: orbFloat 15s ease-in-out infinite alternate;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(18px, 28px) scale(1.06); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,146,42,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,42,.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(200,146,42,.1);
  border: 1px solid rgba(200,146,42,.28);
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.7); }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.03rem;
  color: rgba(255,255,255,.65);
  line-height: 1.78;
  margin-bottom: 34px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: white;
  font-weight: 700;
  font-size: .97rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(200,146,42,.4);
  transition: var(--transition);
  letter-spacing: .02em;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(200,146,42,.5); }
.btn-primary svg { width: 17px; height: 17px; fill: white; transition: transform .25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .92rem;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-secondary:hover { color: white; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.05); }

.hero-stats {
  display: flex;
  gap: 26px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat-num span { color: var(--gold-light); }
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero visual right */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-ring {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(200,146,42,.06);
  border: 1px solid rgba(200,146,42,.12);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgba(200,146,42,.14);
  animation: rotateSlow 50s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }
.hero-ring-inner {
  width: 210px; height: 210px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200,146,42,.12), rgba(200,146,42,.04));
  border: 1px solid rgba(200,146,42,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 84px;
  filter: drop-shadow(0 8px 20px rgba(200,146,42,.35));
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.float-card-a { top: 5px; right: -24px; animation: floatY 4s ease-in-out infinite alternate; }
.float-card-b { bottom: 22px; left: -28px; animation: floatY 5s ease-in-out infinite alternate-reverse; }
@keyframes floatY {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.float-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.float-label { font-size: .75rem; color: rgba(255,255,255,.55); }
.float-value { font-size: .88rem; font-weight: 700; color: white; }

/* ============================================================
   PLATFORMS SECTION
   ============================================================ */
#plateformes {
  padding: 96px 0;
  background: var(--bg);
}
.platforms-header { text-align: center; margin-bottom: 52px; }
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.platform-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.platform-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.platform-card.rank-1 {
  border-color: rgba(200,146,42,.55);
  box-shadow: 0 8px 32px rgba(200,146,42,.12), var(--shadow-md);
}

.rank-ribbon {
  position: absolute;
  top: 16px; left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px 6px 12px;
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: white;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  z-index: 2;
}
.rank-ribbon svg { width: 11px; height: 11px; fill: currentColor; }
.rank-1 .rank-ribbon { background: linear-gradient(90deg, #9B6E1A, #C8922A); }
.rank-2 .rank-ribbon { background: linear-gradient(90deg, #60707E, #8FA0AE); }
.rank-3 .rank-ribbon { background: linear-gradient(90deg, #7A4E28, #B07848); }

.platform-top-bar { height: 4px; }
.rank-1 .platform-top-bar { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.rank-2 .platform-top-bar { background: linear-gradient(90deg, #60707E, #8FA0AE); }
.rank-3 .platform-top-bar { background: linear-gradient(90deg, #7A4E28, #B07848); }

.platform-logo-area {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #0d1520;
  overflow: hidden;
}
.logo-netbet  { background: #0d1520; }
.logo-pmu     { background: #0d1520; }
.logo-winamax { background: #0d1520; }

.platform-logo-img {
  max-width: 75%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.platform-body { padding: 22px; }

.platform-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.stars { display: flex; gap: 2px; }
.star { font-size: .95rem; color: var(--gold-light); line-height: 1; }
.rating-num {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1;
}
.rating-max { font-size: .78rem; color: var(--text-light); }

.platform-bonus {
  background: linear-gradient(135deg, rgba(200,146,42,.07), rgba(200,146,42,.02));
  border: 1px solid rgba(200,146,42,.18);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin-bottom: 14px;
}
.bonus-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 5px;
}
.bonus-text {
  font-size: .93rem;
  font-weight: 600;
  color: var(--bg-dark);
  line-height: 1.4;
}

.payment-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pay-lbl {
  font-size: .7rem;
  color: var(--text-muted);
  margin-right: 2px;
}
.pay-badge {
  height: 24px;
  padding: 0 7px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: #f9f9f9;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}
.pay-visa    { color: #1A1F71; }
.pay-mc      { color: #C00; }
.pay-paypal  { color: #003087; }
.pay-skrill  { color: #7C00BE; }

.btn-get-bonus {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  font-weight: 700;
  font-size: .93rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .02em;
}
.rank-1 .btn-get-bonus {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  box-shadow: 0 4px 16px rgba(200,146,42,.3);
}
.rank-1 .btn-get-bonus:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,42,.44); }
.rank-2 .btn-get-bonus,
.rank-3 .btn-get-bonus { background: var(--bg-dark); color: white; }
.rank-2 .btn-get-bonus:hover,
.rank-3 .btn-get-bonus:hover { background: var(--bg-navy); transform: translateY(-2px); }

.card-note {
  font-size: .7rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 9px;
}

/* ============================================================
   POURQUOI NOUS
   ============================================================ */
#apropos {
  padding: 96px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
#apropos::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,146,42,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,42,.028) 1px, transparent 1px);
  background-size: 52px 52px;
}
#apropos .section-title { color: white; }
#apropos .section-sub { color: rgba(255,255,255,.5); }
.why-intro { margin-bottom: 52px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(200,146,42,.15); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(200,146,42,.12);
  border: 1px solid rgba(200,146,42,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.why-card p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ============================================================
   RESPONSIBLE GAMING
   ============================================================ */
.section-responsible {
  padding: 56px 0;
  background: #FFFBF0;
  border-top: 1px solid #F5E0A0;
  border-bottom: 1px solid #F5E0A0;
}
.responsible-box {
  display: flex;
  align-items: center;
  gap: 26px;
  background: white;
  border: 1.5px solid #F0C030;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(240,192,48,.12);
}
.resp-icon-wrap {
  flex-shrink: 0;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5C842, #E8A020);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(232,160,32,.28);
}
.resp-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #6B3C00;
  margin-bottom: 7px;
}
.resp-content p { font-size: .88rem; color: #7A5010; line-height: 1.65; }
.resp-content a { color: #9B6E1A; font-weight: 600; text-decoration: underline; }

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: 96px 0;
  background: var(--bg);
}
.faq-container { max-width: 740px; margin: 52px auto 0; }
.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open {
  border-color: rgba(200,146,42,.38);
  box-shadow: 0 4px 20px rgba(200,146,42,.09);
}
.faq-question {
  width: 100%;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  background: none;
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: rgba(200,146,42,.025); }
.faq-q-text {
  font-size: .97rem;
  font-weight: 600;
  color: var(--bg-dark);
  flex: 1;
  line-height: 1.4;
}
.faq-chevron {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: transform .3s var(--ease), border-color .25s, background .25s, color .25s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}
.faq-chevron svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 22px 22px;
  border-top: 1px solid var(--border);
  margin: 0 22px;
  padding-top: 16px;
  font-size: .91rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.55);
  padding: 68px 0 0;
  border-top: 1px solid rgba(200,146,42,.12);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 18px; height: 18px; fill: white; }
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: white;
}
.footer-logo-text span { color: var(--gold-light); }
.footer-about {
  font-size: .86rem;
  line-height: 1.75;
  color: rgba(255,255,255,.42);
  margin-bottom: 18px;
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.28);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 700;
  color: #FCA5A5;
}

.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.footer-links, .footer-help { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .86rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-help a {
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-help a::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.footer-help a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.28); }
.footer-disc {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
  max-width: 460px;
  line-height: 1.6;
  text-align: right;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(200,146,42,.35);
  z-index: 7000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   SUB-PAGES
   ============================================================ */
.subpage-hero {
  background: linear-gradient(158deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
  padding: 64px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,146,42,.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,42,.036) 1px, transparent 1px);
  background-size: 50px 50px;
}
.subpage-hero .section-tag { position: relative; }
.subpage-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: white;
  position: relative;
  margin-bottom: 12px;
}
.subpage-hero-sub {
  color: rgba(255,255,255,.5);
  font-size: .97rem;
  position: relative;
}
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(200,146,42,.1);
  border: 1px solid rgba(200,146,42,.24);
  color: var(--gold-light);
  font-weight: 600;
  font-size: .86rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  margin-bottom: 24px;
}
.btn-back:hover { background: rgba(200,146,42,.18); }
.btn-back svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.subpage-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 90px;
}
.subpage-update {
  display: inline-block;
  padding: 7px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.subpage-body h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin: 36px 0 12px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--border);
}
.subpage-body h2:first-of-type { margin-top: 0; }
.subpage-body p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.subpage-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.subpage-body ul li {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}
.subpage-body strong { color: var(--bg-dark); }
.subpage-body a { color: var(--gold-dark); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .platforms-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-disc { text-align: left; }
}
@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .navbar-nav { display: none; }
  .navbar-hamburger { display: flex; }
  .responsible-box { flex-direction: column; text-align: center; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; padding: 11px 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .platform-body { padding: 16px; }
  .age-gate-card { padding: 36px 22px; }
  .subpage-body { padding: 40px 16px 64px; }
}
