:root {
  --bg: #07070a;
  --panel: #121219;
  --panel-strong: #1a1a23;
  --text: #fff8e8;
  --muted: #c9c0ae;
  --yellow: #ffbd16;
  --yellow-soft: rgba(255, 189, 22, 0.16);
  --pink: #d84cff;
  --cyan: #32d7ff;
  --green: #83ff65;
  --line: rgba(255, 189, 22, 0.46);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --hard-shadow: 7px 7px 0 #000;
  --display: Impact, "Arial Black", "Segoe UI Black", sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 189, 22, 0.2), transparent 23rem),
    radial-gradient(circle at 90% 12%, rgba(216, 76, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 68% 72%, rgba(50, 215, 255, 0.08), transparent 27rem),
    linear-gradient(180deg, #020203 0%, var(--bg) 48%, #101014 100%);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  content: "";
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 18rem;
  background: linear-gradient(to top, rgba(255, 189, 22, 0.08), transparent);
  content: "";
  pointer-events: none;
}

.spray {
  position: fixed;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 189, 22, 0.24) 0 0.24rem, transparent 0.28rem),
    radial-gradient(circle at 64% 24%, rgba(216, 76, 255, 0.18) 0 0.18rem, transparent 0.22rem),
    radial-gradient(circle at 52% 74%, rgba(50, 215, 255, 0.16) 0 0.2rem, transparent 0.24rem),
    radial-gradient(circle, rgba(255, 189, 22, 0.12), transparent 62%);
  opacity: 0.82;
  pointer-events: none;
}

.spray-one {
  top: 8rem;
  left: -5rem;
}

.spray-two {
  right: -4rem;
  bottom: 12rem;
  transform: rotate(24deg);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background: rgba(7, 7, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  place-items: center;
  color: #111;
  background:
    radial-gradient(circle at 35% 22%, #fff1ad, transparent 26%),
    var(--yellow);
  border: 3px solid var(--text);
  border-radius: 50%;
  box-shadow: 5px 5px 0 #000;
  font-family: var(--display);
  font-size: 1.1rem;
}

.brand-text {
  display: grid;
  gap: 0;
  font-family: var(--display);
  line-height: 0.82;
  text-shadow: 3px 3px 0 #000;
}

.brand-text strong {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
}

.brand-text em {
  color: var(--yellow);
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.15rem);
  font-family: var(--display);
  font-size: 1.08rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  text-shadow: 2px 2px 0 #000;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.34rem;
  left: 0;
  height: 0.22rem;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.section-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1.22fr);
  gap: clamp(1.1rem, 3.6vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding: clamp(1.6rem, 4vw, 4.2rem) 0 clamp(1.2rem, 3vw, 2.8rem);
}

.hero::before {
  position: absolute;
  top: 8%;
  left: 39%;
  width: 8rem;
  height: 8rem;
  background:
    linear-gradient(45deg, transparent 44%, rgba(255, 189, 22, 0.35) 45% 55%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, rgba(255, 189, 22, 0.18) 45% 55%, transparent 56%);
  opacity: 0.65;
  transform: rotate(8deg);
  content: "";
  pointer-events: none;
}

.eyebrow,
h1,
h2,
h3,
.button,
.studio-lockup,
.feature-label,
.store-badge {
  font-family: var(--display);
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--yellow);
  font-size: 1rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000;
}

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

.studio-lockup {
  display: inline-grid;
  margin-bottom: 1rem;
  padding: 0.55rem 0.75rem 0.45rem;
  background: linear-gradient(135deg, rgba(255, 189, 22, 0.18), rgba(216, 76, 255, 0.12));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--hard-shadow);
  line-height: 0.82;
  transform: rotate(-1.5deg);
}

.studio-lockup span {
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  text-shadow: 4px 4px 0 #000;
}

.studio-lockup strong {
  color: var(--yellow);
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  text-shadow: 4px 4px 0 #000;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 7.2vw, 6.15rem);
  line-height: 0.88;
  text-shadow: 5px 5px 0 #000;
}

h1 span,
h2,
h3 {
  color: var(--yellow);
}

.hero-lead {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.hero-lead strong {
  color: var(--text);
}

.hero-pills,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-pills span,
.feature-list span {
  padding: 0.3rem 0.65rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 189, 22, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.78rem 1.05rem;
  color: var(--text);
  border: 2px solid var(--yellow);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 4px 4px 0 #000;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
.game-card:hover,
.social-card:hover,
.social-card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--hard-shadow);
}

.button-primary {
  color: #17120a;
  background: var(--yellow);
}

.button-secondary {
  border-color: var(--cyan);
  background: rgba(18, 18, 24, 0.92);
}

.button-ghost {
  background: rgba(8, 8, 12, 0.72);
}

.button-soon {
  color: rgba(255, 248, 232, 0.68);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  cursor: not-allowed;
}

.button-soon:hover {
  transform: none;
  box-shadow: none;
}

.hero-feature,
.game-card,
.social-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(26, 26, 35, 0.96), rgba(9, 9, 13, 0.98));
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.hero-feature {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  isolation: isolate;
}

.keyart-panel {
  min-height: clamp(28rem, 54vw, 43rem);
  transform: rotate(0.7deg);
}

.keyart-panel:hover {
  transform: rotate(0.7deg) translate(-2px, -2px);
}

.hero-feature::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 4, 6, 0.28), transparent 38%),
    radial-gradient(circle at 78% 18%, rgba(255, 189, 22, 0.22), transparent 32%);
  content: "";
  pointer-events: none;
}

.hero-feature::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(0, 0, 0, 0.45));
  content: "";
  pointer-events: none;
}

.hero-feature img,
.game-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-label,
.feature-caption,
.store-badge,
.keyart-sticker {
  position: absolute;
  z-index: 2;
}

.feature-label,
.store-badge {
  top: 1rem;
  left: 1rem;
  padding: 0.28rem 0.75rem;
  color: #151008;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 3px 3px 0 #000;
  text-transform: uppercase;
}

.feature-caption {
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: rgba(7, 7, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.feature-caption strong {
  font-family: var(--display);
  color: var(--yellow);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 0.92;
  text-shadow: 3px 3px 0 #000;
}

.feature-caption span {
  color: var(--muted);
  font-weight: 700;
}

.keyart-sticker {
  right: 1rem;
  padding: 0.35rem 0.7rem;
  color: #101010;
  background: var(--cyan);
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #000;
  font-family: var(--display);
  text-transform: uppercase;
}

.sticker-top {
  top: 1.1rem;
  transform: rotate(4deg);
}

.sticker-bottom {
  right: auto;
  bottom: 6.6rem;
  left: 1.4rem;
  background: var(--pink);
  transform: rotate(-3deg);
}

.chaos-strip,
.noise-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 22, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 189, 22, 0.16), rgba(216, 76, 255, 0.08), rgba(50, 215, 255, 0.1)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.3);
}

.chaos-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
  padding: 0.85rem;
}

.chaos-strip span,
.noise-content span,
.noise-content strong {
  font-family: var(--display);
  text-align: center;
  text-shadow: 2px 2px 0 #000;
  text-transform: uppercase;
}

.chaos-strip span {
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(7, 7, 10, 0.54);
}

.section-heading {
  margin-bottom: 1rem;
}

h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5.8vw, 4rem);
  line-height: 0.95;
  text-shadow: 4px 4px 0 #000;
}

.game-card {
  display: grid;
  grid-template-columns: minmax(22rem, 1.12fr) minmax(0, 0.88fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: clamp(2rem, 5vw, 3.8rem);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.level-card {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 0.7fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  overflow: hidden;
  margin: clamp(-0.8rem, -1vw, -0.2rem) 0 clamp(2rem, 5vw, 3.8rem);
  border: 1px solid rgba(255, 189, 22, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 189, 22, 0.08), rgba(50, 215, 255, 0.05)),
    rgba(18, 18, 24, 0.86);
  box-shadow: var(--shadow);
}

.level-card img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.level-card div {
  padding: clamp(1.15rem, 3vw, 2rem);
}

.level-card p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.game-card:hover {
  border-color: rgba(255, 189, 22, 0.78);
}

.game-preview {
  position: relative;
  min-height: clamp(25rem, 46vw, 34rem);
  background: #050506;
}

.game-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(0, 0, 0, 0.36));
  content: "";
}

.game-info {
  display: grid;
  align-content: center;
  padding: clamp(1.25rem, 4vw, 2.6rem);
}

.game-kicker {
  margin-bottom: 0.45rem;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.2rem, 5vw, 3.45rem);
  line-height: 0.95;
  text-shadow: 4px 4px 0 #000;
}

.game-info p,
.about-grid p,
.about-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0.45rem 0 0;
  list-style: none;
}

.tag-list li {
  padding: 0.32rem 0.65rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.wishlist-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.3rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 189, 22, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 189, 22, 0.42);
  border-radius: 8px;
}

.wishlist-box strong {
  display: block;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
  text-shadow: 2px 2px 0 #000;
}

.wishlist-box span {
  color: var(--muted);
  font-size: 0.92rem;
}

.compact {
  margin-top: 1.35rem;
}

.about-band {
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
  background:
    linear-gradient(90deg, rgba(255, 189, 22, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(216, 76, 255, 0.08), rgba(50, 215, 255, 0.06));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.about-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(9rem, 13rem);
  gap: 1rem;
  align-items: center;
}

.about-copy img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 189, 22, 0.42);
  border-radius: 8px;
  box-shadow: 5px 5px 0 #000;
}

.noise-band {
  width: 100%;
  margin: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.noise-content {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr 0.75fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.noise-content strong {
  color: var(--yellow);
  font-size: clamp(1.8rem, 5vw, 3.3rem);
  line-height: 0.95;
}

.noise-content span {
  color: var(--muted);
}

#kontakt {
  padding: clamp(2.2rem, 5vw, 4rem) 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.social-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 9.25rem;
  align-content: center;
  justify-items: center;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.social-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 189, 22, 0.18), transparent 58%);
  opacity: 0;
  transition: opacity 160ms ease;
  content: "";
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(255, 189, 22, 0.82);
}

.social-card:hover::before,
.social-card:focus-visible::before {
  opacity: 1;
}

.social-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: #111;
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 3px 3px 0 #000;
}

.social-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.social-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1;
  text-shadow: 2px 2px 0 #000;
}

.social-card small {
  position: relative;
  z-index: 1;
  padding: 0.18rem 0.68rem;
  color: #151008;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand .brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-width: 2px;
  box-shadow: 3px 3px 0 #000;
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  .chaos-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    padding: 0;
    background: var(--yellow);
    border: 0;
    border-radius: 8px;
    box-shadow: 4px 4px 0 #000;
  }

  .nav-toggle span {
    width: 1.35rem;
    height: 0.18rem;
    background: #111;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(0.28rem) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-0.28rem) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem;
    background: rgba(18, 18, 24, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-0.6rem);
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    min-height: 2.75rem;
    padding: 0.55rem 0.75rem;
  }

  .hero,
  .game-card,
  .level-card,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.2rem;
  }

  .keyart-panel {
    min-height: 26rem;
    max-height: 30rem;
    transform: none;
  }

  .keyart-panel:hover {
    transform: translate(-2px, -2px);
  }

  .game-preview {
    min-height: 17rem;
  }

  .level-card {
    margin-top: -0.8rem;
  }

  .game-preview::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 45%);
  }

  .wishlist-box {
    grid-template-columns: 1fr;
  }

  .wishlist-box .button {
    width: 100%;
  }

  .noise-content {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand-mark {
    width: 2.65rem;
    height: 2.65rem;
  }

  .studio-lockup {
    margin-bottom: 0.85rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    min-height: 3.25rem;
  }

  .feature-caption {
    align-items: start;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.8rem;
  }

  .sticker-bottom {
    bottom: 5.5rem;
  }

  .game-info {
    padding: 1.2rem;
  }

  .about-copy {
    grid-template-columns: 1fr;
  }

  .about-copy img {
    max-width: 15rem;
    justify-self: center;
  }

  .chaos-strip {
    grid-template-columns: 1fr;
    margin-bottom: 1.6rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 6.5rem;
    grid-template-columns: auto 1fr auto;
    align-content: center;
    justify-items: start;
    text-align: left;
  }

  .social-card small {
    justify-self: end;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .section-shell {
    width: min(100% - 1.25rem, 1140px);
  }

  .keyart-panel {
    min-height: 22rem;
    max-height: 24rem;
  }

  .game-preview {
    min-height: 14rem;
  }

  .tag-list li {
    font-size: 0.82rem;
  }
}
