:root {
  --paper: #f8f6ec;
  --ink: #070707;
  --line: #111111;
  --green: #7cff00;
  --pink: #ff4fb3;
  --blue: #1f4dff;
  --muted: #5d5a51;
  font-family: "Courier New", Courier, monospace;
  color: var(--ink);
  background: #050505;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(rgba(7, 7, 7, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 70% 8%, rgba(124, 255, 0, 0.16), transparent 24rem),
    var(--paper);
  background-size: 100% 4px, auto, auto;
  color: var(--ink);
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.13;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0, 0, 0, 0.18) 4px);
  mix-blend-mode: multiply;
}

.topbar,
.browser-bar,
footer {
  border-bottom: 3px solid var(--line);
  background: rgba(248, 246, 236, 0.94);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-top: 3px solid var(--line);
}

.window-title {
  font-weight: 900;
  font-size: 0.98rem;
}

.window-actions {
  display: flex;
  gap: 7px;
}

.window-actions span {
  width: 25px;
  height: 25px;
  border: 2px solid var(--line);
  background: white;
  box-shadow: 3px 3px 0 var(--line);
}

.browser-bar {
  position: sticky;
  top: 42px;
  z-index: 19;
  display: grid;
  grid-template-columns: auto minmax(170px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
}

.browser-buttons,
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-buttons span,
.address,
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 2px solid var(--line);
  background: white;
  text-decoration: none;
  font-weight: 900;
}

.browser-buttons span {
  justify-content: center;
  width: 34px;
}

.address {
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links a {
  padding: 0 12px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding: clamp(32px, 6vw, 70px);
  overflow: hidden;
}

.hero-copy,
.media-window {
  position: relative;
  z-index: 2;
}

.meme-gallery-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.48;
}

.meme-gallery-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(248, 246, 236, 0.78) 0 34%, rgba(248, 246, 236, 0.22) 52%, rgba(248, 246, 236, 0.54) 100%),
    radial-gradient(circle at 28% 48%, rgba(248, 246, 236, 0.7), transparent 22rem);
}

.meme-tile {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(120px, 13vw, 210px);
  aspect-ratio: 4 / 3;
  border: 4px solid #070707;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.24) 0 2px, transparent 2px 6px),
    var(--tile-bg, #ffffff);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%) rotate(var(--tilt, -3deg));
  filter: saturate(0.95) contrast(1.08);
}

.meme-tile::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed rgba(0, 0, 0, 0.42);
}

.meme-tile span {
  position: relative;
  z-index: 1;
  padding: 8px;
  color: var(--tile-color, #070707);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.4rem, 3vw, 3.1rem);
  line-height: 0.85;
  text-align: center;
  text-shadow:
    3px 3px 0 #ffffff,
    6px 6px 0 rgba(0, 0, 0, 0.24);
}

.meme-tile-a {
  --tile-bg: linear-gradient(135deg, #ff4fb3, #ffd3ec);
  --tilt: -8deg;
  left: 7%;
  top: 15%;
}

.meme-tile-b {
  --tile-bg: linear-gradient(135deg, #7cff00, #d7ffad);
  --tilt: 7deg;
  left: 29%;
  top: 12%;
}

.meme-tile-c {
  --tile-bg: linear-gradient(135deg, #f8f6ec, #c7d9ff);
  --tilt: -2deg;
  left: 51%;
  top: 14%;
}

.meme-tile-d {
  --tile-bg: linear-gradient(135deg, #d8d0bd, #757575);
  --tile-color: #ff4fb3;
  --tilt: 10deg;
  left: 74%;
  top: 17%;
}

.meme-tile-e {
  --tile-bg: linear-gradient(135deg, #111, #555);
  --tile-color: #7cff00;
  --tilt: -6deg;
  left: 92%;
  top: 20%;
}

.meme-tile-f {
  --tile-bg: linear-gradient(135deg, #9cc4d5, #4a654d);
  --tilt: 4deg;
  left: 14%;
  top: 83%;
}

.meme-tile-g {
  --tile-bg: linear-gradient(135deg, #fff7b4, #d6c56f);
  --tilt: -11deg;
  left: 39%;
  top: 83%;
}

.meme-tile-h {
  --tile-bg: linear-gradient(135deg, #c29051, #231711);
  --tile-color: #ffffff;
  --tilt: 8deg;
  left: 61%;
  top: 82%;
}

.meme-tile-i {
  --tile-bg: linear-gradient(135deg, #7cff00, #1f4dff);
  --tile-color: #ffffff;
  --tilt: -4deg;
  left: 82%;
  top: 76%;
}

.meme-tile-j {
  --tile-bg: linear-gradient(135deg, #ff4fb3, #6b2cff);
  --tile-color: #ffffff;
  --tilt: 6deg;
  left: 48%;
  top: 56%;
}

.brand {
  display: inline-grid;
  gap: 0;
  margin-bottom: 28px;
  color: var(--green);
  text-decoration: none;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.88;
  text-shadow: 4px 4px 0 #000000;
}

.brand-pixel {
  color: white;
}

h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(5.2rem, 17vw, 12rem);
  line-height: 0.78;
  letter-spacing: 0;
}

.tagline {
  display: inline-block;
  margin: 18px 0 24px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--green);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 900;
}

.lede {
  max-width: 650px;
  margin: 0;
  color: #171717;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.45;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 34px 0 28px;
}

.button {
  min-height: 58px;
  min-width: 190px;
  display: inline-grid;
  place-items: center;
  padding: 0 24px;
  border: 3px solid var(--line);
  box-shadow: 6px 6px 0 var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--line);
}

.button-primary {
  background: var(--green);
}

.button-secondary {
  background: var(--pink);
}

.button-tertiary {
  background: #ffffff;
}

.contract-window,
.media-window,
.generator {
  border: 3px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22);
}

.contract-window {
  max-width: 680px;
}

.window-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 10px;
  border-bottom: 2px solid var(--line);
  background: var(--ink);
  color: var(--green);
  font-weight: 900;
}

.contract-window code {
  display: block;
  padding: 16px;
  overflow-wrap: anywhere;
  font-size: clamp(0.88rem, 1.8vw, 1.05rem);
  font-weight: 800;
}

.chain-note {
  margin: 16px 0 0;
  font-weight: 800;
}

.chain-note strong {
  color: #1fa346;
}

.media-window {
  transform: rotate(0.6deg);
}

.video-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 8px solid #ffffff;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 48%),
    linear-gradient(90deg, #9cc4d5, #d2c4aa 42%, #6c7462 43%, #9a9079 100%);
  filter: saturate(0.72) contrast(1.12);
}

.nostalgia-video,
.video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nostalgia-video {
  z-index: 1;
  object-fit: cover;
  background: transparent;
}

.nostalgia-video:not([src]),
.nostalgia-video.is-missing {
  opacity: 0;
}

.video-fallback {
  z-index: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), transparent 48%),
    linear-gradient(90deg, #9cc4d5, #d2c4aa 42%, #6c7462 43%, #9a9079 100%);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(0, 0, 0, 0.2) 63%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 6px);
  pointer-events: none;
}

.timestamp {
  position: absolute;
  z-index: 3;
  left: 22px;
  top: 22px;
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.7);
}

.skater {
  position: absolute;
  z-index: 3;
  right: 84px;
  bottom: 92px;
  width: 115px;
  height: 75px;
  transform: rotate(-12deg);
}

.skater::before,
.skater::after,
.skater span {
  content: "";
  position: absolute;
  background: #111111;
}

.skater::before {
  width: 34px;
  height: 34px;
  left: 42px;
  top: 0;
  border-radius: 50%;
}

.skater::after {
  width: 94px;
  height: 8px;
  left: 8px;
  bottom: 6px;
  transform: rotate(10deg);
}

.skater span {
  width: 76px;
  height: 12px;
  left: 30px;
  top: 34px;
  transform: rotate(24deg);
}

.sticker {
  position: absolute;
  z-index: 4;
  border: 4px solid white;
  box-shadow: 4px 4px 0 var(--line);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 900;
}

.sticker-smile {
  right: -10px;
  top: 28px;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-size: 2.1rem;
}

.sticker-lol {
  right: -20px;
  bottom: 42px;
  padding: 2px 12px;
  background: var(--pink);
  color: white;
  font-size: 3.2rem;
  transform: rotate(-9deg);
}

.player-controls {
  display: grid;
  grid-template-columns: 38px 38px 38px 52px minmax(120px, 1fr) 86px;
  gap: 8px;
  align-items: center;
  padding: 12px;
  background: white;
  border-top: 3px solid var(--line);
}

.player-controls button {
  display: grid;
  place-items: center;
  height: 30px;
  border: 2px solid var(--line);
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.player-controls button:hover {
  background: var(--green);
}

.video-seek,
.volume-slider {
  width: 100%;
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--ink);
  cursor: pointer;
}

.marquee {
  overflow: hidden;
  background: #050505;
  color: var(--green);
  border-block: 3px solid var(--line);
  font-weight: 900;
}

.marquee div {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 12px 0;
  animation: marquee 22s linear infinite;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 74px);
  padding: 42px clamp(20px, 6vw, 70px) 48px;
}

.pillars article {
  min-height: 190px;
}

.pixel-icon {
  width: 104px;
  height: 84px;
  margin: 0 0 12px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
  filter: none;
}

.pillars h2,
.feed h2 {
  margin: 0 0 12px;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1rem, 1.8vw, 1.26rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.pillars p {
  margin: 0;
  max-width: 230px;
  color: #171717;
  font-size: clamp(0.82rem, 1.15vw, 0.95rem);
  font-weight: 700;
  line-height: 1.34;
}

.generator {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 44px;
}

.generator-body {
  display: grid;
  grid-template-columns: minmax(230px, 300px) minmax(220px, 0.75fr) minmax(320px, 1.25fr);
  gap: 28px;
  padding: 24px;
}

.controls,
.generator-output {
  min-width: 0;
}

label,
.field-label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 42px;
  border: 2px solid var(--line);
  background: white;
  padding: 0 10px;
  font-weight: 800;
}

.file-control input {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.file-control span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 2px dashed var(--line);
  background: #ffffff;
  font-size: 0.86rem;
  text-align: center;
}

.swatches {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.swatch {
  width: 34px;
  height: 34px;
  border: 2px solid var(--line);
  background: var(--swatch);
  cursor: pointer;
}

.swatch.is-active {
  box-shadow: 4px 4px 0 var(--line);
}

.download-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.download-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 52px;
}

.profile-preview {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 330px;
  padding: 16px;
  border-inline: 2px solid rgba(0, 0, 0, 0.3);
  text-align: center;
}

.preview-label {
  justify-self: start;
  padding: 4px 8px;
  border: 2px solid var(--line);
  background: var(--ink);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.avatar {
  position: relative;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 3px dashed var(--line);
  background: white;
  color: var(--green);
  font-size: 3.2rem;
  font-weight: 900;
  text-shadow: 3px 3px 0 var(--line);
  overflow: hidden;
}

.avatar img,
.banner-preview img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-upload .avatar img,
.has-upload.banner-preview img {
  display: block;
}

.has-upload #avatarFallback {
  display: none;
}

.avatar-tag {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%) rotate(-2deg);
  padding: 3px 8px;
  background: var(--ink);
  color: var(--green);
  border: 2px solid #ffffff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-shadow: none;
}

.banner-preview {
  position: relative;
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 3px solid var(--line);
  background:
    radial-gradient(circle at 18% 24%, var(--pink) 0 10px, transparent 11px),
    radial-gradient(circle at 85% 74%, var(--green) 0 18px, transparent 19px),
    repeating-linear-gradient(0deg, #f1f1f1 0 2px, #dfdfdf 3px 5px);
  overflow: hidden;
}

.banner-preview span {
  position: relative;
  z-index: 2;
  color: var(--green);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.88;
  text-align: center;
  text-shadow: 4px 4px 0 var(--line);
}

.banner-preview .preview-label {
  position: absolute;
  z-index: 3;
  left: 12px;
  top: 12px;
}

.banner-preview img {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(0.72) contrast(1.15);
}

.banner-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#bannerHandle {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 12px;
  padding: 5px 8px;
  background: var(--ink);
  color: var(--green);
  border: 2px solid white;
  font-size: 0.82rem;
}

.generator.style-windows .avatar {
  border-style: dashed;
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--line);
}

.generator.style-windows .banner-preview {
  background:
    radial-gradient(circle at 18% 24%, var(--pink) 0 10px, transparent 11px),
    radial-gradient(circle at 85% 74%, var(--green) 0 18px, transparent 19px),
    repeating-linear-gradient(0deg, #f1f1f1 0 2px, #dfdfdf 3px 5px);
}

.generator.style-forum .profile-preview,
.generator.style-forum .banner-preview {
  background: #101010;
  color: #f4f4f4;
}

.generator.style-forum .avatar {
  width: 148px;
  height: 148px;
  border: 4px solid var(--pink);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 79, 179, 0.3), rgba(31, 77, 255, 0.22)),
    #151515;
  box-shadow: 8px 8px 0 #4c2cff;
}

.generator.style-forum .banner-preview {
  background:
    linear-gradient(90deg, rgba(255, 79, 179, 0.52), rgba(31, 77, 255, 0.4)),
    repeating-linear-gradient(90deg, #151515 0 16px, #1f1f1f 16px 32px);
}

.generator.style-forum .banner-preview span {
  color: #ffffff;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-shadow: 3px 3px 0 var(--pink);
}

.generator.style-vhs .profile-preview,
.generator.style-vhs .banner-preview {
  background: #262620;
}

.generator.style-vhs .avatar {
  width: 138px;
  height: 138px;
  border: 5px solid #f5f2e9;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 52%),
    #34342c;
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.76);
}

.generator.style-vhs .banner-preview {
  background:
    linear-gradient(90deg, rgba(156, 196, 213, 0.8), rgba(111, 112, 99, 0.8)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 6px);
}

.generator.style-vhs .banner-preview::after {
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 6px);
}

.generator.style-vhs .banner-preview span {
  color: #ffffff;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.7);
}

.feed {
  padding: 0 clamp(24px, 6vw, 70px) 70px;
}

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

.section-head h2 {
  display: inline-block;
  border-bottom: 6px solid var(--pink);
}

.section-head button {
  border: 0;
  background: transparent;
  color: #268900;
  font-weight: 900;
  cursor: pointer;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.feed-card {
  min-height: 160px;
  display: grid;
  align-content: end;
  padding: 12px;
  border: 3px solid var(--line);
  color: white;
  background: var(--photo);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.18);
  text-shadow: 2px 2px 0 var(--line);
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.feed-card:hover,
.feed-card:focus-visible,
.feed-card.is-active {
  transform: translateY(-3px);
  outline: 0;
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.18),
    6px 6px 0 var(--line);
}

.feed-card.is-active {
  border-color: var(--pink);
}

.feed-viewer {
  margin-top: 28px;
  border: 3px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22);
}

.feed-viewer-body {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(230px, 320px);
  gap: 24px;
  padding: 20px;
}

.feed-preview-large {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 18px;
  border: 3px solid var(--line);
  background: var(--photo);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  box-shadow: inset 0 0 0 14px rgba(255, 255, 255, 0.18);
  text-shadow: 2px 2px 0 var(--line);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 900;
}

.feed-meta {
  display: grid;
  align-content: center;
  gap: 14px;
}

.feed-meta strong {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
}

.feed-meta p {
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
}

.feed-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.feed-actions button {
  min-height: 40px;
  border: 2px solid var(--line);
  background: white;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.feed-actions button:hover {
  background: var(--green);
}

footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  gap: 34px;
  align-items: center;
  padding: 28px clamp(24px, 6vw, 70px);
  border-top: 3px solid var(--line);
}

.footer-mark {
  padding: 10px;
  background: var(--ink);
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 0.9;
}

footer p {
  max-width: 560px;
  margin: 0;
  font-weight: 700;
  line-height: 1.45;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a {
  font-weight: 900;
  text-decoration: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  .browser-bar {
    grid-template-columns: 1fr;
  }

  .hero,
  .pillars,
  .generator-body,
  .feed-viewer-body,
  .feed-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .media-window {
    transform: none;
  }

  .profile-preview {
    border-inline: 0;
    border-block: 2px solid rgba(0, 0, 0, 0.3);
    padding-block: 22px;
  }
}

@media (max-width: 560px) {
  .topbar {
    position: static;
  }

  .browser-bar {
    position: static;
  }

  .window-title {
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(4.2rem, 28vw, 7rem);
  }

  .button {
    width: 100%;
  }

  .video-frame {
    min-height: 300px;
  }

  .sticker-lol {
    font-size: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
