:root {
  color-scheme: dark;
  --bg: #121212;
  --graphite: #23262f;
  --lime: #b6ff2e;
  --text: #ffffff;
  --muted: #989e99;
  --card: #1e2129;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
nav a:hover { color: var(--lime); }
.nav-links { display: flex; gap: 1.25rem; }

.mark {
  height: 22px;
  width: auto;
  max-width: min(58vw, 260px);
  display: block;
}

h1 {
  font-family: "Barlow Condensed", ui-sans-serif, sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(3rem, 13vw, 5.2rem);
  line-height: 0.92;
  margin: 2.75rem 0 2rem;
}
h1 .lime { color: var(--lime); }

.lede {
  color: var(--muted);
  font-size: 1.2rem;
  margin: 0 0 2rem;
}
.lede a { color: var(--lime); }

.stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 0.75rem;
}
.store {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  padding: 1rem 1.1rem 0.85rem;
}
.store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
}
.badge {
  display: block;
  max-height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.badge-play {
  /* Official Play PNG has extra transparent padding */
  max-height: 56px;
}
.soon {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.badge-note {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--lime);
  color: #16181e;
}

.legal-doc h1 {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  font-size: 1.85rem;
  letter-spacing: 0.02em;
}
.legal-doc h2 { font-size: 1.15rem; margin-top: 1.75rem; }
.legal-doc h3 { font-size: 1rem; color: var(--lime); }
.legal-doc p, .legal-doc li { color: #e8eae6; }
.legal-doc .meta { color: var(--muted); font-size: 0.9rem; }
.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.legal-doc th, .legal-doc td {
  text-align: left;
  border-bottom: 1px solid #2c303b;
  padding: 0.45rem 0.4rem;
  vertical-align: top;
}
.legal-doc ul { padding-left: 1.2rem; }

footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid #2c303b;
  color: var(--muted);
  font-size: 0.9rem;
}
footer a { color: var(--lime); }
