/* =============================================
   GAGNERPROELITE.COM — GLOBAL STYLES
   ============================================= */

/* --- CUSTOM PROPERTIES --- */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e0c06a;
  --gold-dark:   #a07830;
  --navy:        #0f1923;
  --navy-mid:    #162030;
  --navy-light:  #1e2d3d;
  --slate:       #2c3e50;
  --silver:      #94a3b8;
  --silver-light:#cbd5e1;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --text-primary:#0f1923;
  --text-muted:  #64748b;
  --success:     #22c55e;
  --warning:     #f59e0b;
  --error:       #ef4444;
  --border:      rgba(201,168,76,0.15);
  --border-light:rgba(201,168,76,0.08);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* --- ACCENT COLOR --- */
.accent { color: var(--gold); }

/* --- SECTION COMMON --- */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}

.btn--silver {
  background: linear-gradient(135deg, #94a3b8 0%, #cbd5e1 50%, #94a3b8 100%);
  background-size: 200% auto;
  color: var(--navy);
}
.btn--silver:hover {
  background-position: right center;
  transform: translateY(-2px);
}

.btn--bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #e8a869 50%, #cd7f32 100%);
  background-size: 200% auto;
  color: var(--white);
}
.btn--bronze:hover {
  background-position: right center;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

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

.navbar.scrolled {
  background: rgba(15, 25, 35, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15), var(--shadow-md);
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
}

.navbar__nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity 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); }

/* Mobile nav */
@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
  .navbar__nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(15, 25, 35, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .navbar__nav.open { display: flex; }
  .nav-link { padding: 12px 16px; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

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

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(201,168,76,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0f1923 0%, #162030 60%, #0f1923 100%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.5); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.hero__stat { text-align: center; }

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

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

/* =============================================
   PLATFORMS SECTION
   ============================================= */
.platforms-section { background: var(--off-white); }

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

@media (max-width: 1024px) {
  .platforms-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

.platform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.platform-card--top {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 8px 40px rgba(201,168,76,0.15), var(--shadow-md);
}
.platform-card--top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.platform-card__ribbon {
  position: absolute;
  top: 20px; right: -32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 44px;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(201,168,76,0.4);
}

.platform-card__ribbon--silver {
  background: linear-gradient(135deg, #94a3b8, #cbd5e1);
}

.platform-card__ribbon--bronze {
  background: linear-gradient(135deg, #cd7f32, #e8a869);
  color: var(--white);
}

.platform-card__header {
  padding: 28px 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.platform-card__logo-wrap {
  width: 100px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.platform-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  padding: 4px;
  background: var(--gold-light);
}

.platform-card__rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

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

.star {
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
}
.star--half { opacity: 0.5; }

.platform-card__score {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.platform-card__score-max {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

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

.platform-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.platform-card__bonus {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.platform-card__bonus-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.platform-card__bonus-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.platform-card__bonus-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.platform-card__features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-card__features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
}

.platform-card__features li::first-letter { color: var(--success); font-weight: 700; }

.platform-card__payments {
  margin-bottom: 20px;
}

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

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

.payment-icon {
  width: 42px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
}

.platform-card__cta { margin-bottom: 12px; }

.platform-card__terms {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* =============================================
   WHY SECTION
   ============================================= */
.why-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-section .section-title { color: var(--white); }
.why-section .section-desc  { color: rgba(255,255,255,0.6); }
.why-section .section-tag   { background: rgba(201,168,76,0.12); }

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

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* =============================================
   RESPONSIBLE SECTION
   ============================================= */
.responsible-section { background: var(--off-white); padding: 64px 0; }

.responsible-banner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}

.responsible-banner__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(245,158,11,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.responsible-banner__content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.responsible-banner__content p {
  font-size: 0.9375rem;
  color: #92400e;
  line-height: 1.65;
  margin-bottom: 20px;
}

.responsible-banner__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.responsible-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #92400e;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.responsible-link:hover { color: var(--navy); }

.responsible-link--cta {
  background: var(--navy);
  color: var(--gold) !important;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
}
.responsible-link--cta:hover { background: var(--navy-light); color: var(--gold-light) !important; }

@media (max-width: 640px) {
  .responsible-banner { flex-direction: column; padding: 28px 24px; }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(15,25,35,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 4px 16px rgba(201,168,76,0.1);
}

.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(--navy);
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: rgba(201,168,76,0.04); }
.faq-question[aria-expanded="true"] { color: var(--gold-dark); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer.open { max-height: 400px; }

.faq-answer__inner {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

.footer__brand .navbar__logo { margin-bottom: 16px; }

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

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

.footer__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

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

@media (max-width: 640px) {
  .footer__nav { grid-template-columns: 1fr 1fr; }
}

.footer__nav-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.footer__nav-group a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__nav-group a:hover { color: var(--gold-light); }

.footer__disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   AGE GATE
   ============================================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate.hidden { display: none; }

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 22, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-gate__card {
  position: relative;
  z-index: 1;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: calc(100% - 48px);
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,168,76,0.1);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

.age-gate__site-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}

.age-gate__badge {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 2px solid rgba(201,168,76,0.3);
  width: 64px;
  height: 64px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.age-gate__card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.age-gate__card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 32px;
}

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

.age-gate__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35) !important;
  margin: 0 !important;
}
.age-gate__disclaimer a { color: var(--gold); text-decoration: underline; }

.age-gate__denied {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate__denied[hidden] {
  display: none;
}

.age-gate__denied-card {
  background: var(--navy-mid);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 400px;
  width: calc(100% - 48px);
  text-align: center;
  animation: slideUp 0.3s ease;
}

.denied-icon {
  font-size: 2.5rem;
  color: var(--error);
  margin-bottom: 16px;
}

.age-gate__denied-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.age-gate__denied-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 8000;
  width: calc(100% - 48px);
  max-width: 780px;
  animation: slideInUp 0.4s ease;
}

.cookie-banner[hidden] { display: none; }

@keyframes slideInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner__inner {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

@media (max-width: 640px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}

.cookie-banner__text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--white);
  margin-bottom: 4px;
}

.cookie-banner__text p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

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

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

/* =============================================
   SUBPAGES (politique-*, termes, jouez-*)
   ============================================= */
.subpage-main {
  padding-top: 72px;
}

.subpage-hero {
  background: var(--navy);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.subpage-hero .container { position: relative; z-index: 1; }

.subpage-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  transition: color var(--transition);
}
.subpage-hero__back:hover { color: var(--gold); }
.subpage-hero__back svg { flex-shrink: 0; }

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

.subpage-hero__meta {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}

.subpage-content {
  padding: 72px 0;
  max-width: 780px;
  margin: 0 auto;
}

.subpage-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 40px 0 12px;
}
.subpage-content h2:first-child { margin-top: 0; }

.subpage-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 8px;
}

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

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

.subpage-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.subpage-content strong { color: var(--navy); }

.subpage-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.subpage-content a:hover { color: var(--navy); }

.subpage-content .alert {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}

.subpage-content .alert p { color: #92400e; margin: 0; }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.platform-card.reveal { transition-delay: calc(var(--i, 0) * 0.1s); }
.why-card.reveal       { transition-delay: calc(var(--i, 0) * 0.08s); }

/* =============================================
   UTILITY
   ============================================= */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero__stats { gap: 28px; }
  .platform-card__header { flex-direction: column; align-items: flex-start; }
  .platform-card__rating { align-items: flex-start; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: center; }
  .footer__nav { grid-template-columns: 1fr; }
  .age-gate__card { padding: 32px 24px; }
}
