/* UrbanPeakGlobal — Highway 61 Revisited palette
   Retro warm dark, vintage denim blue, burnt orange, cream text.
   All custom classes: .xw-*
   Units: px only (no rem)
   No all:initial anywhere
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  --xw-midnight:  #0e0c1a;
  --xw-slate:     #1c1832;
  --xw-panel:     #241f38;
  --xw-denim:     #4a72a0;
  --xw-denim-l:   #6a94c4;
  --xw-flame:     #d4713a;
  --xw-flame-l:   #e8944a;
  --xw-cream:     #ede3d0;
  --xw-cream-m:   #b8ad9a;
  --xw-rose:      #b85c7a;
  --xw-gold:      #c9a84c;
  --xw-success:   #5a9e6f;
  --xw-border:    #2e2844;
  --xw-radius:    10px;
  --xw-radius-lg: 16px;
  --xw-shadow:    0 4px 24px rgba(0,0,0,.35);
  --xw-font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --xw-font-body:    'Inter', system-ui, sans-serif;
  --xw-header-h:  72px;
  --xw-max-w:     1200px;
}

/* ── Reset (scoped-safe) ── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--xw-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--xw-cream);
  background: var(--xw-midnight);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--xw-denim-l); text-decoration: none; }
a:hover { color: var(--xw-flame-l); }
button { cursor: pointer; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { margin: 0; }
p { margin: 0 0 16px; }
ul { list-style: none; margin: 0; padding: 0; }

/* ── Grain overlay (vintage texture) ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ── Layout ── */
.xw-wrap {
  max-width: var(--xw-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.xw-section {
  padding: 96px 0;
}

.xw-section-title {
  font-family: var(--xw-font-display);
  font-size: 52px;
  letter-spacing: 2px;
  line-height: 1.05;
  color: var(--xw-cream);
  margin-bottom: 16px;
}

.xw-section-sub {
  font-size: 17px;
  color: var(--xw-cream-m);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Header ── */
.xw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--xw-header-h);
  background: rgba(14,12,26,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--xw-border);
  z-index: 900;
  display: flex;
  align-items: center;
}

.xw-header__inner {
  max-width: var(--xw-max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.xw-logo {
  font-family: var(--xw-font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--xw-cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.xw-logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--xw-flame);
  font-family: var(--xw-font-body);
  font-weight: 700;
  flex-shrink: 0;
}

.xw-nav { display: flex; align-items: center; gap: 32px; }

.xw-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--xw-cream-m);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color .2s;
  text-decoration: none;
}
.xw-nav a:hover { color: var(--xw-flame); }

.xw-nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--xw-cream);
  font-size: 28px;
  padding: 4px;
}

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

.xw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(74,114,160,.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,113,58,.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--xw-midnight) 0%, #12102a 100%);
  z-index: 0;
}

.xw-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--xw-max-w);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.xw-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--xw-flame);
  margin-bottom: 24px;
}

.xw-hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--xw-flame);
}

.xw-hero__h1 {
  font-family: var(--xw-font-display);
  font-size: clamp(64px, 10vw, 120px);
  line-height: .92;
  letter-spacing: 3px;
  color: var(--xw-cream);
  margin-bottom: 32px;
}

.xw-hero__h1 span {
  display: block;
}

.xw-hero__h1 .xw-hero__accent {
  color: var(--xw-flame);
}

.xw-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--xw-cream-m);
  max-width: 480px;
  margin-bottom: 40px;
}

.xw-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.xw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--xw-font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--xw-radius);
  border: none;
  text-decoration: none;
  transition: all .2s ease;
  letter-spacing: .5px;
}

.xw-btn--primary {
  background: var(--xw-flame);
  color: #fff;
}
.xw-btn--primary:hover {
  background: var(--xw-flame-l);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,113,58,.3);
}

.xw-btn--outline {
  background: transparent;
  color: var(--xw-cream);
  border: 1.5px solid var(--xw-border);
}
.xw-btn--outline:hover {
  border-color: var(--xw-denim);
  color: var(--xw-denim-l);
}

.xw-btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ── Games section ── */
.xw-games {
  background: var(--xw-midnight);
}

.xw-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

/* ── Game card ── */
.xw-game-card {
  background: var(--xw-slate);
  border-radius: var(--xw-radius-lg);
  overflow: hidden;
  border: 1px solid var(--xw-border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.xw-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}

.xw-game-card__thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.xw-game-card__thumb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.xw-game-card__provider {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(14,12,26,.7);
  backdrop-filter: blur(6px);
  color: var(--xw-cream);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 6px;
}

.xw-game-card__thumb-name {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--xw-font-display);
  font-size: 28px;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  line-height: 1;
}

.xw-game-card__body {
  padding: 18px;
}

.xw-game-card__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--xw-cream);
  margin-bottom: 10px;
}

.xw-game-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.xw-game-card__tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--xw-cream-m);
  background: rgba(255,255,255,.06);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .3px;
}

.xw-game-card__actions {
  display: flex;
  gap: 8px;
}

.xw-game-card__play {
  flex: 1;
  background: var(--xw-flame);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: background .2s;
}
.xw-game-card__play:hover { background: var(--xw-flame-l); }

.xw-game-card__newtab {
  width: 40px;
  background: rgba(255,255,255,.06);
  color: var(--xw-cream-m);
  border: 1px solid var(--xw-border);
  border-radius: 8px;
  font-size: 16px;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xw-game-card__newtab:hover {
  background: rgba(255,255,255,.1);
  color: var(--xw-cream);
}

/* ── About section ── */
.xw-about {
  background: var(--xw-slate);
}

.xw-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.xw-about__text p {
  color: var(--xw-cream-m);
  font-size: 16px;
  line-height: 1.7;
}

.xw-about__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.xw-about__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.xw-about__point-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212,113,58,.12);
  color: var(--xw-flame);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.xw-about__point-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--xw-cream);
  margin-bottom: 4px;
}
.xw-about__point-text p {
  font-size: 14px;
  color: var(--xw-cream-m);
  margin: 0;
  line-height: 1.55;
}

/* ── Stats ── */
.xw-stats {
  background: var(--xw-midnight);
  border-top: 1px solid var(--xw-border);
  border-bottom: 1px solid var(--xw-border);
  padding: 64px 0;
}

.xw-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.xw-stats__item {}

.xw-stats__num {
  font-family: var(--xw-font-display);
  font-size: 52px;
  letter-spacing: 2px;
  color: var(--xw-flame);
  line-height: 1;
  margin-bottom: 8px;
}

.xw-stats__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--xw-cream-m);
}

/* ── Responsible Play (landing brief) ── */
.xw-responsible {
  background: var(--xw-slate);
}

.xw-responsible__box {
  background: var(--xw-panel);
  border: 1px solid var(--xw-border);
  border-radius: var(--xw-radius-lg);
  padding: 48px;
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.xw-responsible__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(90,158,111,.12);
  color: var(--xw-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.xw-responsible__content p {
  color: var(--xw-cream-m);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.xw-responsible__content p:last-child { margin-bottom: 0; }

/* ── FAQ ── */
.xw-faq {
  background: var(--xw-midnight);
}

.xw-faq__list {
  max-width: 760px;
  margin: 48px auto 0;
}

.xw-faq__item {
  border-bottom: 1px solid var(--xw-border);
}

.xw-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--xw-cream);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.xw-faq__q:hover { color: var(--xw-flame); }

.xw-faq__q-arrow {
  font-size: 20px;
  transition: transform .25s ease;
  color: var(--xw-cream-m);
  flex-shrink: 0;
  margin-left: 16px;
}

.xw-faq__item.xw-open .xw-faq__q-arrow {
  transform: rotate(180deg);
}

.xw-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.xw-faq__a-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--xw-cream-m);
  line-height: 1.65;
}

/* ── Footer ── */
.xw-footer {
  background: var(--xw-slate);
  border-top: 1px solid var(--xw-border);
  padding: 64px 0 32px;
}

.xw-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.xw-footer__brand {
  font-family: var(--xw-font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--xw-cream);
  margin-bottom: 16px;
}

.xw-footer__about {
  font-size: 14px;
  color: var(--xw-cream-m);
  line-height: 1.6;
  max-width: 340px;
}

.xw-footer__heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--xw-cream);
  margin-bottom: 20px;
}

.xw-footer__links li { margin-bottom: 10px; }
.xw-footer__links a {
  font-size: 14px;
  color: var(--xw-cream-m);
  transition: color .2s;
}
.xw-footer__links a:hover { color: var(--xw-flame); }

.xw-footer__disclaimer {
  border-top: 1px solid var(--xw-border);
  padding-top: 28px;
  margin-top: 28px;
}

.xw-footer__disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,113,58,.12);
  color: var(--xw-flame);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.xw-footer__disclaimer-text {
  font-size: 13px;
  color: var(--xw-cream-m);
  line-height: 1.6;
  max-width: 800px;
}

.xw-footer__bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--xw-border);
  margin-top: 28px;
  font-size: 13px;
  color: rgba(184,173,154,.5);
}

/* ── Age Gate ── */
#xw-age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,8,20,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#xw-age-gate, #xw-age-gate * {
  font-family: var(--xw-font-body) !important;
  box-sizing: border-box !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  line-height: 1.5 !important;
}

.xw-age-gate__card {
  background: var(--xw-slate);
  border: 1px solid var(--xw-border);
  border-radius: var(--xw-radius-lg);
  padding: 48px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.xw-age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--xw-flame);
  font-family: var(--xw-font-display) !important;
  font-size: 28px !important;
  letter-spacing: 1px !important;
  color: var(--xw-flame);
  margin-bottom: 24px;
}

.xw-age-gate__title {
  font-family: var(--xw-font-display) !important;
  font-size: 32px !important;
  letter-spacing: 2px !important;
  color: var(--xw-cream);
  margin-bottom: 12px;
}

.xw-age-gate__text {
  font-size: 15px !important;
  color: var(--xw-cream-m);
  margin-bottom: 32px;
}

.xw-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.xw-age-gate__yes {
  background: var(--xw-flame);
  color: #fff;
  border: none;
  border-radius: var(--xw-radius);
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s;
}
.xw-age-gate__yes:hover { background: var(--xw-flame-l); }

.xw-age-gate__no {
  background: none;
  color: var(--xw-cream-m);
  border: 1px solid var(--xw-border);
  border-radius: var(--xw-radius);
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  transition: all .2s;
}
.xw-age-gate__no:hover {
  border-color: var(--xw-rose);
  color: var(--xw-rose);
}

/* ── Cookie Banner ── */
#xw-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--xw-slate);
  border-top: 1px solid var(--xw-border);
  padding: 18px 24px;
  display: none;
}

.xw-cookie__inner {
  max-width: var(--xw-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.xw-cookie__text {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  color: var(--xw-cream-m);
  line-height: 1.5;
}

.xw-cookie__text a {
  color: var(--xw-denim-l);
  text-decoration: underline;
}

.xw-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.xw-cookie__accept {
  background: var(--xw-flame);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}
.xw-cookie__accept:hover { background: var(--xw-flame-l); }

.xw-cookie__decline {
  background: none;
  color: var(--xw-cream-m);
  border: 1px solid var(--xw-border);
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  transition: all .2s;
}
.xw-cookie__decline:hover {
  border-color: var(--xw-cream-m);
  color: var(--xw-cream);
}

/* ── Game Modal ── */
#xw-game-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(10,8,20,.97);
  display: none;
  flex-direction: column;
}

.xw-game-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--xw-slate);
  border-bottom: 1px solid var(--xw-border);
  flex-shrink: 0;
}

.xw-game-modal__title {
  font-family: var(--xw-font-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--xw-cream);
}

.xw-game-modal__btns {
  display: flex;
  gap: 8px;
}

.xw-game-modal__btn {
  background: rgba(255,255,255,.06);
  color: var(--xw-cream-m);
  border: 1px solid var(--xw-border);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.xw-game-modal__btn:hover {
  background: rgba(255,255,255,.1);
  color: var(--xw-cream);
}

.xw-game-modal__close {
  background: rgba(184,92,122,.15);
  color: var(--xw-rose);
  border: 1px solid rgba(184,92,122,.3);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.xw-game-modal__close:hover {
  background: rgba(184,92,122,.25);
}

.xw-game-modal__wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

#xw-game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.xw-game-modal__spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--xw-midnight);
  pointer-events: none;
  transition: opacity .3s;
}

.xw-game-modal__spinner.xw-hidden { opacity: 0; }

.xw-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--xw-border);
  border-top-color: var(--xw-flame);
  border-radius: 50%;
  animation: xw-spin .8s linear infinite;
}

@keyframes xw-spin {
  to { transform: rotate(360deg); }
}

/* ── Legal popups ── */
#xw-legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(10,8,20,.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.xw-legal__card {
  background: var(--xw-slate);
  border: 1px solid var(--xw-border);
  border-radius: var(--xw-radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.xw-legal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--xw-border);
  flex-shrink: 0;
}

.xw-legal__title {
  font-family: var(--xw-font-display);
  font-size: 28px;
  letter-spacing: 1.5px;
  color: var(--xw-cream);
}

.xw-legal__close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.06);
  color: var(--xw-cream-m);
  border: 1px solid var(--xw-border);
  border-radius: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.xw-legal__close:hover {
  background: rgba(255,255,255,.1);
  color: var(--xw-cream);
}

.xw-legal__body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.xw-legal__body h3 {
  font-family: var(--xw-font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--xw-cream);
  margin: 32px 0 12px;
}
.xw-legal__body h3:first-child { margin-top: 0; }

.xw-legal__body p {
  font-size: 14px;
  color: var(--xw-cream-m);
  line-height: 1.7;
  margin-bottom: 14px;
}

.xw-legal__body ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 14px;
}
.xw-legal__body ul li {
  font-size: 14px;
  color: var(--xw-cream-m);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ── Legal pages (multi-page) ── */
.xw-legal-page {
  padding-top: calc(var(--xw-header-h) + 48px);
  padding-bottom: 96px;
  min-height: 100vh;
}

.xw-legal-page__title {
  font-family: var(--xw-font-display);
  font-size: 48px;
  letter-spacing: 2px;
  color: var(--xw-cream);
  margin-bottom: 8px;
}

.xw-legal-page__updated {
  font-size: 13px;
  color: var(--xw-cream-m);
  margin-bottom: 40px;
}

.xw-legal-page__content {
  max-width: 720px;
}

.xw-legal-page__content h2 {
  font-family: var(--xw-font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--xw-cream);
  margin: 40px 0 14px;
}
.xw-legal-page__content h2:first-child { margin-top: 0; }

.xw-legal-page__content p {
  font-size: 15px;
  color: var(--xw-cream-m);
  line-height: 1.7;
  margin-bottom: 16px;
}

.xw-legal-page__content ul {
  padding-left: 22px;
  list-style: disc;
  margin-bottom: 16px;
}
.xw-legal-page__content ul li {
  font-size: 15px;
  color: var(--xw-cream-m);
  line-height: 1.6;
  margin-bottom: 6px;
}

.xw-legal-page__content a {
  color: var(--xw-denim-l);
}

/* ── Scroll reveal ── */
.xw-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.xw-reveal.xw-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Age-blocked state ── */
#xw-age-blocked {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--xw-midnight);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.xw-age-blocked__text {
  font-family: var(--xw-font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--xw-cream-m);
}

/* ── Mobile nav overlay ── */
.xw-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 899;
  background: rgba(14,12,26,.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.xw-nav-overlay.xw-open { display: flex; }
.xw-nav-overlay a {
  font-family: var(--xw-font-display);
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--xw-cream);
  text-decoration: none;
  transition: color .2s;
}
.xw-nav-overlay a:hover { color: var(--xw-flame); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .xw-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .xw-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .xw-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .xw-section-title { font-size: 40px; }
  .xw-responsible__box { flex-direction: column; gap: 24px; padding: 32px; text-align: center; }
}

@media (max-width: 680px) {
  .xw-nav { display: none; }
  .xw-nav__burger { display: block; }
  .xw-hero__h1 { font-size: 52px; }
  .xw-section { padding: 64px 0; }
  .xw-section-title { font-size: 34px; }
  .xw-games__grid { grid-template-columns: 1fr; }
  .xw-stats__grid { grid-template-columns: 1fr 1fr; }
  .xw-age-gate__card { padding: 32px 24px; }
  .xw-cookie__inner { flex-direction: column; gap: 16px; }
  .xw-cookie__actions { width: 100%; }
  .xw-cookie__accept, .xw-cookie__decline { flex: 1; }
  .xw-legal-page__title { font-size: 36px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .xw-reveal { transition: none; opacity: 1; transform: none; }
  .xw-spinner { animation: none; }
  .xw-faq__a { transition: none; }
  .xw-game-card { transition: none; }
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--xw-denim-l);
  outline-offset: 2px;
}
