/* ============================================================
   ParisChancePremium – Design System & Styles
   ============================================================ */

/* ---- Variables ------------------------------------------ */
:root {
  --bg:          #07101e;
  --surface:     #0e1c30;
  --surface-2:   #162640;
  --surface-3:   #1c3154;
  --border:      #1e3660;
  --border-light:#284878;

  --gold:        #c9a227;
  --gold-light:  #e8c547;
  --gold-dim:    #8a6e18;
  --gold-glow:   rgba(201,162,39,.18);

  --text:        #eef2f7;
  --text-2:      #94b4d4;
  --text-3:      #5a7a9a;

  --green:       #22c55e;
  --red:         #ef4444;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-card: 0 8px 40px rgba(0,0,0,.5);
  --shadow-gold: 0 0 32px rgba(201,162,39,.25);

  --transition:  .3s cubic-bezier(.4,0,.2,1);

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

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

/* ---- Typography ----------------------------------------- */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { line-height: 1.75; }

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

/* ---- Scrollbar ------------------------------------------ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 99px; }

/* ============================================================
   AGE GATE
   ============================================================ */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7,16,30,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
#age-gate.hidden { display: none; }

.age-gate-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: calc(100% - 2rem);
  text-align: center;
  box-shadow: var(--shadow-card);
  animation: scaleIn .4s var(--transition) both;
}
.age-gate-icon {
  width: 72px; height: 72px;
  background: var(--gold-glow);
  border: 2px solid var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}
.age-gate-card h2 { margin-bottom: .75rem; }
.age-gate-card p { color: var(--text-2); margin-bottom: 2rem; font-size: .95rem; }

.age-gate-buttons { display: flex; flex-direction: column; gap: .75rem; }
.btn-age-confirm {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #07101e;
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,162,39,.3);
}
.btn-age-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,.45);
}
.btn-age-deny {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-2);
  font-size: .9rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-age-deny:hover { border-color: var(--red); color: var(--red); }

.age-denied {
  display: none;
  text-align: center;
}
.age-denied h2 { color: var(--red); margin-bottom: 1rem; }
.age-denied p { color: var(--text-2); }
.age-denied.show { display: block; }
.age-gate-card.deny-mode > *:not(.age-denied) { display: none; }
.age-gate-card.deny-mode .age-denied { display: block; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 8888;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  width: calc(100% - 2rem);
  max-width: 740px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 1.5rem;
  animation: slideUp .5s var(--transition) both;
}
#cookie-banner.hidden { display: none; }
.cookie-text { flex: 1; font-size: .875rem; color: var(--text-2); }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #07101e;
  font-weight: 700;
  font-size: .875rem;
  padding: .6rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cookie-accept:hover { opacity: .9; transform: translateY(-1px); }
.btn-cookie-decline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-3);
  font-size: .875rem;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cookie-decline:hover { border-color: var(--text-2); color: var(--text-2); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(7,16,30,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: .65rem 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo span em { font-style: normal; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .9rem;
  color: var(--text-2);
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #07101e;
  font-weight: 700;
  font-size: .875rem;
  padding: .55rem 1.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column; gap: 0;
  background: rgba(7,16,30,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .85rem 2rem;
  color: var(--text-2);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-menu a:hover { color: var(--text); background: var(--surface); }
.mobile-menu .nav-cta {
  margin: .75rem 2rem 0;
  display: inline-block;
  text-align: center;
  border-radius: var(--radius);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
#hero-canvas {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(201,162,39,.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(14,28,48,.8) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 8rem 2rem 4rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 99px;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero-content h1 { text-shadow: 0 2px 24px rgba(0,0,0,.6); }
.hero-content h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  color: var(--text-2);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 600px;
}
.hero-stats {
  display: flex; gap: 2.5rem;
  flex-wrap: wrap; justify-content: center;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label { font-size: .78rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #07101e;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(201,162,39,.3);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(201,162,39,.45);
}
.btn-primary svg { transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateY(3px); }

.hero-scroll {
  margin-top: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text-3); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; }

.section-tag {
  display: inline-block;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-head { margin-bottom: 3.5rem; }
.section-head h2 { margin-bottom: .75rem; }
.section-head p { color: var(--text-2); max-width: 540px; font-size: 1.05rem; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--transition), transform .7s var(--transition);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============================================================
   PLATFORMS SECTION
   ============================================================ */
#plateformes {
  background: linear-gradient(to bottom, var(--bg), var(--surface) 30%, var(--surface) 70%, var(--bg));
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.platform-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-light);
}
.platform-card.rank-1 {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 1px var(--gold-dim), var(--shadow-card);
}
.platform-card.rank-1:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold), var(--shadow-card);
}

.ribbon {
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  overflow: hidden;
  z-index: 2;
}
.ribbon-inner {
  position: absolute;
  top: 14px; right: -22px;
  width: 96px;
  padding: .3rem 0;
  text-align: center;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: rotate(45deg);
  transform-origin: center;
}
.rank-1 .ribbon-inner { background: linear-gradient(135deg, #c9a227, #e8c547); color: #07101e; }
.rank-2 .ribbon-inner { background: linear-gradient(135deg, #b0b8c8, #d4dce8); color: #1a2234; }
.rank-3 .ribbon-inner { background: linear-gradient(135deg, #c87941, #e09060); color: #1a1208; }

.card-img {
  width: 100%; height: 160px;
  background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: .75rem;
  opacity: .9;
  transition: opacity var(--transition), transform var(--transition);
}
.platform-card:hover .card-img img { opacity: 1; transform: scale(1.04); }

.card-img-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--text-3);
  font-size: .8rem;
}
.card-img-placeholder svg { opacity: .4; }

.card-body { padding: 1.5rem; }

.card-brand { font-size: .75rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .4rem; }
.card-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: .75rem; }

.card-rating {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.stars { display: flex; gap: 2px; }
.star { color: var(--gold); font-size: 1rem; }
.star.half { color: var(--gold-dim); }
.rating-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating-label { font-size: .75rem; color: var(--text-3); }

.card-bonus {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  margin-bottom: 1.25rem;
}
.bonus-label { font-size: .7rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem; }
.bonus-text { font-size: .9rem; color: var(--text); font-weight: 600; line-height: 1.4; }

.card-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.feature-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--text-2);
}
.feature-icon { color: var(--green); font-size: .9rem; flex-shrink: 0; }

.payment-methods {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.payment-label { font-size: .75rem; color: var(--text-3); margin-right: .25rem; }
.pay-icon {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: .25rem .55rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .03em;
  transition: border-color var(--transition);
}
.pay-icon:hover { border-color: var(--gold-dim); }
.pay-visa { color: #1a1f71; background: #fff; }
.pay-mc { color: #eb001b; }
.pay-pp { color: #003087; }
.pay-sk { color: #7a5af8; }

.btn-cta {
  display: block; width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #07101e;
  font-weight: 700;
  font-size: .95rem;
  padding: .9rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,162,39,.2);
}
.btn-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,.4);
}
.rank-1 .btn-cta { background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: var(--shadow-gold); }

/* ============================================================
   POURQUOI NOUS
   ============================================================ */
#apropos { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-text p { color: var(--text-2); margin-bottom: 1.5rem; font-size: 1.05rem; }
.why-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.why-point {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.why-point:hover { border-color: var(--gold-dim); transform: translateX(4px); }
.why-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold-glow);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.why-point-text h4 { font-family: var(--font-head); font-size: 1rem; margin-bottom: .2rem; }
.why-point-text p { font-size: .875rem; color: var(--text-2); margin: 0; }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.metric-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.metric-card:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface), var(--surface-3));
  border-color: var(--gold-dim);
}
.metric-num {
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: .4rem;
}
.metric-label { font-size: .85rem; color: var(--text-2); }

/* ============================================================
   RESPONSIBLE GAMING BANNER
   ============================================================ */
#responsable {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #0f1a2e, #162640);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.responsible-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.resp-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.resp-content { flex: 1; min-width: 260px; }
.resp-content h3 { font-family: var(--font-head); color: var(--text); margin-bottom: .4rem; }
.resp-content p { color: var(--text-2); font-size: .9rem; }
.resp-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.resp-link {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  color: var(--green);
  font-size: .8rem; font-weight: 600;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.resp-link:hover { background: rgba(34,197,94,.15); border-color: var(--green); }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--bg); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold-dim); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .95rem; font-weight: 600; color: var(--text);
  transition: color var(--transition);
  background: none;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-arrow {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--gold-glow);
  border-color: var(--gold-dim);
  color: var(--gold);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-2); font-size: .9rem; line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050c18;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-head);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 1rem;
}
.footer-logo span em { font-style: normal; color: var(--gold); }
.footer-desc { color: var(--text-3); font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-age {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  color: var(--red);
  font-size: .8rem; font-weight: 700;
  padding: .4rem .9rem;
  border-radius: var(--radius-sm);
}
.footer-col h4 {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: var(--text-2); font-size: .875rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }

.footer-help-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-help-link {
  display: flex; align-items: center; gap: .5rem;
  color: var(--text-2); font-size: .8rem;
  transition: color var(--transition);
}
.footer-help-link:hover { color: var(--green); }
.footer-help-link svg { flex-shrink: 0; opacity: .6; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: var(--text-3); font-size: .8rem; }
.footer-copy a { color: var(--text-2); transition: color var(--transition); }
.footer-copy a:hover { color: var(--gold); }
.footer-disclaimer { color: var(--text-3); font-size: .75rem; max-width: 480px; line-height: 1.6; }

/* ============================================================
   SUBPAGE STYLES
   ============================================================ */
.subpage-hero {
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.subpage-hero .section-tag { margin-bottom: 1rem; }
.subpage-hero h1 { margin-bottom: 1rem; }
.subpage-hero .lead { color: var(--text-2); font-size: 1.1rem; max-width: 600px; }

.back-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--text-2);
  font-size: .875rem; font-weight: 500;
  padding: .55rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  margin-top: 1.5rem;
}
.back-btn:hover { border-color: var(--gold-dim); color: var(--gold); }

.subpage-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}
.content-section { margin-bottom: 3rem; }
.content-section h2 {
  font-size: 1.4rem;
  margin-bottom: .75rem;
  color: var(--gold);
  font-family: var(--font-head);
}
.content-section h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--text); }
.content-section p { color: var(--text-2); font-size: .95rem; line-height: 1.75; margin-bottom: 1rem; }
.content-section ul { color: var(--text-2); font-size: .95rem; padding-left: 1.5rem; }
.content-section ul li { margin-bottom: .5rem; line-height: 1.7; list-style: disc; }
.content-section .update-date {
  display: inline-block;
  font-size: .8rem; color: var(--text-3);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: .3rem .75rem;
  border-radius: 99px;
  margin-bottom: 2rem;
}
.info-box {
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.info-box p { margin: 0; font-size: .9rem; }
.warning-box {
  background: rgba(34,197,94,.06);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.warning-box p { margin: 0; font-size: .9rem; color: var(--text-2); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes scaleIn {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(24px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}
@keyframes scrollLine {
  0%   { height: 48px; opacity: 1; }
  50%  { height: 24px; opacity: .5; }
  100% { height: 48px; opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .platforms-grid .platform-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { position: fixed; top: 60px; left: 0; right: 0; z-index: 999; }

  .platforms-grid { grid-template-columns: 1fr; }
  .platforms-grid .platform-card:last-child { grid-column: auto; max-width: none; }
  .why-cards { grid-template-columns: 1fr; }
  .why-cards .metric-card:first-child { grid-column: auto; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  #cookie-banner { flex-direction: column; gap: 1rem; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions button { flex: 1; }

  section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .resp-links { flex-direction: column; }
  .responsible-inner { flex-direction: column; }
}
