:root {
  color-scheme: light;
  --ink: #fff8d8;
  --muted: #cdb7e9;
  --line: rgba(255, 219, 116, 0.24);
  --paper: #160a32;
  --mist: #080313;
  --panel: rgba(31, 12, 63, 0.78);
  --pink: #ff5fc8;
  --gold: #ffd84f;
  --orange: #ff7a2f;
  --blue: #2f8dff;
  --violet: #8b4cff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 95, 200, 0.24), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(47, 141, 255, 0.22), transparent 28%),
    linear-gradient(180deg, #0b031a, #16082d 42%, #090413);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(8, 3, 19, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(255, 95, 200, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--gold);
}

.hero {
  min-height: min(780px, calc(100vh - 66px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(40px, 7vw, 92px) clamp(18px, 4vw, 56px) 40px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 216, 79, 0.28), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 95, 200, 0.26), transparent 32%),
    linear-gradient(132deg, rgba(14, 4, 35, 0.98), rgba(37, 10, 79, 0.96) 52%, rgba(7, 3, 19, 1));
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 18px;
  color: #eadcf8;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 216, 79, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(23, 32, 51, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 79, 0.58);
  box-shadow: 0 14px 30px rgba(255, 95, 200, 0.18);
}

.button.primary {
  border-color: rgba(255, 216, 79, 0.74);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #321003;
}

.hero-art {
  width: min(100%, 620px);
  justify-self: center;
}

.hero-art img {
  width: 100%;
  display: block;
  border: 1px solid rgba(255, 216, 79, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-hint {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stat {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 216, 79, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.stat strong {
  display: block;
  font-size: 1.3rem;
}

.stat span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(46px, 7vw, 84px) clamp(18px, 4vw, 56px);
}

.section.white {
  background: rgba(12, 4, 28, 0.86);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 184px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 95, 200, 0.16);
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.support-email {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  font-weight: 900;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.support-email a {
  text-decoration: none;
}

.support-email a:hover {
  color: var(--gold);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(255, 216, 79, 0.18);
  color: var(--gold);
  font-weight: 900;
}

.badge.blue {
  background: rgba(47, 141, 255, 0.2);
  color: var(--blue);
}

.badge.gold {
  background: rgba(255, 95, 200, 0.18);
  color: #ff9bdd;
}

.games-band {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 216, 79, 0.16), transparent 26%),
    rgba(19, 7, 43, 0.9);
}

.game-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.game-card img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
}

.game-card p {
  margin-top: 8px;
  color: var(--muted);
}

.studio-band {
  background:
    linear-gradient(180deg, rgba(15, 5, 35, 0.92), rgba(8, 3, 19, 1)),
    var(--mist);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.facts {
  display: grid;
  gap: 10px;
}

.fact-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.fact-row dt {
  color: var(--muted);
  font-weight: 700;
}

.fact-row dd {
  margin: 0;
  font-weight: 700;
}

.notice {
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--coral);
  background: #fff5f4;
  color: #5b2b26;
}

.doc {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 56px);
  background: #ffffff;
  color: #172033;
}

.doc h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.doc .meta {
  margin-top: 12px;
  color: #5f6878;
}

.doc-section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.doc-section p {
  margin-top: 10px;
  color: #384255;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #05020c;
  color: #edf2f7;
}

.site-footer a {
  color: #edf2f7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art {
    width: min(100%, 460px);
  }

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

@media (max-width: 560px) {
  .hero-hint {
    grid-template-columns: 1fr;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .button {
    width: 100%;
  }
}
