@charset "utf-8";
/* Aurora Slots Club - core stylesheet
   Hand-authored, mobile-first. No framework, no build step.
   Naming: asc-<block>__<element>--<variant> */

/* ---------------------------------------------------------------- tokens */
:root {
  --asc-ink: #141414;
  --asc-ink-raise: #1c1c1c;
  --asc-ink-sink: #101010;
  --asc-ink-panel: #1e1e1e;
  --asc-gold: #f4c421;
  --asc-gold-deep: #d9a916;
  --asc-violet: #7544f5;      /* 5.38:1 with white - AA at 14px/600 */
  --asc-violet-deep: #6231e8; /* 6.72:1 */
  --asc-mint: #6dc8a8;
  --asc-paper: #ffffff;
  --asc-text: #ffffff;
  --asc-quiet: #a5abb6;
  --asc-hairline: rgba(255, 255, 255, .1);
  --asc-hairline-soft: rgba(255, 255, 255, .05);
  --asc-round: 16px;
  --asc-round-lg: 30px;
  --asc-shell: 1200px;
  --asc-gutter: 20px;
  --asc-display: "Syne", "Trebuchet MS", system-ui, sans-serif;
  --asc-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --asc-lift: 0 12px 30px rgba(0, 0, 0, .3);
  --asc-ease: cubic-bezier(.4, 0, .2, 1);
}

/* ------------------------------------------------------------ foundation */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--asc-ink);
  color: var(--asc-text);
  font-family: var(--asc-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--asc-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--asc-gold); }

button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--asc-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.asc-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--asc-gold);
  color: var(--asc-ink);
  font-weight: 700;
  border-radius: 0 0 10px 0;
}
.asc-skip:focus { left: 0; }

.asc-hidden, [hidden] { display: none !important; }

.asc-reader {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.asc-shell {
  width: 100%;
  max-width: var(--asc-shell);
  margin-inline: auto;
  padding-inline: var(--asc-gutter);
}

/* ---------------------------------------------------------- age notice */
.asc-alert {
  background: var(--asc-gold);
  color: var(--asc-ink);
  padding: 7px 12px;
  text-align: center;
}
.asc-alert p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.35;
}

/* -------------------------------------------------------------- masthead */
.asc-mast {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(24, 24, 24, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--asc-hairline-soft);
}
.asc-mast__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 10px;
}

.asc-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex: 0 0 auto;
}
.asc-brand__mark { width: 34px; height: 34px; flex: 0 0 auto; }
.asc-brand__word {
  font-family: var(--asc-display);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--asc-text);
}
.asc-brand__word b { display: block; font-weight: 800; color: var(--asc-gold); }
.asc-brand--hero { flex-direction: column; gap: 14px; }
.asc-brand--hero .asc-brand__mark { width: 76px; height: 76px; }
.asc-brand--hero .asc-brand__word { font-size: 30px; letter-spacing: .06em; text-align: center; }
.asc-brand--foot .asc-brand__mark { width: 40px; height: 40px; }

.asc-nav { display: none; }
.asc-nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.asc-nav__link {
  color: var(--asc-quiet);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding-block: 4px;
  transition: color .2s var(--asc-ease);
}
.asc-nav__link:hover { color: var(--asc-text); }
.asc-nav__link--current { color: var(--asc-gold); }

.asc-mast__actions { display: none; margin-left: auto; gap: 10px; }

.asc-burger {
  margin-left: auto;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--asc-hairline);
  border-radius: 11px;
  color: var(--asc-text);
  cursor: pointer;
}
.asc-burger svg { width: 20px; height: 20px; }
.asc-burger__shut { display: none; }
.asc-burger[aria-expanded="true"] .asc-burger__open { display: none; }
.asc-burger[aria-expanded="true"] .asc-burger__shut { display: block; }

.asc-drawer {
  border-top: 1px solid var(--asc-hairline);
  background: var(--asc-ink-raise);
}
.asc-drawer__list {
  list-style: none;
  margin: 0;
  padding: 14px 0 18px;
  display: grid;
  gap: 2px;
}
.asc-drawer__link {
  display: block;
  padding: 11px 4px;
  color: var(--asc-text);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--asc-hairline-soft);
}
.asc-drawer__link--current { color: var(--asc-gold); }
.asc-drawer__pair { display: flex; gap: 10px; padding-top: 16px; }
.asc-drawer__pair .asc-cta { flex: 1; }

/* --------------------------------------------------------------- buttons */
.asc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--asc-violet);
  color: #fff;
  font-family: var(--asc-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s var(--asc-ease), transform .2s var(--asc-ease);
}
.asc-cta:hover { background: var(--asc-violet-deep); }
.asc-cta:active { transform: translateY(1px); }
.asc-cta--gold { background: var(--asc-gold); color: var(--asc-ink); }
.asc-cta--gold:hover { background: var(--asc-gold-deep); }
.asc-cta--quiet {
  background: transparent;
  border-color: var(--asc-hairline);
  color: var(--asc-text);
}
.asc-cta--quiet:hover { background: rgba(255, 255, 255, .07); }
.asc-cta--small { padding: 9px 18px; font-size: 13px; }
.asc-cta--block { width: 100%; }

/* ------------------------------------------------------------------ hero */
.asc-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, .2), rgba(20, 20, 20, .82)),
    var(--asc-ink-sink) url("../img/hero-aurora.webp") center top / cover no-repeat;
  padding-block: 46px 132px;
  text-align: center;
}
.asc-hero__inner { display: grid; justify-items: center; gap: 18px; }
.asc-hero__title {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  max-width: 18ch;
}
.asc-hero__title em {
  font-style: normal;
  color: var(--asc-gold);
}
.asc-hero__lede {
  max-width: 56ch;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}
.asc-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.asc-hero--slim { padding-block: 40px 108px; }

/* -------------------------------------------------------------- crumbs */
.asc-crumbs { padding-block: 14px; }
.asc-crumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: var(--asc-quiet);
}
.asc-crumbs__list li::after { content: "/"; padding-left: 6px; opacity: .5; }
.asc-crumbs__list li:last-child::after { content: none; }
.asc-crumbs a { color: var(--asc-quiet); text-decoration: none; }
.asc-crumbs a:hover { color: var(--asc-gold); }

/* ------------------------------------------------------------- pillars */
.asc-pillars { margin-top: -104px; position: relative; z-index: 2; padding-bottom: 8px; }
.asc-pillars__card {
  max-width: 900px;
  margin-inline: auto;
  background: var(--asc-gold);
  border-radius: var(--asc-round);
  padding: 22px;
  color: var(--asc-ink);
}
.asc-pillars__head { text-align: center; }
.asc-pillars__head h2 { font-size: 20px; }
.asc-pillars__head p { margin-top: 8px; font-size: 14px; max-width: 60ch; margin-inline: auto; }
.asc-pillars__grid { display: grid; gap: 14px; margin-top: 20px; }
.asc-pillar {
  display: flex;
  gap: 12px;
  background: var(--asc-paper);
  border-radius: 12px;
  padding: 13px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}
.asc-pillar__glyph { width: 38px; height: 38px; flex: 0 0 auto; }
.asc-pillar h3 { font-size: 14px; color: var(--asc-ink); }
.asc-pillar p { margin-top: 5px; font-size: 11.5px; line-height: 1.5; color: rgba(20, 20, 20, .62); }

/* -------------------------------------------------------------- bands */
.asc-band { padding-block: 44px; }
.asc-band--sink { background: var(--asc-ink-sink); }
.asc-band--tight { padding-block: 30px; }

.asc-lede { max-width: 66ch; margin-inline: auto; text-align: center; }
.asc-lede--left { margin-inline: 0; text-align: left; max-width: none; }
.asc-lede h2 { font-size: 27px; }
.asc-lede h3 { font-size: 21px; }
.asc-lede p { margin-top: 12px; color: var(--asc-quiet); }
.asc-lede p + p { margin-top: 10px; }
.asc-lede strong { color: var(--asc-gold); font-weight: 600; }

/* -------------------------------------------------------------- games */
.asc-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.asc-tile { display: flex; flex-direction: column; }
.asc-tile__launch {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--asc-ink-panel);
  border-radius: var(--asc-round);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .2s var(--asc-ease), box-shadow .2s var(--asc-ease);
}
.asc-tile__launch img {
  width: 100%;
  height: auto;
  aspect-ratio: 414 / 504;
  object-fit: cover;
  border-radius: var(--asc-round);
}
.asc-tile__launch::after {
  content: "Play free";
  position: absolute;
  inset-inline: 10px;
  bottom: 10px;
  padding: 7px;
  border-radius: 100px;
  background: var(--asc-violet);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s var(--asc-ease), transform .2s var(--asc-ease);
}
.asc-tile__launch:hover { transform: translateY(-4px); box-shadow: var(--asc-lift); }
.asc-tile__launch:hover::after, .asc-tile__launch:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.asc-tile__name { margin-top: 10px; font-size: 15px; }
.asc-tile__name a { color: var(--asc-text); text-decoration: none; }
.asc-tile__name a:hover { color: var(--asc-gold); }
.asc-tile__meta { margin-top: 3px; font-size: 11.5px; color: var(--asc-quiet); }
.asc-tiles__more { margin-top: 28px; text-align: center; }

/* ------------------------------------------------------------ game stage */
.asc-stage {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(0, 0, 0, .84);
}
.asc-stage[data-open] { display: flex; }
.asc-stage__panel {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: min(86vh, 100%);
  background: var(--asc-ink-panel);
  border-radius: var(--asc-round);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
  display: flex;
  flex-direction: column;
}
.asc-stage__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--asc-hairline);
  flex: 0 0 auto;
}
.asc-stage__title {
  font-family: var(--asc-display);
  font-size: 14px;
  font-weight: 700;
}
.asc-stage__tag {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--asc-quiet);
  border: 1px solid var(--asc-hairline);
  border-radius: 100px;
  padding: 3px 9px;
}
.asc-stage__shut {
  margin-left: auto;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--asc-violet);
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
}
.asc-stage__shut svg { width: 16px; height: 16px; }
.asc-stage__shut:hover { background: var(--asc-violet-deep); }
.asc-stage__frame { flex: 1 1 auto; width: 100%; border: 0; background: #000; }

/* -------------------------------------------------------------- promo */
.asc-promo {
  position: relative;
  overflow: hidden;
  border-radius: var(--asc-round-lg);
  background: linear-gradient(115deg, var(--asc-gold) 0%, #f0b90f 48%, #c98f10 100%);
  color: var(--asc-ink);
  padding: 26px 22px;
  text-align: center;
}
.asc-promo__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  pointer-events: none;
}
.asc-promo__body { position: relative; z-index: 1; }
.asc-promo h2 { font-size: 24px; text-transform: uppercase; }
.asc-promo p { margin-top: 10px; font-size: 14px; color: rgba(20, 20, 20, .86); }
.asc-promo__actions { margin-top: 18px; }
.asc-promo .asc-cta { background: var(--asc-ink); color: #fff; }
.asc-promo .asc-cta:hover { background: #000; }

/* ---------------------------------------------------------- leaderboard */
.asc-ranks {
  max-width: 880px;
  margin: 28px auto 0;
  border: 1px solid var(--asc-hairline);
  border-radius: var(--asc-round);
  background: var(--asc-ink-panel);
  overflow: hidden;
}
.asc-ranks__head { padding: 16px 14px; border-bottom: 1px solid var(--asc-hairline-soft); }
.asc-ranks__head h3 { font-size: 16px; }
.asc-ranks__head p { margin-top: 4px; font-size: 12px; color: var(--asc-quiet); }
.asc-ranks__table { width: 100%; border-collapse: collapse; }
.asc-ranks__table th, .asc-ranks__table td {
  padding: 11px 12px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--asc-hairline-soft);
}
.asc-ranks__table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--asc-quiet);
  background: rgba(255, 255, 255, .04);
}
.asc-ranks__table tr:last-child td { border-bottom: 0; }
.asc-ranks__table td:last-child, .asc-ranks__table th:last-child { text-align: right; }
.asc-ranks__who { display: flex; align-items: center; gap: 10px; }
.asc-ranks__game, .asc-ranks__score { color: var(--asc-quiet); }
.asc-ranks__hide { display: none; }
.asc-avatar { width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto; }
.asc-badge { width: 26px; height: 26px; display: inline-block; }
.asc-ranks__foot {
  padding: 12px 14px;
  font-size: 11px;
  color: var(--asc-quiet);
  background: rgba(255, 255, 255, .03);
  text-align: center;
}

/* --------------------------------------------------------------- voices */
.asc-voices { display: grid; gap: 14px; margin-top: 28px; list-style: none; padding: 0; }
.asc-voice {
  display: flex;
  flex-direction: column;
  background: var(--asc-gold);
  color: var(--asc-ink);
  border-radius: var(--asc-round);
  padding: 18px;
}
.asc-voice__title { font-size: 16px; color: var(--asc-ink); }
.asc-voice p { margin-top: 10px; flex: 1; font-size: 13px; line-height: 1.65; color: rgba(20, 20, 20, .86); }

/* ----------------------------------------------------------------- FAQ */
.asc-drops { display: grid; gap: 10px; margin-top: 28px; max-width: 980px; margin-inline: auto; }
.asc-drop {
  border: 1px solid var(--asc-hairline);
  border-radius: 12px;
  background: var(--asc-ink-raise);
  overflow: hidden;
}
.asc-drop__q {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px;
  background: none;
  border: 0;
  color: var(--asc-text);
  font-family: var(--asc-display);
  font-size: 14.5px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.asc-drop__q span { flex: 1; }
.asc-drop__sign {
  position: relative;
  width: 16px; height: 16px;
  flex: 0 0 auto;
}
.asc-drop__sign::before, .asc-drop__sign::after {
  content: "";
  position: absolute;
  background: var(--asc-gold);
  border-radius: 2px;
  transition: transform .22s var(--asc-ease);
}
.asc-drop__sign::before { inset: 7px 0; height: 2px; }
.asc-drop__sign::after { inset: 0 7px; width: 2px; }
.asc-drop__q[aria-expanded="true"] .asc-drop__sign::after { transform: scaleY(0); }
.asc-drop__a {
  padding: 0 15px 15px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--asc-quiet);
}
.asc-drop__a p + p { margin-top: 9px; }

/* --------------------------------------------------------------- steps */
.asc-steps { display: grid; gap: 14px; margin-top: 28px; list-style: none; padding: 0; counter-reset: asc-step; }
.asc-step {
  position: relative;
  background: var(--asc-ink-raise);
  border: 1px solid var(--asc-hairline);
  border-radius: var(--asc-round);
  padding: 20px 18px 18px;
}
.asc-step__num {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--asc-violet);
  color: #fff;
  font-family: var(--asc-display);
  font-weight: 700;
  font-size: 15px;
}
.asc-step h3 { margin-top: 12px; font-size: 17px; }
.asc-step p { margin-top: 8px; font-size: 13.5px; color: var(--asc-quiet); }

/* --------------------------------------------------------------- cards */
.asc-cards { display: grid; gap: 14px; margin-top: 28px; list-style: none; padding: 0; }
.asc-card {
  background: var(--asc-ink-raise);
  border: 1px solid var(--asc-hairline);
  border-radius: var(--asc-round);
  padding: 20px;
}
.asc-card__glyph { width: 34px; height: 34px; }
.asc-card h3 { margin-top: 12px; font-size: 16px; }
.asc-card p { margin-top: 8px; font-size: 13.5px; color: var(--asc-quiet); }
.asc-card ul { margin: 10px 0 0; padding-left: 18px; font-size: 13.5px; color: var(--asc-quiet); }
.asc-card li + li { margin-top: 5px; }

/* --------------------------------------------------------------- prose */
.asc-prose { max-width: 76ch; margin-inline: auto; }
.asc-prose h2 { font-size: 22px; margin-top: 32px; }
.asc-prose h2:first-child { margin-top: 0; }
.asc-prose h3 { font-size: 17px; margin-top: 22px; }
.asc-prose p, .asc-prose li { color: var(--asc-quiet); font-size: 14.5px; line-height: 1.75; }
.asc-prose p { margin-top: 12px; }
.asc-prose ul { margin: 12px 0 0; padding-left: 20px; }
.asc-prose li + li { margin-top: 7px; }
.asc-prose strong { color: var(--asc-text); }
.asc-prose__stamp {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--asc-hairline);
  border-radius: 100px;
  font-size: 11.5px;
  color: var(--asc-quiet);
}

/* ---------------------------------------------------------------- note */
.asc-note {
  display: flex;
  gap: 13px;
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(244, 196, 33, .35);
  border-radius: 12px;
  background: rgba(244, 196, 33, .07);
}
.asc-note__glyph { width: 26px; height: 26px; flex: 0 0 auto; }
.asc-note p { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, .78); }
.asc-note h2 { font-size: 14px; margin-bottom: 4px; }

/* ---------------------------------------------------------------- forms */
.asc-panel {
  max-width: 480px;
  margin-inline: auto;
  background: var(--asc-ink-raise);
  border: 1px solid var(--asc-hairline);
  border-radius: var(--asc-round);
  padding: 24px 20px;
}
.asc-panel__head { text-align: center; margin-bottom: 20px; }
.asc-panel__head h1 { font-size: 24px; }
.asc-panel__head p { margin-top: 8px; font-size: 13.5px; color: var(--asc-quiet); }
.asc-form { display: grid; gap: 15px; }
.asc-field { display: grid; gap: 6px; }
.asc-field label { font-size: 12.5px; font-weight: 600; color: rgba(255, 255, 255, .85); }
.asc-field input, .asc-field textarea, .asc-field select {
  width: 100%;
  padding: 11px 13px;
  background: var(--asc-ink-sink);
  border: 1px solid var(--asc-hairline);
  border-radius: 10px;
  color: var(--asc-text);
  font-family: var(--asc-body);
  font-size: 15px;
}
.asc-field textarea { min-height: 130px; resize: vertical; }
.asc-field input::placeholder, .asc-field textarea::placeholder { color: rgba(255, 255, 255, .5); }
.asc-field input:focus, .asc-field textarea:focus, .asc-field select:focus {
  outline: none;
  border-color: var(--asc-violet);
  box-shadow: 0 0 0 3px rgba(117, 68, 245, .35);
}
.asc-field__hint { font-size: 11.5px; color: var(--asc-quiet); }
.asc-field__error { font-size: 12px; color: #ff9a8b; }
.asc-field input[aria-invalid="true"], .asc-field textarea[aria-invalid="true"] { border-color: #ff9a8b; }

.asc-check { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start; }
.asc-check .asc-field__error { flex: 0 0 100%; margin: 0; }
.asc-check input {
  width: 19px; height: 19px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--asc-violet);
}
.asc-check label { font-size: 12.5px; line-height: 1.55; color: var(--asc-quiet); }
.asc-check label a { color: var(--asc-gold); }

.asc-form__foot { margin-top: 4px; font-size: 13px; color: var(--asc-quiet); text-align: center; }
.asc-flash {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(109, 200, 168, .4);
  background: rgba(109, 200, 168, .1);
  font-size: 13.5px;
  color: #d6f2e8;
}

/* -------------------------------------------------------------- 404 */
.asc-lost { text-align: center; padding-block: 60px; }
.asc-lost__code {
  font-family: var(--asc-display);
  font-size: 76px;
  line-height: 1;
  font-weight: 800;
  color: var(--asc-gold);
}
.asc-lost h1 { margin-top: 12px; font-size: 26px; }
.asc-lost p { margin-top: 12px; color: var(--asc-quiet); max-width: 52ch; margin-inline: auto; }
.asc-lost__actions { margin-top: 24px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------- foot */
.asc-foot {
  border-top: 1px solid var(--asc-hairline);
  padding-block: 36px 30px;
  margin-top: 8px;
}
.asc-foot__inner { display: grid; gap: 22px; justify-items: center; text-align: center; }
.asc-foot__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.asc-foot__nav a {
  font-size: 12.5px;
  color: var(--asc-quiet);
  text-decoration: none;
}
.asc-foot__nav a:hover { color: var(--asc-gold); }
.asc-foot__legal { max-width: 78ch; font-size: 11.5px; line-height: 1.65; color: var(--asc-quiet); }
.asc-foot__legal p + p { margin-top: 8px; }
.asc-foot__marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.asc-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px 7px 9px;
  border: 1px solid var(--asc-hairline);
  border-radius: 100px;
  background: rgba(255, 255, 255, .03);
  text-decoration: none;
}
.asc-mark svg { width: 24px; height: 24px; flex: 0 0 auto; }
.asc-mark__text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  line-height: 1.25;
  text-align: left;
}
a.asc-mark:hover { border-color: rgba(244, 196, 33, .5); }
a.asc-mark:hover .asc-mark__text { color: var(--asc-gold); }
.asc-foot__copy { font-size: 11px; color: var(--asc-quiet); }

/* --------------------------------------------------------- game detail */
.asc-title { display: grid; gap: 20px; margin-top: 24px; }
.asc-title__art {
  border-radius: var(--asc-round);
  overflow: hidden;
  background: var(--asc-ink-panel);
  max-width: 320px;
}
.asc-title__art img { width: 100%; height: auto; aspect-ratio: 414 / 504; object-fit: cover; }
.asc-title__body h1 { font-size: 28px; }
.asc-title__spec {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid var(--asc-hairline);
  border-radius: 12px;
  background: var(--asc-ink-raise);
  font-size: 13px;
}
.asc-title__spec div { display: flex; justify-content: space-between; gap: 14px; }
.asc-title__spec dt { color: var(--asc-quiet); }
.asc-title__spec dd { margin: 0; font-weight: 600; text-align: right; }
.asc-title__actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ------------------------------------------------------ reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ------------------------------------------------------------ >= 480px */
@media (min-width: 480px) {
  .asc-alert p { font-size: 12px; }
  .asc-hero__title { font-size: 38px; }
  .asc-voices, .asc-cards, .asc-steps { gap: 16px; }
  .asc-ranks__hide { display: table-cell; }
}

/* ------------------------------------------------------------ >= 640px */
@media (min-width: 640px) {
  :root { --asc-gutter: 24px; }
  .asc-hero { padding-block: 70px 150px; }
  .asc-hero__title { font-size: 44px; }
  .asc-hero__lede { font-size: 16px; }
  .asc-pillars__card { padding: 30px; }
  .asc-pillars__head h2 { font-size: 26px; }
  .asc-pillars__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .asc-pillar { flex-direction: column; }
  .asc-band { padding-block: 56px; }
  .asc-lede h2 { font-size: 32px; }
  .asc-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .asc-voices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .asc-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .asc-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .asc-promo { padding: 40px 34px; }
  .asc-promo h2 { font-size: 30px; }
  .asc-stage { padding: 16px; }
  .asc-panel { padding: 32px 30px; }
  .asc-lost__code { font-size: 110px; }
  .asc-title { grid-template-columns: 300px minmax(0, 1fr); align-items: start; gap: 28px; }
  .asc-title__art { max-width: none; }
}

/* ------------------------------------------------------------ >= 900px */
@media (min-width: 900px) {
  :root { --asc-gutter: 32px; }
  .asc-burger { display: none; }
  .asc-drawer { display: none !important; }
  .asc-nav { display: block; margin-inline: auto; }
  .asc-mast__actions { display: flex; }
  .asc-hero { padding-block: 96px 170px; }
  .asc-hero__title { font-size: 52px; }
  .asc-brand--hero .asc-brand__mark { width: 92px; height: 92px; }
  .asc-brand--hero .asc-brand__word { font-size: 38px; }
  .asc-band { padding-block: 64px; }
  .asc-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .asc-voices, .asc-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .asc-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .asc-drops { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
  .asc-promo { text-align: left; padding: 54px 46px; }
  .asc-promo__body { max-width: 54%; margin-left: auto; }
  .asc-stage__panel { height: auto; aspect-ratio: 16 / 9; max-height: 88vh; }
  .asc-ranks__table th, .asc-ranks__table td { padding: 13px 18px; font-size: 14px; }
}
