/* IF YOU'RE LOOKING THROUGH MY CODE, I DO NOT USE AI FOR MY CODE, I DESPISE AI, I ADD TAGS SO I CAN REMEMBER WHICH IS WHICH, I HAVE HORRIBLE MEMORY ISSUES*/

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

:root {
  --bg:        #0a0508;
  --bg-2:      #130914;
  --bg-3:      #1d0d20;
  --border:    #37163a;
  --text:      #f2e4f5;
  --text-muted:#8a6b91;
  --pink:      #ff1a8c;
  --pink-hot:  #ff3ea0;
  --pink-soft: #ff8fc6;
  --cyan:      #26e7ff;
  --header-h:  50px;
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  min-height: 100vh;
}

a { color: inherit; }

/* ── HEADER ─────────────────────────────────────────── */
.header {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 5, 8, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
  transition: color 0.2s;
  font-family: 'Courier New', monospace;
}
.brand:hover { color: var(--pink-soft); }

.page-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pink);
  text-transform: uppercase;
}

.header-spacer { flex: 1; }

.header-link {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.header-link:hover { color: var(--pink-soft); }

/* ── ALERTS (above hero) ────────────────────────────── */
.alerts {
  max-width: 820px;
  margin: 1.5rem auto 0;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.alerts-predownload {
  margin: 2rem auto 0;
}

.alert-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-2);
  line-height: 1.55;
}

.alert-card.alert-warn {
  border-color: var(--pink);
  background: rgba(255, 26, 140, 0.08);
  animation: alertPulse 2.4s ease-in-out infinite;
}
.alert-card.alert-info {
  border-color: var(--cyan);
  background: rgba(38, 231, 255, 0.06);
}

@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 26, 140, 0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 26, 140, 0);   }
}

.alert-icon {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #fff;
}
.alert-warn .alert-icon { background: var(--pink); }
.alert-info .alert-icon { background: var(--cyan); color: #0a0508; }

.alert-body { flex: 1; font-size: 13px; }
.alert-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.alert-warn .alert-title { color: var(--pink-soft); }
.alert-info .alert-title { color: var(--cyan); }
.alert-body p { color: var(--text); }

/* ── FAVORITE CHARACTER ─────────────────────────────── */
.char-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  max-width: 980px;
  margin: 1rem auto 0;
}

.char-media {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.char-scene,
.char-portrait {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
}

.char-scene img,
.char-portrait img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
}

/* BPM-style beat pulse on the scene viewer thumb.
   Tempo = 128 BPM → 0.46875s per beat. */
.char-scene {
  animation: bpmPulse 0.46875s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 26, 140, 0.6);
}

@keyframes bpmPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 26, 140, 0.55);
    border-color: var(--pink);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 0 24px 6px rgba(255, 26, 140, 0.35);
    border-color: var(--pink-hot);
  }
}

.char-info { display: flex; flex-direction: column; gap: 1.1rem; }

.char-head {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.char-name {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--pink);
}
.char-caption {
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
}

.char-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.6rem 1.5rem;
  margin: 0;
}
.char-stats > div { display: flex; flex-direction: column; gap: 0.15rem; }
.char-stats dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.char-stats dd { font-size: 14px; color: var(--text); margin: 0; }

.char-lore h4,
.char-hobbies h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 0.45rem;
}
.char-lore p { font-size: 14px; line-height: 1.6; color: var(--text); }

.char-accent     { color: #d4c2d8; }
.char-accent-zoe { color: #c9aef0; }

.char-hobbies ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.char-hobbies li {
  font-size: 14px;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}
.char-hobbies li::before {
  content: '♪';
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--pink);
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--pink);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  color: var(--text);
}

.hero-title .accent { color: var(--pink); }

.hero-logo {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 1.1rem;
  -webkit-user-drag: none;
  user-select: none;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.meta-pill {
  font-size: 11px;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.02);
  font-family: 'Courier New', monospace;
}

.meta-pill.adult {
  border-color: var(--pink);
  color: var(--pink-soft);
  background: rgba(255, 26, 140, 0.08);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  background: var(--pink);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.15s;
}

.hero-cta:hover { background: var(--pink-hot); }

.hero-cta::after {
  content: '↓';
  font-size: 14px;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

/* ── SECTION ────────────────────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.section-title .accent {
  color: var(--pink);
}

.section-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 2rem;
}

.about-body {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── ABOUT ──────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.about-card:hover {
  border-color: var(--pink);
}

.about-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--pink-soft);
}

.about-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── GALLERY ────────────────────────────────────────── */
.gallery-section { text-align: center; }

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.gallery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-3);
  border: 1px solid var(--pink);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.gallery-toggle:hover {
  background: var(--pink);
  color: #fff;
}
.gallery-toggle-icon {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.gallery-wrap {
  margin-top: 1.25rem;
}
.gallery-wrap[hidden] { display: none; }

.gallery-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.gallery-topbar .section-sub { margin: 0; text-align: left; }

.gallery-close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.gallery-close:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-2);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.15s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
}

.gallery-item:hover { border-color: var(--pink); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fade-in 0.25s ease;
}

.lightbox.visible { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover { background: var(--pink); border-color: var(--pink); }

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── DOWNLOAD ───────────────────────────────────────── */
.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 1.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.download {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
}

/* Transparency box — file listing */
.contents-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  font-size: 12px;
  text-align: left;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.contents-head { margin-bottom: 0.75rem; }
.contents-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-soft);
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}
.contents-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.contents-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.contents-tab {
  flex: 1;
  padding: 0.45rem 0.6rem;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-3);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.contents-tab:hover { color: var(--text); }
.contents-tab.active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.contents-panel[hidden] { display: none; }

.file-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Courier New', monospace;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.file-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  font-size: 11px;
  line-height: 1.35;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.file-row:last-child { border-bottom: none; }
.file-row:nth-child(even) { background: rgba(255, 255, 255, 0.015); }

.file-icon { color: var(--pink); text-align: center; }
.file-row.dir .file-icon { color: var(--cyan); }
.file-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-row.dir .file-name { color: var(--cyan); font-weight: 700; }
.file-size {
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.contents-foot {
  margin-top: 0.75rem;
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

.download-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.download-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.platform-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 26, 140, 0.08);
  border: 1px solid var(--pink);
  border-radius: 4px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.platform-warning-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0;
  min-height: 70px;
}

.download-btns {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  color: var(--text);
  cursor: not-allowed;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.2s, background 0.15s, border-color 0.15s;
}

.dl-btn.unlocked {
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
}

.dl-btn.game {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.dl-btn.game.unlocked:hover { background: var(--pink-hot); border-color: var(--pink-hot); }
.dl-btn.src.unlocked:hover  { border-color: var(--pink); }

.download-note {
  margin-top: 0.75rem;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.dl-meta {
  font-size: 10px;
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
}

.download-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1.25rem;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
}

/* ── CREDITS ────────────────────────────────────────── */
.credits {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.8;
  font-family: 'Courier New', monospace;
}

.credits a {
  color: var(--pink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.credits a:hover { color: var(--pink); }

/* ── AGE GATE ───────────────────────────────────────── */
.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 2, 6, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-gate.visible { display: flex; }

.age-gate-inner {
  max-width: 480px;
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  text-align: center;
  animation: ag-slide 0.25s ease;
}

@keyframes ag-slide {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.age-gate-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 26, 140, 0.15);
  border: 1px solid var(--pink);
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--pink);
  letter-spacing: -0.04em;
}

.age-gate h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  margin-bottom: 0.5rem;
}

.age-gate p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.age-gate-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.age-gate-btn {
  flex: 1;
  max-width: 160px;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
  text-decoration: none;
  text-align: center;
}

.age-gate-btn.yes {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.age-gate-btn.yes:hover { background: var(--pink-hot); border-color: var(--pink-hot); }

.age-gate-btn.no {
  background: transparent;
  color: var(--text-muted);
}
.age-gate-btn.no:hover { color: var(--text); border-color: var(--text-muted); }

body.gated { overflow: hidden; }

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem 2rem;
    gap: 2rem;
    text-align: center;
  }
  .hero-text { order: 2; }
  .hero-art { order: 1; }
  .hero-art img { max-height: 360px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-meta { justify-content: center; }

  .about { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  .char-card { grid-template-columns: 1fr; padding: 1.1rem; gap: 1.25rem; }
  .char-media { flex-direction: row; }
  .char-media > * { flex: 1; }
  .char-name { font-size: 24px; }

  .download-grid { grid-template-columns: 1fr; }
  .contents-box { position: static; }

  .section { padding: 2rem 1rem; }
  .section-title { font-size: 22px; }
  .download { padding: 1.5rem 1.25rem; }
  .download-title { font-size: 18px; }
  .dl-btn { padding: 0.85rem 1.2rem; font-size: 13px; }

  .age-gate-inner { padding: 1.75rem 1.25rem; }
  .age-gate h2 { font-size: 19px; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .download-btns { flex-direction: column; align-items: stretch; }
  .dl-btn { justify-content: center; }
  .age-gate-btns { flex-direction: column; }
  .age-gate-btn { max-width: none; }
  .char-media { flex-direction: column; }
  .alerts { padding: 0 0.75rem; }
}

