/* ============================================
   PARIS REWARD NATION — style.css
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg-base: #07091a;
  --bg-surface: #0c102a;
  --bg-card: #111633;
  --bg-card-hover: #161d3f;
  --primary-gold: #d4a843;
  --primary-gold-light: #f0c060;
  --primary-gold-dark: #a8832e;
  --accent-red: #c1272d;
  --accent-blue: #1e3a7e;
  --color-silver: #9baec8;
  --color-bronze: #cd7f32;
  --text-primary: #eef2ff;
  --text-secondary: #8899bb;
  --text-muted: #4a5580;
  --border-subtle: rgba(212, 168, 67, 0.15);
  --border-card: rgba(255, 255, 255, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(212, 168, 67, 0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

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

.hidden { display: none !important; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: 0.875rem; }
.btn--full { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
  color: #0a0d1e;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.5);
  background: linear-gradient(135deg, #ffd470 0%, var(--primary-gold-light) 100%);
}

.btn--silver {
  background: linear-gradient(135deg, #c8d8e8 0%, var(--color-silver) 100%);
  color: #0a0d1e;
  box-shadow: 0 4px 20px rgba(155, 174, 200, 0.3);
}
.btn--silver:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155, 174, 200, 0.45);
}

.btn--bronze {
  background: linear-gradient(135deg, #e8a050 0%, var(--color-bronze) 100%);
  color: #0a0d1e;
  box-shadow: 0 4px 20px rgba(205, 127, 50, 0.3);
}
.btn--bronze:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(205, 127, 50, 0.45);
}

.btn--outline {
  border: 1.5px solid rgba(212, 168, 67, 0.5);
  color: var(--primary-gold-light);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.btn--outline-light {
  border: 1.5px solid rgba(238, 242, 255, 0.35);
  color: var(--text-primary);
  background: transparent;
  flex-shrink: 0;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(238, 242, 255, 0.6);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* --- Logo --- */
.logo-icon {
  width: 24px;
  height: 28px;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.logo-text, .navbar__logo > span, .footer__logo > span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.logo-accent { color: var(--primary-gold); }

/* --- Age Gate --- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(12, 16, 42, 0.97) 0%, rgba(7, 9, 26, 0.99) 100%);
  backdrop-filter: blur(12px);
}

.age-gate__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation: fadeInScale 0.5s var(--transition-slow) both;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.age-gate__logo .logo-icon { width: 28px; height: 34px; }

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
  color: #0a0d1e;
  font-weight: 800;
  font-size: 1.125rem;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(212, 168, 67, 0.4);
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.age-gate__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.age-gate__question {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.age-gate__disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.age-gate__disclaimer a {
  color: var(--primary-gold);
  text-decoration: underline;
}

/* --- Access Denied --- */
.access-denied {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
  padding: 24px;
}

.access-denied__card {
  text-align: center;
  max-width: 420px;
}

.access-denied__icon {
  font-size: 4rem;
  color: var(--accent-red);
  margin-bottom: 20px;
  display: block;
}

.access-denied__card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.access-denied__card p {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 16px 24px;
  animation: slideUp 0.4s ease both;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-secondary);
  min-width: 240px;
}

.cookie-banner__text strong { color: var(--text-primary); }

.cookie-banner__text a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 9, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--transition);
}
.navbar__logo:hover { opacity: 0.85; }

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

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  background: rgba(7, 9, 26, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 8px 24px 16px;
  gap: 4px;
}

.navbar__mobile.open {
  display: flex;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1e3a7e, transparent);
  top: -150px;
  right: -100px;
  animation: drift1 18s ease-in-out infinite alternate;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.5), transparent);
  bottom: -100px;
  left: -80px;
  animation: drift2 22s ease-in-out infinite alternate;
}

.hero__orb--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(193, 39, 45, 0.3), transparent);
  top: 40%;
  left: 40%;
  animation: drift3 15s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-60px, 80px) scale(1.1); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1.1); }
  to { transform: translate(70px, -50px) scale(1); }
}
@keyframes drift3 {
  from { transform: translate(0, 0); }
  to { transform: translate(-40px, 60px); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary-gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-gold);
  box-shadow: 0 0 8px var(--primary-gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-gold-light);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

.stat__divider {
  width: 1px;
  height: 36px;
  background: var(--border-card);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--primary-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* --- Section Commons --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Platforms Section --- */
.platforms {
  padding: 100px 0;
  background: var(--bg-surface);
  position: relative;
}

.platforms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* --- Platform Card --- */
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: visible;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 255, 255, 0.1);
}

.platform-card--featured {
  border-color: rgba(212, 168, 67, 0.35);
  box-shadow: 0 0 0 1px rgba(212, 168, 67, 0.15), var(--shadow-card);
}

.platform-card--featured:hover {
  border-color: rgba(212, 168, 67, 0.6);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: -1px;
  left: 20px;
  z-index: 2;
  padding: 6px 14px 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  letter-spacing: 0.02em;
}

.ribbon--gold {
  background: linear-gradient(180deg, var(--primary-gold-light), var(--primary-gold));
  color: #0a0d1e;
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.4);
}

.ribbon--silver {
  background: linear-gradient(180deg, #d0dde8, var(--color-silver));
  color: #0a0d1e;
}

.ribbon--bronze {
  background: linear-gradient(180deg, #e8a050, var(--color-bronze));
  color: #0a0d1e;
}

.platform-card__top {
  padding: 28px 24px 0;
}

.platform-card__img-wrap {
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 12px 20px;
}

.platform-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.platform-card__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.1rem;
  line-height: 1;
}

.star--full { color: var(--primary-gold); }

.star--half {
  color: var(--primary-gold);
  opacity: 0.55;
}

.score {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-gold-light);
  line-height: 1;
}

.score__max {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}

.platform-card__body {
  padding: 16px 24px;
  flex: 1;
}

.platform-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.bonus-box {
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
}

.bonus-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

.bonus-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.platform-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.platform-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.check {
  color: #4caf82;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.payment-methods { margin-top: 16px; }

.payment-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 8px;
  width: 52px;
  height: 30px;
  transition: background var(--transition);
}

.payment-icon:hover { background: rgba(255, 255, 255, 0.12); }

.payment-icon svg {
  width: 36px;
  height: 16px;
}

.platform-card__footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-card);
}

.platform-card__terms {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.platforms__disclaimer {
  margin-top: 36px;
  padding: 16px 20px;
  background: rgba(193, 39, 45, 0.08);
  border: 1px solid rgba(193, 39, 45, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* --- Pourquoi Nous --- */
.pourquoi {
  padding: 100px 0;
  background: var(--bg-base);
  position: relative;
}

.pourquoi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pourquoi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.pourquoi-card:hover {
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pourquoi-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-gold);
}

.pourquoi-card__icon svg {
  width: 24px;
  height: 24px;
}

.pourquoi-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pourquoi-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Responsible --- */
.responsible {
  padding: 60px 0;
  background: var(--bg-surface);
}

.responsible__inner {
  background: linear-gradient(135deg, rgba(193, 39, 45, 0.12) 0%, rgba(7, 9, 26, 0.6) 100%);
  border: 1px solid rgba(193, 39, 45, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.responsible__icon {
  width: 60px;
  height: 60px;
  background: rgba(193, 39, 45, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e85c5c;
  flex-shrink: 0;
}

.responsible__icon svg {
  width: 30px;
  height: 30px;
}

.responsible__content { flex: 1; }

.responsible__content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.responsible__content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.responsible__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.responsible__link {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.responsible__link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

/* --- FAQ --- */
.faq {
  padding: 100px 0;
  background: var(--bg-base);
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item.open {
  border-color: rgba(212, 168, 67, 0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition), background var(--transition);
}

.faq__question:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary-gold-light);
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq__icon svg { width: 20px; height: 20px; }

.faq__item.open .faq__icon {
  transform: rotate(180deg);
  color: var(--primary-gold);
}

.faq__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq__item.open .faq__answer { display: block; }

.faq__answer a {
  color: var(--primary-gold);
  text-decoration: underline;
}

/* --- Footer --- */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-card);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  width: fit-content;
}

.footer__about {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer__disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(193, 39, 45, 0.06);
  border: 1px solid rgba(193, 39, 45, 0.2);
  border-radius: var(--radius-sm);
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 22px;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 4px;
  flex-shrink: 0;
}

.footer__disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__nav-group h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-card);
}

.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-group a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  line-height: 1.4;
}

.footer__nav-group a:hover { color: var(--primary-gold-light); }

.footer__bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__bottom p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.footer__legal-note { font-size: 0.775rem !important; }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* --- Subpage Styles --- */
.subpage-main {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 80vh;
}

.subpage-hero {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-base) 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 56px;
}

.subpage-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  transition: color var(--transition);
}

.subpage-hero .back-link:hover { color: var(--primary-gold-light); }

.subpage-hero .back-link svg {
  width: 16px;
  height: 16px;
}

.subpage-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.subpage-hero .subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.subpage-hero .update-date {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-card);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-gold-light);
  margin: 24px 0 8px;
}

.prose p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose ul li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.prose a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.prose a:hover { color: var(--primary-gold-light); }

.prose strong { color: var(--text-primary); }

.prose .highlight-box {
  background: rgba(212, 168, 67, 0.07);
  border-left: 3px solid var(--primary-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.prose .warning-box {
  background: rgba(193, 39, 45, 0.07);
  border-left: 3px solid var(--accent-red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}

/* --- Favicon SVG (inline reference) --- */

/* --- Responsive --- */
@media (max-width: 1024px) {
  .platforms__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .responsible__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__toggle { display: flex; }

  .hero__content { max-width: 100%; }
  .hero__title { font-size: 2.25rem; }
  .hero__cta { flex-direction: column; }

  .hero__stats { width: 100%; justify-content: center; flex-wrap: wrap; gap: 16px; }
  .stat { padding: 0 16px; }
  .stat__divider { display: none; }

  .platforms__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .responsible__inner {
    padding: 28px 24px;
  }

  .subpage-hero { padding: 40px 0 28px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; align-items: flex-start; }
  .hero__badge { font-size: 0.75rem; }

  .age-gate__card { padding: 36px 24px; }
  .age-gate__title { font-size: 1.5rem; }

  .cookie-banner__inner { flex-direction: column; gap: 14px; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}
