/* ========================================
   ROOT & VARIABLES
   ======================================== */
:root {
  --bg:          #08091a;
  --bg-2:        #0c0f22;
  --surface:     #0f1628;
  --surface-2:   #161d38;
  --surface-3:   #1c2445;
  --gold:        #d4a827;
  --gold-light:  #f0c840;
  --gold-dark:   #9a7512;
  --gold-muted:  rgba(212, 168, 39, 0.12);
  --silver:      #9baab8;
  --silver-light:#c8d8e8;
  --bronze:      #cd7f32;
  --bronze-light:#e8a060;
  --text:        #f0ece0;
  --text-2:      #c8c4b8;
  --text-muted:  #7a8098;
  --border:      rgba(212, 168, 39, 0.22);
  --border-soft: rgba(255, 255, 255, 0.07);
  --success:     #4caf7d;
  --error:       #e05555;
  --radius:      14px;
  --radius-lg:   20px;
  --shadow:      0 4px 32px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 0 40px rgba(212, 168, 39, 0.18);
  --transition:  0.3s ease;
  --nav-h:       72px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--text);
}

button { font-family: var(--font-sans); }

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #08091a;
  box-shadow: 0 4px 20px rgba(212, 168, 39, 0.32);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #ffe060, var(--gold-light));
  color: #08091a;
  box-shadow: 0 6px 32px rgba(212, 168, 39, 0.5);
  transform: translateY(-2px);
}

.btn--silver {
  background: linear-gradient(135deg, var(--silver-light), var(--silver));
  color: #0c0f22;
  box-shadow: 0 4px 20px rgba(155, 170, 184, 0.22);
}
.btn--silver:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(155, 170, 184, 0.38);
  color: #0c0f22;
}

.btn--bronze {
  background: linear-gradient(135deg, var(--bronze-light), var(--bronze));
  color: #08091a;
  box-shadow: 0 4px 20px rgba(205, 127, 50, 0.28);
}
.btn--bronze:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(205, 127, 50, 0.42);
  color: #08091a;
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-soft);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-muted);
}

.btn--lg  { padding: 16px 40px; font-size: 1.05rem; }
.btn--sm  { padding: 9px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text) 55%, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

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

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

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 15, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.age-gate__card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-gold), var(--shadow);
  animation: ageFadeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.age-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}

.age-gate__card h2 {
  font-size: 1.75rem;
  margin-bottom: 14px;
  color: var(--text);
}

.age-gate__card > p {
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 12px;
}

.age-gate__sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 12px 16px;
  background: rgba(212, 168, 39, 0.07);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  text-align: left;
  margin-bottom: 28px !important;
  line-height: 1.55;
}

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

.age-gate__legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.age-gate__legal a { font-size: inherit; }

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

.refused-card {
  background: var(--surface);
  border: 1px solid rgba(224, 85, 85, 0.4);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 420px;
  text-align: center;
  animation: ageFadeIn 0.4s ease;
}

.refused-icon { font-size: 3.5rem; margin-bottom: 20px; }
.refused-card h3 { font-size: 1.6rem; color: var(--error); margin-bottom: 12px; }
.refused-card p  { color: var(--text-2); line-height: 1.65; }

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface-2);
  border-top: 1px solid var(--border-soft);
  padding: 16px 24px;
  animation: slideUp 0.4s ease;
}
@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: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__text strong { display: block; margin-bottom: 3px; color: var(--text); font-size: 0.9rem; }
.cookie-banner__text p { font-size: 0.82rem; color: var(--text-2); margin: 0; }
.cookie-banner__text a { font-size: inherit; }

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

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(8, 9, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-soft);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo:hover { color: var(--gold-light); }

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.navbar__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar__logo-text small {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar__links a {
  padding: 8px 14px;
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
  text-decoration: none;
}
.navbar__links a:hover {
  color: var(--text);
  background: var(--border-soft);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8, 9, 26, 0.97);
  backdrop-filter: blur(20px);
  padding: 20px 24px 28px;
  border-bottom: 1px solid var(--border-soft);
  z-index: 899;
}
.navbar__mobile.open { display: block; animation: fadeDown 0.3s ease; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.navbar__mobile a {
  display: block;
  padding: 13px 16px;
  color: var(--text-2);
  font-size: 0.97rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all var(--transition);
  text-decoration: none;
}
.navbar__mobile a:hover { color: var(--text); background: var(--border-soft); }
.navbar__mobile .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 10%, #10163a 0%, var(--bg) 65%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 700px; height: 700px;
  top: -250px; left: -200px;
  background: radial-gradient(circle, rgba(212, 168, 39, 0.13) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  bottom: -120px; right: -120px;
  background: radial-gradient(circle, rgba(212, 168, 39, 0.09) 0%, transparent 70%);
  animation: orbFloat 18s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 350px; height: 350px;
  top: 45%; left: 65%;
  background: radial-gradient(circle, rgba(80, 120, 220, 0.07) 0%, transparent 70%);
  animation: orbFloat 22s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33%       { transform: translateY(-28px) scale(1.04); }
  66%       { transform: translateY(18px) scale(0.97); }
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 168, 39, 0.1);
  border: 1px solid rgba(212, 168, 39, 0.28);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.18;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.78;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 44px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px 28px;
  width: fit-content;
}
.stat { text-align: center; padding: 0 24px; }
.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 5px;
}
.stat__sep { width: 1px; height: 44px; background: var(--border-soft); }

.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(212, 168, 39, 0.35);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-indicator span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin: 5px auto 0;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(12px); opacity: 0.25; }
}

/* ========================================
   PLATFORM CARDS
   ======================================== */
.platforms { background: var(--bg-2); }

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

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow);
  border-color: rgba(212, 168, 39, 0.32);
}
.platform-card--top {
  border-color: rgba(212, 168, 39, 0.38);
  box-shadow: 0 0 48px rgba(212, 168, 39, 0.1);
}
.platform-card--top:hover {
  box-shadow: 0 0 64px rgba(212, 168, 39, 0.28), var(--shadow);
}

.platform-card__ribbon {
  position: absolute;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #08091a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 18px 7px 14px;
  border-bottom-left-radius: 12px;
  z-index: 2;
}
.platform-card__ribbon--silver {
  background: linear-gradient(135deg, var(--silver-light), var(--silver));
  color: #0c0f22;
}
.platform-card__ribbon--bronze {
  background: linear-gradient(135deg, var(--bronze-light), var(--bronze));
  color: #08091a;
}

.platform-card__header {
  padding: 36px 24px 22px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  background: rgba(255,255,255,0.015);
}

.platform-card__logo-wrap {
  width: 100%;
  max-width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}
.platform-card__logo-wrap--dark { background: #111; }

.platform-card__logo {
  height: 46px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.platform-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.platform-card__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rating-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stars { display: flex; gap: 3px; }
.star { font-size: 1.1rem; color: #2a2f45; }
.star--full { color: var(--gold); }
.rating-label {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 700;
  background: rgba(76, 175, 125, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(76, 175, 125, 0.22);
  letter-spacing: 0.03em;
}

.platform-card__bonus {
  background: var(--gold-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.bonus-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.bonus-text {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.5;
}
.bonus-text strong { color: var(--gold-light); font-size: 1.05rem; }

.platform-card__features { display: flex; flex-direction: column; gap: 8px; }
.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
}

.platform-card__payments {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.pay-badge {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}
.pay-badge--visa { background: #1a1f6e; color: #fff; border-color: #2c35a8; }
.pay-badge--mc   { background: #2a0a0a; color: #f04040; border-color: rgba(235,0,27,0.35); }
.pay-badge--pp   { background: #003087; color: #56b0e8; border-color: rgba(0,156,222,0.35); }
.pay-badge--sk   { background: #1a1a2e; color: #9b59b6; border-color: rgba(138,43,226,0.35); }

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

/* ========================================
   WHY SECTION
   ======================================== */
.why { background: var(--bg); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 22px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}

.why-card__icon {
  width: 58px;
  height: 58px;
  background: var(--gold-muted);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p  { font-size: 0.87rem; color: var(--text-2); line-height: 1.68; }

/* ========================================
   RESPONSIBLE GAMING
   ======================================== */
.responsible { background: var(--bg-2); }

.responsible__inner {
  background: linear-gradient(135deg, rgba(212, 168, 39, 0.07), rgba(76, 175, 125, 0.05));
  border: 1px solid rgba(212, 168, 39, 0.22);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  position: relative;
  overflow: hidden;
}
.responsible__inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(212,168,39,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.responsible__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(212, 168, 39, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.responsible__content h2 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}
.responsible__content p {
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 700px;
}
.responsible__links { display: flex; gap: 12px; flex-wrap: wrap; }

.responsible__badge {
  position: absolute;
  bottom: 16px; right: 32px;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(212, 168, 39, 0.07);
  user-select: none;
  line-height: 1;
}

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

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(212, 168, 39, 0.22); }
.faq-item.open  { border-color: rgba(212, 168, 39, 0.35); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--gold-light); }
.faq-item.open .faq-item__question { color: var(--gold-light); }

.faq-item__icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-item__icon { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}
.faq-item.open .faq-item__answer { max-height: 500px; }

.faq-item__answer p {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.78;
}
.faq-item__answer p a { color: var(--gold); text-decoration: underline; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 32px;
}

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

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 14px;
}
.footer__brand-logo svg { flex-shrink: 0; }
.footer__brand-logo .accent { color: var(--gold-light); }

.footer__brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 16px;
}

.footer__disclaimer {
  font-size: 0.77rem;
  color: var(--text-muted);
  background: rgba(212, 168, 39, 0.06);
  border: 1px solid rgba(212, 168, 39, 0.14);
  border-radius: 8px;
  padding: 12px 14px;
  line-height: 1.58;
}
.footer__disclaimer strong { color: var(--gold); }

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: 0.86rem;
  color: var(--text-2);
  transition: color var(--transition);
  text-decoration: none;
}
.footer__col a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__legal { font-size: 0.78rem; color: var(--text-muted); }

.footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

/* ========================================
   SUBPAGE STYLES
   ======================================== */
.subpage { min-height: 100vh; background: var(--bg); }

.subpage__back-wrap {
  padding: calc(var(--nav-h) + 36px) 0 0;
}

.btn--back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 36px;
}
.btn--back:hover { border-color: var(--gold); color: var(--gold-light); background: var(--gold-muted); }

.subpage__hero {
  padding: 40px 0 56px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 60px;
}
.subpage__hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 10px; }
.subpage__hero p  { color: var(--text-muted); font-size: 0.9rem; }

.subpage__content {
  padding-bottom: 96px;
  max-width: 860px;
}

.subpage__content h2 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin: 44px 0 14px;
  padding-top: 8px;
}
.subpage__content h2:first-child { margin-top: 0; }

.subpage__content h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 8px;
}

.subpage__content p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.78;
  margin-bottom: 14px;
}

.subpage__content ul, .subpage__content ol {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.78;
  padding-left: 24px;
  margin-bottom: 16px;
}
.subpage__content li { margin-bottom: 6px; }
.subpage__content a  { color: var(--gold); text-decoration: underline; }

.content-box {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  margin: 22px 0;
}
.content-box--warning { border-color: rgba(224,85,85,0.3); background: rgba(224,85,85,0.06); }
.content-box--gold    { border-color: var(--border); background: var(--gold-muted); }

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.help-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.help-card:hover { border-color: var(--border); transform: translateY(-2px); }
.help-card__name { font-weight: 700; color: var(--text); margin-bottom: 4px; font-size: 0.93rem; }
.help-card__desc { font-size: 0.81rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.55; }

/* ========================================
   PARTICLES
   ======================================== */
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade var(--duration, 5s) ease-in-out infinite var(--delay, 0s);
}
@keyframes particleFade {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  15%  { opacity: 0.75; }
  80%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-90px) scale(0.4); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .why__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: 500px; margin: 0 auto; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .responsible__inner { flex-direction: column; padding: 36px; }
  .responsible__badge { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 12px; }
  .hero__stats { padding: 18px 20px; }
  .stat { padding: 0 16px; }
  .help-grid { grid-template-columns: 1fr; }
  .age-gate__card { padding: 36px 22px; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.95rem; }
  .hero__stats {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .stat { padding: 12px 0; text-align: left; }
  .stat__sep { width: 100%; height: 1px; }
  .stat__num { font-size: 1.7rem; }
  .platforms__grid { max-width: 100%; }
  .responsible__inner { padding: 24px; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}
