﻿:root {
  --bg: #061025;
  --surface: #0f1f3e;
  --surface-soft: #162a53;
  --text: #f4f7ff;
  --muted: #afbddf;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #ffcf5a;
  --accent-strong: #f59a23;
  --focus: #78d7ff;
  --success: #84e3a5;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -5%, #2a4d8f 0%, transparent 38%),
    radial-gradient(circle at 90% 8%, #692f7f 0%, transparent 34%),
    linear-gradient(165deg, #041027 0%, #081935 44%, #060d21 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 2.6rem));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

.bg-orb--one {
  width: 320px;
  height: 320px;
  background: #ffcf5a;
  top: 20%;
  left: -120px;
}

.bg-orb--two {
  width: 360px;
  height: 360px;
  background: #2ac7ff;
  bottom: -120px;
  right: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(4, 14, 33, 0.72);
}

.header-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand--with-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.brand--with-logo span {
  line-height: 1;
}

.brand--footer {
  font-size: 1.8rem;
  margin-bottom: 0.45rem;
}

.brand__logo--footer {
  width: 42px;
  height: 42px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
}

.hero {
  padding: 6rem 0 4.8rem;
}

.hero--compact {
  padding: 4.2rem 0 3.4rem;
}

.hero__inner {
  text-align: center;
  padding: 3.2rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(130deg, rgba(255, 207, 90, 0.16) 0%, rgba(42, 199, 255, 0.1) 55%, rgba(255, 255, 255, 0.03) 100%),
    rgba(10, 23, 49, 0.74);
  box-shadow: var(--shadow);
}

.hero__eyebrow {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0.9rem 0 1.15rem;
}

.hero__subtitle {
  margin: 0 auto;
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.hero__meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.hero__meta span {
  font-size: 0.82rem;
  color: #d2defe;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgba(8, 17, 36, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 44px;
  padding: 0.72rem 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.btn--primary {
  color: #1d1300;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  box-shadow: 0 8px 18px rgba(245, 154, 35, 0.35);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.section {
  padding: 4rem 0;
}

.section-head {
  max-width: 820px;
}

.section-head__label {
  margin: 0 0 0.45rem;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 600;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1;
  margin: 0 0 0.9rem;
}

.section-head p,
.content-block p,
.timeline p,
.faq-list p,
.contact p,
.policy-article p,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: start;
}

.content-block,
.game-card,
.contact-form,
.timeline article,
.faq-list details,
.policy-article,
.policy-link {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(22, 42, 83, 0.94) 0%, rgba(13, 25, 53, 0.92) 100%);
}

.content-block,
.policy-article {
  padding: 1rem 1.1rem;
}

.timeline {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.timeline article {
  padding: 1rem;
}

.timeline h3,
.game-card h3,
.policy-article h3,
.policy-link h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 0.9rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list details[open] {
  border-color: rgba(132, 227, 165, 0.4);
}

.contact-form {
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}

.form-status {
  display: none;
  margin: 0.25rem 0 0;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(132, 227, 165, 0.45);
  background: rgba(132, 227, 165, 0.16);
  color: #d8ffe5;
  font-size: 0.88rem;
  line-height: 1.4;
}

.form-status.is-visible {
  display: block;
}

label {
  font-size: 0.85rem;
  color: #d5e2ff;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 15, 34, 0.7);
  color: var(--text);
  font: inherit;
  padding: 0.68rem 0.7rem;
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
}

.game-grid,
.policy-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.game-card,
.policy-link {
  padding: 1rem;
}

.game-card__media {
  margin: -0.15rem -0.15rem 0.85rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #081530;
}

.game-card__media img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.game-card:hover .game-card__media img {
  transform: scale(1.03);
}

.game-card .btn,
.policy-link .btn {
  margin-top: 0.75rem;
}

.policy-link {
  display: flex;
  flex-direction: column;
}

.policy-link p {
  color: var(--muted);
}

.policy-link .btn {
  margin-top: auto;
}

.game-stage {
  padding: 0;
}

.game-stage__frame {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #020917;
}

.game-stage__frame iframe {
  width: 100%;
  height: calc(100vh - 74px);
  min-height: 720px;
  border: 0;
  display: block;
}

.game-note {
  margin-top: 1rem;
}

.policy-page {
  padding-top: 1.4rem;
}

.policy-article h3 {
  margin-top: 1.2rem;
}

.policy-article h3:first-of-type {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 11, 27, 0.82);
}

.footer-grid {
  padding: 2.4rem 0 1.1rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.footer-title {
  color: var(--text) !important;
  font-weight: 600;
  margin: 0 0 0.45rem;
}

.footer-note {
  color: #d8e3ff !important;
  font-size: 0.9rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.copyright {
  margin: 0;
  text-align: center;
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 1rem;
  font-size: 0.84rem;
  color: #b2c0df;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 20, 0.88);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.age-gate__card {
  width: min(640px, 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.25rem;
  background: linear-gradient(165deg, rgba(20, 37, 70, 0.96), rgba(8, 18, 40, 0.96));
  box-shadow: var(--shadow);
  text-align: center;
}

.age-gate__badge {
  margin: 0 auto 0.5rem;
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
}

.age-gate__card h2 {
  margin-bottom: 0.55rem;
}

.age-gate__card p {
  margin: 0;
  color: var(--muted);
}

.age-gate__actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

body.gate-closed {
  overflow: hidden;
}

body.age-verified .age-gate {
  display: none;
}

@media (max-width: 1180px) {
  .game-grid,
  .policy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    right: 1.3rem;
    top: calc(100% + 8px);
    width: min(320px, calc(100% - 2rem));
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7, 15, 34, 0.94);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 4.2rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1160px, calc(100% - 1.4rem));
  }

  .brand {
    font-size: 1.6rem;
  }

  .brand__logo {
    width: 36px;
    height: 36px;
  }

  .hero__inner {
    padding-inline: 0.9rem;
  }

  .game-grid,
  .policy-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .game-stage__frame iframe {
    min-height: 500px;
    height: 82vh;
  }

  .section {
    padding: 3.2rem 0;
  }

  .game-card__media img {
    height: 190px;
  }
}

@media (max-width: 420px) {
  .hero__actions,
  .age-gate__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .game-stage__frame iframe {
    min-height: 430px;
  }
}
