:root {
  --bg: #05070d;
  --bg-panel: rgba(9, 12, 23, 0.88);
  --bg-panel-strong: rgba(13, 17, 31, 0.96);
  --text: #f7f7f7;
  --muted: #c8d3dd;
  --cyan: #3df6ff;
  --magenta: #ff4fd8;
  --orange: #ff8e2b;
  --yellow: #ffe14d;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 0 24px rgba(61, 246, 255, 0.18), 0 0 48px rgba(255, 79, 216, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 79, 216, 0.16), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(61, 246, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #030509 0%, #070912 40%, #020306 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.page-shell {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header,
.hero-copy__panel,
.carousel-section,
.content-panel,
.site-footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 16, 30, 0.95), rgba(8, 10, 20, 0.92));
}

.brand-lockup h1,
.hero-copy__panel h2,
.section-heading h2,
.content-panel h2,
.game-card h3 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-lockup h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--yellow);
  text-shadow:
    0 0 10px rgba(255, 225, 77, 0.5),
    0 0 24px rgba(255, 79, 216, 0.32);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 700;
}

.tagline,
.hero-copy__panel p,
.content-panel p,
.game-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.02rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav a,
.button,
.carousel-button {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a {
  padding: 12px 18px;
  border: 1px solid rgba(61, 246, 255, 0.35);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(8, 11, 21, 0.75);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.button:hover,
.button:focus-visible,
.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--magenta);
  box-shadow: 0 0 16px rgba(255, 79, 216, 0.25);
}

.hero-banner {
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 30px rgba(255, 142, 43, 0.16);
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  margin-top: 24px;
}

.about-hero {
  margin-top: 24px;
}

.hero-copy__panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 24px rgba(61, 246, 255, 0.12),
    0 0 42px rgba(255, 79, 216, 0.08);
  background:
    radial-gradient(circle at 78% 48%, rgba(61, 246, 255, 0.14), transparent 18%),
    radial-gradient(circle at 90% 58%, rgba(255, 79, 216, 0.12), transparent 22%),
    radial-gradient(circle at 72% 32%, rgba(255, 255, 255, 0.05), transparent 10%),
    linear-gradient(90deg, rgba(8, 12, 22, 0) 0%, rgba(8, 12, 22, 0.08) 26%, rgba(8, 12, 22, 0.2) 44%, rgba(8, 12, 22, 0.34) 62%, rgba(8, 12, 22, 0.48) 100%),
    linear-gradient(135deg, rgba(255, 79, 216, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(9, 13, 24, 0.94), rgba(5, 7, 14, 0.95));
}

.hero-copy__panel::before,
.hero-copy__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-copy__panel::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.018) 18%, transparent 34%),
    linear-gradient(90deg, rgba(4, 7, 14, 0) 0%, rgba(4, 7, 14, 0.04) 24%, rgba(4, 7, 14, 0.14) 46%, rgba(4, 7, 14, 0.28) 66%, rgba(4, 7, 14, 0.38) 100%),
    radial-gradient(circle at 82% 50%, rgba(61, 246, 255, 0.08), transparent 0 26%),
    radial-gradient(circle at 92% 64%, rgba(255, 79, 216, 0.08), transparent 0 22%);
  filter: blur(14px);
  opacity: 0.9;
}

.hero-copy__panel::after {
  inset: 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01) 18%, transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 84% 52%, rgba(0, 0, 0, 0.85), transparent 58%);
  opacity: 0.42;
}

.hero-copy__panel > * {
  position: relative;
  z-index: 1;
}

.about-hero__panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  align-items: center;
  gap: 28px;
  padding: 38px 40px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at top right, rgba(255, 225, 77, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(61, 246, 255, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 79, 216, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(10, 14, 27, 0.95), rgba(5, 7, 14, 0.97));
}

.about-hero__panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    inset 0 0 32px rgba(61, 246, 255, 0.05);
  pointer-events: none;
  z-index: 0;
}

.about-hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent);
}

.about-hero__content,
.about-hero__badge {
  position: relative;
  z-index: 1;
}

.about-hero__content {
  min-width: 0;
}

.about-hero__content .section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(61, 246, 255, 0.22);
  background: rgba(7, 10, 19, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 18px rgba(61, 246, 255, 0.08);
}

.about-hero__content .section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 225, 77, 0.45);
}

.about-story {
  margin-top: 24px;
}

.about-story__panel {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  padding: 34px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(61, 246, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(9, 13, 24, 0.95), rgba(5, 7, 14, 0.96));
}

.hero-copy__panel h2,
.about-hero__panel h2,
.about-story__panel h2,
.section-heading h2,
.content-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.about-hero__panel h2 {
  max-width: 15ch;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 0.96;
  color: var(--yellow);
  text-shadow:
    0 0 10px rgba(255, 225, 77, 0.34),
    0 0 26px rgba(255, 79, 216, 0.16);
}

.about-hero__panel p {
  max-width: 60ch;
}

.about-hero__panel p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.08rem;
  max-width: 58ch;
}

.about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-hero__chips span,
.about-entry__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.about-hero__chips span {
  border: 1px solid rgba(61, 246, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(14, 19, 34, 0.92), rgba(8, 11, 20, 0.9));
  color: var(--text);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 14px rgba(61, 246, 255, 0.08);
}

.about-hero__chips span:nth-child(2) {
  border-color: rgba(255, 79, 216, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 14px rgba(255, 79, 216, 0.08);
}

.about-hero__chips span:nth-child(3) {
  border-color: rgba(255, 225, 77, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 14px rgba(255, 225, 77, 0.08);
}

.about-hero__badge {
  grid-column: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
}

.about-hero__badge-ring {
  width: min(100%, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(61, 246, 255, 0.22);
  background:
    radial-gradient(circle, rgba(255, 225, 77, 0.14) 0 18%, transparent 19%),
    radial-gradient(circle, rgba(61, 246, 255, 0.12) 0 42%, transparent 43%),
    radial-gradient(circle, rgba(255, 79, 216, 0.12) 0 68%, transparent 69%);
  box-shadow:
    inset 0 0 24px rgba(61, 246, 255, 0.08),
    0 0 24px rgba(255, 79, 216, 0.08);
}

.about-hero__badge-core {
  position: absolute;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(255, 225, 77, 0.24);
  background:
    linear-gradient(180deg, rgba(20, 24, 42, 0.96), rgba(9, 12, 20, 0.96));
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 10px rgba(255, 225, 77, 0.28),
    0 0 18px rgba(255, 79, 216, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 20px rgba(255, 225, 77, 0.08);
}

.about-hero__badge-caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 16ch;
}

.about-story__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 6px;
}

.about-story__year {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(61, 246, 255, 0.22);
}

.about-story__line {
  flex: 1;
  width: 2px;
  min-height: 180px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--magenta), var(--yellow));
  box-shadow: 0 0 18px rgba(61, 246, 255, 0.22);
}

.about-story__content {
  min-width: 0;
}

.about-story__entries {
  display: grid;
  gap: 18px;
}

.about-entry {
  position: relative;
  padding: 22px 22px 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(180deg, rgba(11, 14, 26, 0.92), rgba(8, 10, 18, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 18px rgba(61, 246, 255, 0.06);
}

.about-entry::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 14px rgba(61, 246, 255, 0.2);
}

.about-entry__label {
  margin: 0 0 14px;
  width: fit-content;
  border: 1px solid rgba(255, 225, 77, 0.2);
  background: rgba(255, 225, 77, 0.08);
  color: var(--yellow);
  font-size: 0.72rem;
}

.about-story__panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
  max-width: 66ch;
  text-wrap: pretty;
}

.about-entry p {
  max-width: 64ch;
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(90deg, var(--orange), var(--magenta));
  color: #12040f;
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.28);
}

.button-secondary {
  border-color: rgba(61, 246, 255, 0.5);
  color: var(--text);
  background: rgba(5, 8, 18, 0.78);
}

.carousel-section {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(61, 246, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(13, 17, 31, 0.96), rgba(7, 9, 18, 0.94));
}

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

.carousel-controls {
  display: flex;
  gap: 12px;
}

.carousel-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 225, 77, 0.38);
  background: linear-gradient(180deg, rgba(255, 225, 77, 0.16), rgba(255, 142, 43, 0.14));
  color: var(--yellow);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(255, 225, 77, 0.14);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(61, 246, 255, 0.6) rgba(255, 255, 255, 0.08);
}

.carousel-track::-webkit-scrollbar {
  height: 10px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: 999px;
}

.game-card {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(11, 14, 26, 0.95), rgba(7, 9, 18, 0.95));
}

.game-card-link {
  color: inherit;
  text-decoration: none;
}

.game-card-link:focus-visible {
  outline: 2px solid rgba(61, 246, 255, 0.9);
  outline-offset: 6px;
  border-radius: var(--radius-md);
}

.game-thumb {
  flex: 0 0 148px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.08em;
  color: #fff8dd;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 12px,
      rgba(0, 0, 0, 0.04) 12px,
      rgba(0, 0, 0, 0.04) 24px
    );
}

.thumb-pong {
  color: #e7fbff;
  text-shadow:
    0 0 10px rgba(61, 246, 255, 0.55),
    0 2px 10px rgba(0, 0, 0, 0.55);
  background:
    linear-gradient(180deg, rgba(7, 14, 28, 0.14), rgba(3, 8, 18, 0.74)),
    linear-gradient(0deg, rgba(2, 7, 16, 0.86), rgba(2, 7, 16, 0.12) 52%, rgba(2, 7, 16, 0.24)),
    url("../images/pong-preview.jpeg");
  background-size: auto, auto, cover;
  background-position: center, center, center 38%;
  background-repeat: no-repeat;
  border: 1px solid rgba(125, 211, 252, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -26px 44px rgba(2, 7, 14, 0.52),
    0 14px 30px rgba(0, 0, 0, 0.32);
}

.thumb-invaders {
  color: #ffe6fb;
  text-shadow:
    0 0 10px rgba(255, 79, 216, 0.6),
    0 2px 10px rgba(0, 0, 0, 0.58);
  background:
    linear-gradient(180deg, rgba(34, 8, 42, 0.12), rgba(11, 5, 24, 0.76)),
    linear-gradient(0deg, rgba(8, 4, 18, 0.88), rgba(8, 4, 18, 0.14) 50%, rgba(8, 4, 18, 0.22)),
    url("../images/space-invaders-preview.jpeg");
  background-size: auto, auto, cover;
  background-position: center, center, center 36%;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 79, 216, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -26px 44px rgba(12, 3, 18, 0.56),
    0 14px 30px rgba(0, 0, 0, 0.32);
}

.game-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.game-card p {
  font-size: 0.95rem;
}

.card-cyan .game-thumb,
.card-cyan h3 {
  background-color: rgba(61, 246, 255, 0.2);
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(61, 246, 255, 0.45);
}

.card-magenta .game-thumb,
.card-magenta h3 {
  background-color: rgba(255, 79, 216, 0.2);
  color: var(--magenta);
  text-shadow: 0 0 12px rgba(255, 79, 216, 0.45);
}

.card-orange .game-thumb,
.card-orange h3 {
  background-color: rgba(255, 142, 43, 0.2);
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255, 142, 43, 0.45);
}

.card-yellow .game-thumb,
.card-yellow h3 {
  background-color: rgba(255, 225, 77, 0.2);
  color: var(--yellow);
  text-shadow: 0 0 12px rgba(255, 225, 77, 0.45);
}

.card-mix .game-thumb,
.card-mix h3 {
  background:
    linear-gradient(135deg, rgba(61, 246, 255, 0.2), rgba(255, 79, 216, 0.2)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 12px,
      rgba(0, 0, 0, 0.04) 12px,
      rgba(0, 0, 0, 0.04) 24px
    );
  color: #ffb75f;
  text-shadow: 0 0 12px rgba(255, 183, 95, 0.4);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.content-panel {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(11, 14, 26, 0.94), rgba(7, 9, 18, 0.92));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11, 14, 26, 0.94), rgba(7, 9, 18, 0.92));
}

@media (max-width: 980px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-width));
    padding-top: 10px;
  }

  .site-header,
  .hero-copy__panel,
  .about-hero__panel,
  .about-story__panel,
  .carousel-section,
  .content-panel,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-story__panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-hero__panel {
    grid-template-columns: 1fr;
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .about-hero__panel::before {
    inset: 12px;
    border-radius: 16px;
  }

  .about-hero__panel h2 {
    max-width: 12ch;
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .about-hero__badge {
    grid-column: 1;
    margin-top: 8px;
  }

  .about-hero__badge-ring {
    width: 160px;
  }

  .about-hero__badge-core {
    width: 86px;
    height: 86px;
    font-size: 1.35rem;
  }

  .about-hero__chips {
    gap: 10px;
  }

  .about-story__rail {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .about-story__line {
    width: 120px;
    min-height: 2px;
    height: 2px;
  }

  .about-entry {
    padding: 18px 18px 18px 20px;
  }

  .game-card,
  .carousel-track {
    grid-auto-columns: 300px;
  }
}
