/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --navy:        #0D1B2A;
  --navy-light:  #132236;
  --navy-mid:    #1B2F45;
  --gold:        #D4A843;
  --gold-light:  #F0C965;
  --gold-dim:    #9E7B2E;
  --red:         #C41E3A;
  --red-light:   #E8294A;
  --white:       #FFFFFF;
  --off-white:   #F8F4EE;
  --gray-100:    #F2EEE8;
  --gray-300:    #C8C0B4;
  --gray-500:    #8892A0;
  --gray-700:    #4A5568;
  --success:     #1A9E5F;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.12);
  --shadow-md:   0 8px 32px rgba(0,0,0,.18);
  --shadow-lg:   0 20px 64px rgba(0,0,0,.28);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.hidden { display: none !important; }
.text--gold { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: .3px;
  white-space: nowrap;
}

.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: .875rem; }
.btn--full { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(212,168,67,.35);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,.45);
}
.btn--gold:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,67,.08);
}

.btn--ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,30,58,.35);
}
.btn--red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,30,58,.45);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(13,27,42,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,168,67,.15);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13,27,42,.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar__logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.navbar__logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.navbar__logo-text span { color: var(--gold); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar__nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.navbar__nav a:hover {
  color: var(--gold);
  background: rgba(212,168,67,.1);
}

.navbar__cta { margin-left: 8px; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.navbar__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 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-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(212,168,67,.15);
  gap: 4px;
}
.navbar__mobile-menu.open { display: flex; }
.navbar__mobile-menu a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar__mobile-menu a:hover { color: var(--gold); background: rgba(212,168,67,.1); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding: 96px 0; }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,.12);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(212,168,67,.25);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__desc {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: 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% -10%, rgba(212,168,67,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(196,30,58,.12) 0%, transparent 50%),
    linear-gradient(160deg, #0D1B2A 0%, #132236 50%, #0D1B2A 100%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,168,67,.25);
  animation: float linear infinite;
}
.p1 { width:4px; height:4px; left:10%; top:80%; animation-duration:14s; animation-delay:0s; }
.p2 { width:6px; height:6px; left:25%; top:60%; animation-duration:18s; animation-delay:-3s; }
.p3 { width:3px; height:3px; left:40%; top:90%; animation-duration:12s; animation-delay:-6s; }
.p4 { width:5px; height:5px; left:60%; top:70%; animation-duration:20s; animation-delay:-9s; }
.p5 { width:4px; height:4px; left:75%; top:85%; animation-duration:16s; animation-delay:-2s; }
.p6 { width:7px; height:7px; left:85%; top:50%; animation-duration:22s; animation-delay:-7s; }
.p7 { width:3px; height:3px; left:15%; top:40%; animation-duration:15s; animation-delay:-4s; }
.p8 { width:5px; height:5px; left:50%; top:30%; animation-duration:19s; animation-delay:-11s; }

@keyframes float {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  padding-bottom: 80px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,.1);
  border: 1px solid rgba(212,168,67,.3);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

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

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 32px;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.hero__stat-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  white-space: nowrap;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

.hero__scroll-cta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 2px solid rgba(212,168,67,.4);
  border-radius: 50%;
  transition: var(--transition);
}
.hero__scroll-cta:hover { border-color: var(--gold); }
.hero__scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(4px); }
}

/* ============================================================
   PLATFORM CARDS
   ============================================================ */
.platforms { background: #0A0A18; }
.platforms .section__tag  { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.05); }
.platforms .section__title { color: var(--white); }
.platforms .section__desc  { color: rgba(255,255,255,.55); }
.platforms__disclaimer { color: rgba(255,255,255,.35); }
.platforms__disclaimer svg path, .platforms__disclaimer svg circle { stroke: rgba(255,255,255,.3); }

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

.platform-card {
  background: #12122A;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0,0,0,.7);
}

.platform-card--featured {
  border: 1.5px solid rgba(110,80,220,.6);
  box-shadow: 0 0 0 1px rgba(110,80,220,.2), 0 8px 40px rgba(110,80,220,.25);
}
.platform-card--featured:hover {
  box-shadow: 0 0 0 1px rgba(110,80,220,.35), 0 16px 60px rgba(110,80,220,.35);
}

/* RANK BADGE */
.platform-card__rank {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 4;
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1;
}
.platform-card__rank--gold   { background: #D4A843; color: #0A0A18; }
.platform-card__rank--silver { background: #9BA4B0; color: #0A0A18; }
.platform-card__rank--bronze { background: #B8804A; color: #0A0A18; }

/* LOGO AREA */
.platform-card__logo-area {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D0D20;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.platform-card__logo-area img {
  max-height: 90px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.6));
  transition: transform .4s ease;
}
.platform-card:hover .platform-card__logo-area img { transform: scale(1.05); }

/* CARD BODY */
.platform-card__body { padding: 20px 20px 12px; }

.platform-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.rating__score {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.rating__stars { display: flex; gap: 3px; }
.star {
  color: var(--gold);
  font-size: 1.1rem;
}
.star--half { opacity: .45; }

.platform-card__bonus-text {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  margin-bottom: 18px;
}

/* PAYMENTS BOX */
.platform-card__payments {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payments__label {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .3px;
}
.payments__icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border-radius: 5px;
  font-size: .7rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.1);
}
.payment-icon--visa {
  width: 48px;
  background: transparent;
  color: rgba(255,255,255,.6);
  font-style: italic;
  font-size: .8rem;
  letter-spacing: 1px;
}
.payment-icon--mc {
  width: 40px;
  background: transparent;
  position: relative;
  overflow: visible;
  gap: 0;
}
.mc-l, .mc-r {
  width: 17px; height: 17px;
  border-radius: 50%;
  position: absolute;
}
.mc-l { background: #EB001B; left: 3px; }
.mc-r { background: #F79E1B; right: 3px; }
.payment-icon--paypal {
  width: 36px;
  background: transparent;
  color: #60A5FA;
  font-size: 1.1rem;
  font-weight: 700;
}
.payment-icon--skrill {
  background: transparent;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3px;
  width: 46px;
}

/* CARD FOOTER */
.platform-card__footer {
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.platform-card__tac {
  font-size: .65rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

/* VIOLET CTA BUTTON */
.btn--violet {
  background: linear-gradient(135deg, #6E50DC 0%, #8B6EF0 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: 0 4px 20px rgba(110,80,220,.4);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.btn--violet:hover {
  background: linear-gradient(135deg, #7B5FE8 0%, #9A80F5 100%);
  box-shadow: 0 6px 28px rgba(110,80,220,.6);
  transform: translateY(-1px);
}

.platforms__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  justify-content: center;
  margin-top: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--navy); }
.why-us .section__title { color: var(--white); }
.why-us .section__desc { color: rgba(255,255,255,.65); }

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

.why-us__card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(212,168,67,.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.why-us__card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(212,168,67,.35);
  transform: translateY(-4px);
}

.why-us__icon {
  width: 56px; height: 56px;
  background: rgba(212,168,67,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-us__card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-us__card p {
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIBLE BANNER
   ============================================================ */
.responsible-banner {
  background: linear-gradient(135deg, #1a0509, #2a0810);
  padding: 64px 0;
  border-top: 1px solid rgba(196,30,58,.3);
  border-bottom: 1px solid rgba(196,30,58,.3);
}

.responsible-banner__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(196,30,58,.1);
  border: 1px solid rgba(196,30,58,.3);
  border-radius: var(--radius);
  padding: 36px 40px;
  flex-wrap: wrap;
}

.responsible-banner__icon { flex-shrink: 0; }

.responsible-banner__content { flex: 1; min-width: 260px; }
.responsible-banner__content h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.responsible-banner__content p {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

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

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

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .975rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.faq__question:hover { color: var(--gold-dim); }
.faq__question[aria-expanded="true"] { color: var(--gold-dim); }

.faq__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gray-500);
  border-radius: 2px;
  transition: var(--transition);
}
.faq__icon::before { width: 10px; height: 2px; }
.faq__icon::after  { width: 2px; height: 10px; }

.faq__question[aria-expanded="true"] .faq__icon {
  border-color: var(--gold);
  background: rgba(212,168,67,.1);
  transform: rotate(45deg);
}
.faq__question[aria-expanded="true"] .faq__icon::before,
.faq__question[aria-expanded="true"] .faq__icon::after { background: var(--gold); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq__answer.open { max-height: 400px; }

.faq__answer-inner {
  padding: 0 24px 22px;
  border-top: 1px solid var(--gray-100);
}
.faq__answer-inner p {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.75;
  padding-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(212,168,67,.15);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer__brand-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.footer__brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer__brand-name span { color: var(--gold); }

.footer__about {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__disclaimer {
  font-size: .76rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,168,67,.2);
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__links a:hover { color: var(--gold); }
.footer__links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold-dim);
  border-radius: 50%;
  opacity: .6;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copyright {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer__age-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(196,30,58,.6);
  color: var(--red-light);
  font-size: .7rem;
  font-weight: 700;
}

/* ============================================================
   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: rgba(6,12,22,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.age-gate__card {
  position: relative;
  z-index: 1;
  background: var(--navy-light);
  border: 1px solid rgba(212,168,67,.25);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  animation: slideUp .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.age-gate__emblem { margin-bottom: 24px; }
.age-gate__emblem--red svg circle { stroke: var(--red); }
.age-gate__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.age-gate__text {
  font-size: .9rem;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  margin-bottom: 32px;
}
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.age-gate__disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}
.age-gate__disclaimer a { color: var(--gold); text-decoration: underline; }
.age-gate__help {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  padding: 16px;
  background: rgba(196,30,58,.12);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(196,30,58,.25);
}
.age-gate__help a { color: var(--gold-light); text-decoration: underline; }
.age-gate__refused { display: none; }
.age-gate__refused.show { display: block; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--navy);
  border-top: 1px solid rgba(212,168,67,.2);
  box-shadow: 0 -8px 32px rgba(0,0,0,.3);
  animation: slideInUp .4s ease both;
}
@keyframes slideInUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: .84rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}
.cookie-banner__text strong { color: var(--white); }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

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

/* ============================================================
   SUBPAGES
   ============================================================ */
.subpage-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 120px 0 64px;
  text-align: center;
  border-bottom: 1px solid rgba(212,168,67,.15);
}
.subpage-hero .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212,168,67,.1);
  border: 1px solid rgba(212,168,67,.25);
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  transition: var(--transition);
  text-decoration: none;
}
.subpage-hero .back-btn:hover { background: rgba(212,168,67,.2); }
.subpage-hero .back-btn::before { content: '\2190'; font-size: 1rem; }

.subpage-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.subpage-hero__meta {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.subpage-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
}
.subpage-content h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212,168,67,.3);
}
.subpage-content h2:first-child { margin-top: 0; }
.subpage-content p {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}
.subpage-content ul {
  margin: 0 0 16px 20px;
}
.subpage-content ul li {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 6px;
}
.subpage-content a { color: var(--gold-dim); text-decoration: underline; }
.subpage-content a:hover { color: var(--gold); }
.subpage-content strong { color: var(--navy); }

.info-box {
  background: linear-gradient(135deg, rgba(212,168,67,.08), rgba(212,168,67,.04));
  border: 1px solid rgba(212,168,67,.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { margin-bottom: 0; color: var(--gray-700); }

.warning-box {
  background: rgba(196,30,58,.06);
  border: 1px solid rgba(196,30,58,.2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box p { margin-bottom: 0; color: var(--gray-700); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .platforms__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .platform-card--first { transform: none; }
  .platform-card--first:hover { transform: translateY(-6px); }
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
}

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .hero__stats { padding: 16px 20px; gap: 0; }
  .hero__stat { padding: 0 16px; }
  .hero__stat-number { font-size: 1.3rem; }
  .why-us__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .responsible-banner__inner { flex-direction: column; text-align: center; }
  .age-gate__card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .cookie-banner__inner { flex-direction: column; }
  .navbar__inner { padding: 0 16px; }
  .container { padding: 0 16px; }
}
