@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/assets/fonts/sora.woff2?v=fc575ebf') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/source-sans-3.woff2?v=30164609') format('woff2');
}

:root {
  --blue-deep: #0b3d91;
  --blue: #1b6ef5;
  --blue-soft: #e8f1ff;
  --blue-sky: #b8d9ff;
  --orange: #ff8a1f;
  --orange-deep: #e56a00;
  --yellow: #f5c518;
  --yellow-soft: #fff3b0;
  --green: #2fbf71;
  --green-deep: #1a9a55;
  --ink: #13233f;
  --ink-soft: #3a4d6b;
  --muted: #5c6f8c;
  --surface: #ffffff;
  --bg: #f3f8ff;
  --bg-alt: #fff8ec;
  --border: rgba(19, 35, 63, 0.1);
  --shadow: 0 1px 2px rgba(19, 35, 63, 0.06), 0 4px 12px rgba(19, 35, 63, 0.06);
  --shadow-warm: 0 1px 2px rgba(19, 35, 63, 0.06), 0 4px 12px rgba(19, 35, 63, 0.06);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;

  --text-xs: clamp(0.8rem, 0.76rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.92rem, 0.88rem + 0.25vw, 1rem);
  --text-base: clamp(1.02rem, 0.96rem + 0.3vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --text-xl: clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  --text-2xl: clamp(1.85rem, 1.45rem + 1.6vw, 2.6rem);
  --text-3xl: clamp(2.4rem, 1.8rem + 2.6vw, 3.6rem);
  --text-hero: clamp(2.7rem, 2rem + 3.4vw, 4.6rem);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --container: 74rem;
  --header-h: 4.5rem;
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-header: 100;
  --z-cursor: 9998;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }
body.nav-open { overflow: hidden; }

/* If JS fails, never trap scroll forever */
body.is-loading:has(.page-loader.is-done) { overflow: auto; }

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--orange-deep); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100%;
  z-index: 10001;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
  color: #fff;
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.03em;
}

p { color: var(--ink-soft); }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.page-loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader__orb {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  animation: spin 0.7s linear infinite;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
}
.logo:hover { color: var(--blue); }
.logo__mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}
.nav { display: flex; align-items: center; gap: 1rem; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  display: inline-flex;
  padding: 0.55rem 0.85rem;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
}
.nav__link:hover, .nav__link.is-active {
  color: var(--blue-deep);
  background: rgba(27, 110, 245, 0.1);
}
.nav__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border: 0;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: var(--orange);
  box-shadow: none;
}
.btn--primary:hover { color: #fff; background: var(--orange-deep); }
.btn--secondary {
  color: var(--blue-deep);
  background: var(--surface);
  border: 2px solid rgba(27, 110, 245, 0.25);
}
.btn--secondary:hover { color: var(--blue-deep); background: var(--blue-soft); }
.btn--sm { min-height: 2.5rem; padding: 0.55rem 1.1rem; }
.btn--green {
  color: #fff;
  background: var(--green);
  box-shadow: none;
}
.btn--green:hover { color: #fff; background: var(--green-deep); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(22rem, 72vh, 40rem);
  padding-block: clamp(2.5rem, 4vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(243, 248, 255, 0.56) 0%, rgba(243, 248, 255, 0.62) 42%, rgba(243, 248, 255, 0.15) 72%, rgba(243, 248, 255, 0.15) 100%),
    linear-gradient(180deg, transparent 70%, var(--bg));
}

.hero__brand {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.35rem);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
}
.hero__title {
  font-size: var(--text-hero);
  margin-bottom: 1rem;
}
.hero__title em {
  font-style: normal;
  color: var(--orange-deep);
}
.hero__lead {
  font-size: var(--text-lg);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* Sections */
.section { padding-block: var(--space-xl); }
.section--alt {
  background: var(--bg-alt);
}
.section--blue {
  background: var(--blue);
  color: #fff;
}
.section--blue h2, .section--blue h3, .section--blue p {
  color: #fff;
}
.section--blue p { color: rgba(255, 255, 255, 0.9); }
.section__header {
  max-width: 42rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}
.section__header--center {
  text-align: center;
  margin-inline: auto;
}
.section__title {
  font-size: var(--text-2xl);
  margin-bottom: 0.75rem;
}
.section__desc {
  font-size: var(--text-base);
  font-weight: 600;
}

/* Games */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.game-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
  text-align: left;
  color: inherit;
  transition: transform 0.25s var(--ease), border-color 0.25s;
  align-content: start;
}
.game-card:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 110, 245, 0.35);
}
.game-card__media {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--blue-soft);
}
.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  margin: 0;
}
.game-card__meta {
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}
.game-card__desc {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.game-card__btn {
  width: 100%;
  margin-top: 0.35rem;
}

.game-stage {
  display: grid;
  gap: 1.25rem;
}
.game-stage__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0d1b33;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  min-height: 22rem;
}
.game-stage__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.game-stage__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.game-stage__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.disclaimer {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1px solid rgba(229, 106, 0, 0.25);
}
.disclaimer__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--orange-deep);
}
.disclaimer p {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-soft);
}

/* Feature strips / values */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.feature {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: none;
}
.feature h3 {
  margin-bottom: 0.5rem;
  font-size: var(--text-lg);
}

.feature--on-dark {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.feature--on-dark h3,
.feature--on-dark p { color: #fff; }
.panel--on-dark {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.panel--on-dark p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.35rem 1.2rem 1.35rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
}
.step h3 { margin-bottom: 0.4rem; font-size: var(--text-lg); color: #fff; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.review {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: none;
}
.review__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review__avatar {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 700;
}
.review__name { font-weight: 700; color: var(--ink); }
.review__loc { font-size: var(--text-xs); color: var(--muted); font-weight: 700; }
.stars { display: flex; gap: 0.15rem; color: var(--yellow); margin-left: auto; }
.stars svg { width: 1rem; height: 1rem; }
.stars__dim { opacity: 0.28; }
.review blockquote {
  font-weight: 600;
  color: var(--ink-soft);
  quotes: none;
}

/* FAQ */
.faq-page-hero {
  position: relative;
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
  overflow: hidden;
  background: var(--blue-soft);
}
.faq-page-hero .page-hero__title { max-width: 40rem; }
.faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.faq-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.faq-chip--blue { background: rgba(27, 110, 245, 0.14); color: var(--blue-deep); }
.faq-chip--orange { background: rgba(255, 138, 31, 0.18); color: var(--orange-deep); }
.faq-chip--yellow { background: rgba(245, 197, 24, 0.28); color: #8a6a00; }
.faq-chip--green { background: rgba(47, 191, 113, 0.18); color: var(--green-deep); }

.faq-list {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: none;
}
.faq-item {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: none;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s var(--ease);
}
.faq-item:hover {
  border-color: rgba(27, 110, 245, 0.35);
}
.faq-item.is-open {
  border-color: rgba(27, 110, 245, 0.4);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-item__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.4rem;
  border-radius: 0.65rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.faq-item:nth-child(4n + 1) .faq-item__icon { background: rgba(27, 110, 245, 0.14); color: var(--blue-deep); }
.faq-item:nth-child(4n + 2) .faq-item__icon { background: rgba(255, 138, 31, 0.18); color: var(--orange-deep); }
.faq-item:nth-child(4n + 3) .faq-item__icon { background: rgba(245, 197, 24, 0.28); color: #8a6a00; }
.faq-item:nth-child(4n + 4) .faq-item__icon { background: rgba(47, 191, 113, 0.18); color: var(--green-deep); }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  display: none;
  padding: 0 1.4rem 1.35rem;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1.65;
  max-width: none;
}
.faq-item.is-open .faq-item__a { display: block; }

.faq-cta {
  margin-top: 2rem;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-xl);
  background: var(--blue-soft);
  border: 1px solid rgba(27, 110, 245, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-cta p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
  max-width: 36rem;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.split__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: none;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

/* Page hero (inner) */
.page-hero {
  padding-block: clamp(2.5rem, 5vw, 4rem) 2rem;
}
.page-hero__title { font-size: var(--text-3xl); margin-bottom: 0.75rem; }
.page-hero__lead {
  max-width: 40rem;
  font-size: var(--text-lg);
  font-weight: 600;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-card, .form-card, .policy, .content-panel {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: none;
}
.feature.feature--on-dark {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.feature.feature--on-dark h3,
.feature.feature--on-dark p {
  color: #fff;
}
.content-panel.panel--on-dark {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.content-panel.panel--on-dark p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}
.contact-list { display: grid; gap: 1rem; margin-top: 1.25rem; }
.contact-list li {
  display: grid;
  gap: 0.2rem;
}
.contact-list strong {
  font-family: var(--font-display);
  color: var(--ink);
}
.map-frame {
  margin-top: 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 16rem;
  border: 1px solid var(--border);
}
.map-frame iframe {
  width: 100%;
  height: 16rem;
  border: 0;
  display: block;
}

.form { display: grid; gap: 1rem; }
.form-group { display: grid; gap: 0.4rem; }
.form-group label {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(27, 110, 245, 0.18);
  border-radius: var(--radius-md);
  background: #f8fbff;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  outline: none;
}
.form-group textarea { min-height: 9rem; resize: vertical; }
.form-group input.is-error,
.form-group textarea.is-error { border-color: #e23b3b; }
.form-error {
  min-height: 1.1rem;
  color: #c62828;
  font-size: var(--text-xs);
  font-weight: 700;
}
.form-success {
  display: none;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(47, 191, 113, 0.15);
  color: var(--green-deep);
  font-weight: 700;
}
.form-success.is-visible { display: block; }

.policy h2, .content-panel h2 {
  margin-block: 1.5rem 0.75rem;
  font-size: var(--text-xl);
}
.policy h2:first-child, .content-panel h2:first-of-type { margin-top: 0; }
.policy p, .content-panel p { margin-bottom: 0.9rem; font-weight: 600; }
.policy ul, .content-panel ul {
  margin: 0 0 1rem 1.1rem;
  list-style: disc;
}
.policy li, .content-panel li {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Footer */
.footer {
  margin-top: var(--space-xl);
  padding-block: var(--space-xl) var(--space-lg);
  background: #0a214d;
  color: #fff;
}
.footer a { color: rgba(255, 255, 255, 0.88); }
.footer a:hover { color: var(--yellow); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}
.footer .logo { color: #fff; }
.footer .logo:hover { color: var(--yellow); }
.footer__desc {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  max-width: 22rem;
}
.footer__heading {
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: #fff;
}
.footer__links { display: grid; gap: 0.45rem; }
.footer__links a { font-weight: 700; font-size: var(--text-sm); }
.footer__help {
  margin-bottom: 1.75rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__help-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.footer__help-link {
  display: grid;
  place-items: center;
  width: 7.5rem;
  height: 4.25rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__help-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.footer__help-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__org {
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  line-height: 1.5;
}
.footer__disclaimer {
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}
.footer__disclaimer p {
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.footer__disclaimer p:last-child { margin-bottom: 0; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__copy {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-sm);
  font-weight: 700;
}
.badge-18 {
  display: inline-grid;
  place-items: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding-inline: 0.55rem;
  border-radius: 0.7rem;
  background: #9a3412;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* Reveal + cursor */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

.spark-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: var(--z-cursor);
}

@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .feature-row, .steps, .split, .contact-grid { grid-template-columns: 1fr; }
  .nav__toggle { display: inline-grid; place-items: center; }
  .nav__list {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    background: rgba(243, 248, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.is-open .nav__list { display: flex; }
  .nav__cta { display: none; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(243, 248, 255, 0.62), rgba(243, 248, 255, 0.48) 55%, var(--bg)),
      linear-gradient(90deg, rgba(243, 248, 255, 0.35), transparent 40%);
  }
}

@media (max-width: 640px) {
  .games-grid, .reviews-grid, .footer__grid { grid-template-columns: 1fr; }
  .game-stage__frame { min-height: 18rem; aspect-ratio: 9 / 12; }
  .hero__actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Perf: skip offscreen layout work */
.section--alt,
.section--blue,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}
