:root {
  --ink: #090c0e;
  --paper: #12100e;
  --muted: #b6a891;
  --red: #ff3f22;
  --teal: #0f8c8c;
  --gold: #ffd233;
  --green: #57a75b;
  --charcoal: #0d1114;
  --line: rgba(255, 210, 51, 0.22);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  cursor: url("assets/spliff-cursor.png") 8 56, auto;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff5dc;
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(255, 63, 34, 0.12), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(255, 210, 51, 0.1), transparent 30%);
  background-size: 20px 20px, 20px 20px, auto, auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff7eb;
  background: linear-gradient(180deg, rgba(24, 19, 19, 0.76), rgba(24, 19, 19, 0));
}

.brand {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 28px;
  line-height: 1;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  opacity: 0.88;
}

nav a:hover {
  opacity: 1;
}

nav a[aria-current="page"] {
  color: var(--gold);
  opacity: 1;
}

.auth-nav-link.has-profile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-avatar {
  width: 28px;
  height: 28px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.sound-toggle {
  min-height: 38px;
  border: 2px solid currentColor;
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff8ea;
  background: rgba(255, 248, 234, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sound-toggle[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--charcoal);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 9, 0.94) 0%, rgba(6, 8, 9, 0.7) 35%, rgba(6, 8, 9, 0.12) 72%),
    linear-gradient(180deg, rgba(6, 8, 9, 0.05) 44%, rgba(6, 8, 9, 0.86) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 148px clamp(18px, 6vw, 76px) 78px;
  color: #fff8ea;
}

.kicker,
.section-label,
.role {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(86px, 13vw, 172px);
  line-height: 0.82;
  letter-spacing: 0;
  color: #fff9ec;
  text-shadow:
    7px 7px 0 rgba(255, 63, 34, 0.82),
    12px 12px 0 rgba(0, 0, 0, 0.75);
}

h2 {
  margin-bottom: 0;
  max-width: 850px;
  font-size: clamp(30px, 4.8vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  line-height: 1.65;
}

.tagline {
  max-width: 530px;
  margin-bottom: 30px;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.16;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--gold);
  color: #11100d;
  background: var(--gold);
  box-shadow: 5px 5px 0 rgba(255, 63, 34, 0.9);
}

.button.ghost {
  color: #fff8ea;
  background: rgba(255, 248, 234, 0.08);
}

.text-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 63, 34, 0.04), transparent 48%),
    var(--ink);
  color: #fff8ea;
}

.intro,
.characters,
.episodes,
.world {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.intro p:last-child,
.world-copy p {
  margin-bottom: 0;
  color: rgba(255, 248, 234, 0.78);
  font-size: 18px;
}

.characters {
  background:
    linear-gradient(90deg, rgba(255, 63, 34, 0.11), rgba(15, 140, 140, 0.14)),
    #15110f;
}

.world {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.58)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.16), rgba(5, 6, 7, 0.82)),
    url("assets/pub-background.png") center / cover no-repeat;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.character-features {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.character-feature {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(18px, 4vw, 34px);
  border: 2px solid rgba(255, 210, 51, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 210, 51, 0.08), rgba(255, 63, 34, 0.04)),
    #1b1713;
  box-shadow: var(--shadow);
}

.character-feature.flip {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
}

.character-feature.flip .character-image-wrap {
  order: 2;
}

.character-image-wrap {
  overflow: hidden;
  border: 5px solid #070807;
  border-radius: 8px;
  background: #0c0d0f;
  box-shadow: 10px 10px 0 var(--gold);
}

.character-feature.dave .character-image-wrap,
.character-feature.steve-card .character-image-wrap {
  box-shadow: 10px 10px 0 var(--red);
}

.character-feature.bossman .character-image-wrap {
  box-shadow: 10px 10px 0 var(--teal);
}

.character-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.character-copy h3 {
  font-size: clamp(44px, 7vw, 96px);
  margin-bottom: 16px;
}

.character-copy p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #cfc1a9;
  font-size: 18px;
}

.catchphrase {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border: 2px dashed rgba(255, 210, 51, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 63, 34, 0.12), rgba(255, 210, 51, 0.07)),
    #181511;
}

.catchphrase strong {
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.catchphrase p {
  margin-bottom: 0;
  color: #d4c6ad;
  font-weight: 700;
}

.episodes .section-heading {
  color: #fff8ea;
}

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

.episode-list article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 210, 51, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 210, 51, 0.08), rgba(255, 63, 34, 0.05)),
    rgba(255, 248, 234, 0.04);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.24);
}

.episode-list span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 62px;
  line-height: 0.8;
}

.episode-list p {
  margin-bottom: 0;
  color: rgba(255, 248, 234, 0.75);
}

.world {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.world .section-label,
.characters .section-label,
.characters .role {
  color: var(--red);
}

.world-copy p {
  margin-top: 22px;
  color: #cfc1a9;
}

.tone-board {
  display: grid;
  gap: 12px;
}

.tone-board div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 2px solid rgba(255, 210, 51, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 63, 34, 0.08), rgba(15, 140, 140, 0.08)),
    #1b1713;
}

.tone-board strong {
  font-size: 15px;
  text-transform: uppercase;
}

.tone-board span {
  color: #cfc1a9;
  text-align: right;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff8ea;
  background: var(--ink);
}

footer p {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 32px;
  line-height: 1;
}

footer a {
  font-weight: 900;
  text-transform: uppercase;
}

.browse-body {
  background: #050607;
}

.auth-body {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.46)),
    url("assets/pub-background.png") center / cover fixed;
}

.browse-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.18));
}

.browse-page {
  min-height: 100svh;
}

.browse-hero {
  position: relative;
  min-height: 74svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: #050607;
}

.browse-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.browse-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.62) 42%, rgba(5, 6, 7, 0.12)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.08), #050607 94%);
}

.browse-hero-copy {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding: 148px clamp(18px, 5vw, 72px) 86px;
}

.browse-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.browse-meta span {
  border: 1px solid rgba(255, 210, 51, 0.32);
  border-radius: 4px;
  padding: 7px 10px;
  color: #f2e2bd;
  background: rgba(0, 0, 0, 0.36);
  font-size: 13px;
  font-weight: 800;
}

.season-feature,
.season-row {
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.season-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(255, 63, 34, 0.14), rgba(255, 210, 51, 0.05)),
    #050607;
}

.season-feature p:not(.section-label) {
  max-width: 860px;
  margin-top: 18px;
  margin-bottom: 0;
  color: #d6c8b0;
  font-size: 18px;
}

.play-button {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  padding: 14px 18px;
  color: #080808;
  background: var(--gold);
  box-shadow: 5px 5px 0 var(--red);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.season-row {
  background: #050607;
}

.row-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.row-heading h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.row-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rail-shell {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: stretch;
}

.rail-arrow {
  border: 1px solid rgba(255, 210, 51, 0.28);
  border-radius: 8px;
  color: #fff8ea;
  background:
    linear-gradient(180deg, rgba(255, 63, 34, 0.2), rgba(0, 0, 0, 0.2)),
    #11100e;
  cursor: pointer;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 48px;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.rail-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 210, 51, 0.62);
  background: var(--red);
}

.episode-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.episode-rail::-webkit-scrollbar {
  display: none;
}

.episode-rail.compact {
  grid-auto-columns: minmax(240px, 310px);
}

.episode-tile {
  overflow: hidden;
  min-height: 370px;
  border: 1px solid rgba(255, 210, 51, 0.22);
  border-radius: 8px;
  background: #15110f;
  scroll-snap-align: start;
  transition: transform 160ms ease, border-color 160ms ease;
}

.episode-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 51, 0.52);
}

.episode-tile.locked {
  opacity: 0.72;
}

.thumb {
  min-height: 168px;
  display: grid;
  align-items: end;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 63, 34, 0.75), rgba(255, 210, 51, 0.18)),
    url("assets/darren-dave-hero.png") center / cover;
}

.featured-tile .thumb {
  background:
    linear-gradient(135deg, rgba(255, 210, 51, 0.7), rgba(255, 63, 34, 0.22)),
    url("assets/darren-dave-hero.png") center / cover;
}

.thumb span {
  width: fit-content;
  color: #fff8ea;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 64px;
  line-height: 0.82;
  text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.72);
}

.tile-copy {
  padding: 18px;
}

.tile-copy h3 {
  min-height: 58px;
  margin-bottom: 10px;
}

.tile-copy p {
  min-height: 88px;
  margin-bottom: 14px;
  color: #d0c0a6;
}

.tile-copy small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.auth-page {
  min-height: 100svh;
  padding: 128px clamp(18px, 5vw, 72px) 64px;
}

.admin-page {
  min-height: 100svh;
  padding: 128px clamp(18px, 5vw, 72px) 64px;
}

.auth-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.auth-copy {
  max-width: 620px;
}

.auth-card,
.profile-picker {
  border: 2px solid rgba(255, 210, 51, 0.24);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 210, 51, 0.08), rgba(255, 63, 34, 0.05)),
    rgba(16, 13, 11, 0.92);
  box-shadow: var(--shadow);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.auth-tab {
  min-height: 44px;
  border: 2px solid rgba(255, 248, 234, 0.2);
  border-radius: 8px;
  color: #fff8ea;
  background: rgba(255, 248, 234, 0.06);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-tab.active {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.auth-form input {
  min-height: 48px;
  border: 2px solid rgba(255, 248, 234, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff8ea;
  background: rgba(0, 0, 0, 0.34);
  font: inherit;
}

.auth-form .newsletter-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff8ea;
}

.auth-form .newsletter-opt input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.auth-message {
  min-height: 24px;
  margin: 16px 0 0;
  color: #cfc1a9;
}

.auth-message[data-tone="error"] {
  color: #ff8a75;
}

.auth-message[data-tone="success"] {
  color: var(--gold);
}

.profile-picker {
  grid-column: 1 / -1;
}

.profile-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 18px;
}

.profile-card {
  display: grid;
  gap: 12px;
  border: 0;
  color: #fff8ea;
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border: 4px solid rgba(255, 248, 234, 0.18);
  border-radius: 8px;
  background: #0c0d0f;
  transition: transform 160ms ease, border-color 160ms ease;
}

.profile-card:hover img {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.profile-card strong {
  font-size: 15px;
}

.profile-actions {
  display: grid;
  gap: 8px;
}

.profile-actions button,
.avatar-option {
  min-height: 38px;
  border: 2px solid rgba(255, 248, 234, 0.18);
  border-radius: 8px;
  color: #fff8ea;
  background: rgba(255, 248, 234, 0.07);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-actions button:hover,
.avatar-option:hover {
  border-color: var(--gold);
  background: rgba(255, 210, 51, 0.18);
}

.avatar-editor,
.name-editor {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 210, 51, 0.24);
  padding-top: 24px;
}

.avatar-editor-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.avatar-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
}

.avatar-option {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.avatar-option img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}

.name-editor {
  display: grid;
  gap: 14px;
}

.name-editor label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.name-editor input {
  min-height: 48px;
  border: 2px solid rgba(255, 248, 234, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff8ea;
  background: rgba(0, 0, 0, 0.34);
  font: inherit;
}

.hidden {
  display: none !important;
}

.admin-locked,
.admin-dashboard,
.trend-panel,
.newsletter-panel {
  border: 2px solid rgba(255, 210, 51, 0.24);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 210, 51, 0.08), rgba(255, 63, 34, 0.05)),
    rgba(16, 13, 11, 0.94);
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.stat-card {
  border: 1px solid rgba(255, 210, 51, 0.22);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 248, 234, 0.06);
}

.stat-card span,
.newsletter-panel span,
.newsletter-panel small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.trend-panel,
.newsletter-panel {
  margin-top: 18px;
}

.trend-bars {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.trend-bar {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
}

.trend-bar span,
.trend-bar strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trend-bar div {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.1);
}

.trend-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.newsletter-list {
  display: grid;
  gap: 10px;
}

.privacy-note {
  max-width: 760px;
  margin: 8px 0 0;
  color: #cfc1a9;
  font-size: 14px;
}

.newsletter-list div,
.newsletter-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 210, 51, 0.14);
  padding: 12px 0;
}

.newsletter-entry {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.newsletter-entry:hover .email-value {
  color: var(--gold);
}

.newsletter-entry[aria-expanded="false"] .email-value {
  filter: blur(4px);
  user-select: none;
}

.newsletter-list span,
.email-value {
  color: #fff8ea;
  text-transform: none;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-art {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 10, 9, 0.88), rgba(12, 10, 9, 0.42)),
      linear-gradient(180deg, rgba(12, 10, 9, 0.12), rgba(12, 10, 9, 0.88));
  }

  .intro,
  .episode-list,
  .world,
  .catchphrase,
  .character-feature,
  .character-feature.flip {
    grid-template-columns: 1fr;
  }

  .character-feature.flip .character-image-wrap {
    order: 0;
  }

  .section-heading {
    display: block;
  }

  .season-feature {
    grid-template-columns: 1fr;
  }

  .rail-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .auth-panel {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
    padding-top: 14px;
  }

  .brand {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  nav {
    max-width: 210px;
    font-size: 12px;
    gap: 8px 14px;
  }

  .sound-toggle {
    width: 100%;
  }

  .hero-content {
    padding: 116px 18px 46px;
  }

  h1 {
    font-size: clamp(70px, 22vw, 104px);
  }

  .tagline {
    font-size: 20px;
  }

  .button {
    width: 100%;
  }

  .rail-shell {
    grid-template-columns: 1fr;
  }

  .rail-arrow {
    min-height: 42px;
    font-size: 34px;
  }

  .character-feature {
    min-height: auto;
  }

  .tone-board div,
  .row-heading,
  .profile-heading,
  .avatar-editor-header,
  .newsletter-list div,
  .newsletter-entry,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-grid,
  .trend-bar {
    grid-template-columns: 1fr;
  }

  .tone-board span {
    text-align: left;
  }
}
