:root {
  --bg-1: #08112b;
  --bg-2: #1d003f;
  --panel: #fff7d6;
  --ink: #15102b;
  --cyan: #28f0ff;
  --pink: #ff4fc3;
  --lime: #d4ff33;
  --orange: #ff9a2f;
  --blue: #2747ff;
  --red: #ff3131;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  color: var(--ink);
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 10px, transparent 10px 20px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0 12px, transparent 12px 24px),
    radial-gradient(circle at top left, rgba(40, 240, 255, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 79, 195, 0.22), transparent 30%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1) 45%, #050914);
  min-height: 100vh;
}

main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

a {
  color: inherit;
}

.shell {
  position: relative;
  border: 4px solid #ffffff;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 79, 195, 0.24), rgba(40, 240, 255, 0.14));
  box-shadow: 0 0 0 4px #000000, 0 16px 48px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.marquee-strip {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border-bottom: 4px solid #000000;
  background: linear-gradient(90deg, #fff066, #ff66c4, #31f0ff);
  color: #000000;
  font-family: "Courier New", monospace;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.page-art {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.55;
}

.shape {
  position: absolute;
  z-index: 0;
}

.bolt {
  width: 68px;
  height: 118px;
  background: var(--lime);
  clip-path: polygon(46% 0, 100% 0, 64% 42%, 92% 42%, 24% 100%, 40% 58%, 8% 58%);
  border: 3px solid #000000;
  box-shadow: 5px 5px 0 #000000;
}

.bolt-pink {
  background: #ff61c8;
}

.zigzag {
  width: 110px;
  height: 18px;
  background:
    linear-gradient(-45deg, transparent 8px, #31f0ff 0) left,
    linear-gradient(45deg, transparent 8px, #31f0ff 0) right;
  background-size: 50% 100%;
  background-repeat: repeat-x;
  filter: drop-shadow(3px 3px 0 #000000);
}

.starburst {
  width: 84px;
  height: 84px;
  background: #fff066;
  clip-path: polygon(50% 0, 61% 27%, 88% 12%, 73% 39%, 100% 50%, 73% 61%, 88% 88%, 61% 73%, 50% 100%, 39% 73%, 12% 88%, 27% 61%, 0 50%, 27% 39%, 12% 12%, 39% 27%);
  border: 3px solid #000000;
  box-shadow: 5px 5px 0 #000000;
}

.squiggle {
  width: 120px;
  height: 36px;
  border-top: 6px solid #ff9a2f;
  border-bottom: 6px solid #ff9a2f;
  border-radius: 999px;
  transform: rotate(-12deg);
  box-shadow: 0 3px 0 #000000;
}

.dot-ring {
  width: 76px;
  height: 76px;
  border: 8px dotted #ff4fc3;
  border-radius: 999px;
}

.shape-a {
  top: 110px;
  left: 28px;
  transform: rotate(-12deg);
}

.shape-b {
  top: 90px;
  right: 42px;
  transform: rotate(14deg);
}

.shape-c {
  top: 42%;
  right: 30px;
  transform: rotate(-8deg);
}

.shape-d {
  bottom: 140px;
  left: 38px;
  transform: rotate(8deg);
}

.shape-e {
  bottom: 88px;
  right: 54px;
}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--orange));
  border-bottom: 4px solid #000000;
  color: #fffef3;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.top-player-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 728px) auto;
  gap: 18px;
  align-items: start;
  padding: 14px 18px 0;
}

.top-status-strip {
  position: relative;
  z-index: 1;
  padding: 0;
  margin-top: 0;
}

.top-status-area {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 25%) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 18px 0;
}

.status-stack {
  min-width: 0;
}

.hero-banner-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 728px 120px 120px;
  gap: 12px;
  align-items: start;
  width: 992px;
  max-width: calc(100% - 36px);
  margin: 14px 18px 0;
}

.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 728px;
  max-width: 728px;
  min-height: 90px;
  padding: 10px 14px;
  border: 3px solid #000000;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(180deg, #fff7a8, #ff78c8 55%, #61dcff);
  box-shadow: 6px 6px 0 #000000;
  overflow: hidden;
}

.hero-banner-gif {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: cover;
  border: 3px solid #000000;
  background: #fffef3;
}

.hero-banner-copy {
  min-width: 0;
}

.hero-banner-matrix {
  display: block;
  width: 120px;
  height: 90px;
  object-fit: cover;
  border: 3px solid #000000;
  background: #05070a;
  box-shadow: 6px 6px 0 #000000;
}

.hero-banner-chuck {
  display: block;
  width: 120px;
  height: 90px;
  object-fit: cover;
  border: 3px solid #000000;
  background: #111111;
  box-shadow: 6px 6px 0 #000000;
}

.hero-banner-kicker,
.hero-banner-text {
  margin: 0;
}

.hero-banner-kicker {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-banner-title {
  margin: 2px 0 4px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  line-height: 0.95;
  color: #1234b4;
  text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #ffef72;
}

.hero-banner-text {
  font-size: 0.8rem;
  line-height: 1.2;
}

.hero-banner-button {
  display: inline-block;
  padding: 8px 10px;
  border: 2px solid #000000;
  background: #111111;
  color: #7fffd8;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.music-facts-strip {
  position: relative;
  z-index: 1;
  padding: 12px 0 0;
  margin-top: 0;
}

.music-facts-box {
  background: #fff8cf;
}

.movie-facts-strip {
  padding: 12px 0 0;
  margin-top: 0;
}

.movie-facts-box {
  position: relative;
  padding: 14px 8px 10px;
  border: none !important;
  background: transparent !important;
  color: #fff6bf;
  box-shadow: none !important;
  overflow: visible;
}

.movie-facts-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 240, 102, 0.95) 0 10px,
      rgba(255, 240, 102, 0.12) 10px 14px
    ) top / 100% 10px no-repeat,
    linear-gradient(180deg, rgba(37, 18, 62, 0.92), rgba(13, 12, 26, 0.92) 58%, rgba(25, 13, 46, 0.92));
  clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px), 0 6px);
  pointer-events: none;
}

.movie-facts-box strong {
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
  color: #fff066;
  text-shadow:
    2px 2px 0 #ff3131,
    4px 4px 0 rgba(0, 0, 0, 0.92);
}

.movie-facts-box span {
  position: relative;
  z-index: 1;
  display: block;
  color: #fffef3;
  font-size: 0.78rem;
  line-height: 1.15;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.85);
}

.movie-banner-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 728px) minmax(150px, 190px);
  gap: 18px;
  justify-content: center;
  align-items: stretch;
  padding: 14px 18px 0;
}

.quote-side-panel {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 90px;
  padding: 12px 14px;
  border: 3px solid #000000;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #fff7a8, #ff78c8 52%, #61dcff);
  box-shadow: 6px 6px 0 #000000;
}

.quote-side-kicker,
.quote-side-author,
.quote-side-text {
  margin: 0;
}

.quote-side-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-side-text {
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.22;
  font-weight: 700;
}

.quote-side-author {
  color: #0d2fa1;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.movie-banner-ad {
  width: 728px;
  max-width: 100%;
  border: 3px solid #000000;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #fff7a8, #ff78c8 52%, #61dcff);
  box-shadow: 6px 6px 0 #000000;
  overflow: hidden;
}

.movie-banner-head {
  padding: 5px 10px;
  border-bottom: 3px solid #000000;
  background: #fff066;
  color: #8c0b2d;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.movie-banner-body {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 90px;
  padding: 8px 10px;
}

.movie-banner-poster {
  display: block;
  width: 60px;
  height: 90px;
  object-fit: cover;
  border: 3px solid #000000;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(180deg, #18062f, #1d3b73);
}

.movie-banner-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.movie-banner-kicker,
.movie-banner-text {
  margin: 0;
}

.movie-banner-kicker {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.movie-banner-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1rem, 2vw, 1.55rem);
  line-height: 0.92;
  color: #0d2fa1;
  text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #ffeb6e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-banner-text {
  font-size: 0.72rem;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-banner-meta {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.movie-banner-date {
  display: inline-block;
  padding: 4px 6px;
  border: 2px solid #000000;
  background: #ffffff;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.movie-banner-button {
  display: inline-block;
  padding: 6px 8px;
  border: 2px solid #000000;
  background: #111111;
  color: #7fffd8;
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.myspace-profile-card {
  border: 3px solid #000000;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #fff7a8, #ff97d2 54%, #66ddff);
  box-shadow: 6px 6px 0 #000000;
  overflow: hidden;
}

.myspace-profile-head {
  padding: 7px 11px 6px;
  border-bottom: 3px solid #000000;
  background: #fff066;
  color: #1536a5;
  font-family: Georgia, "Times New Roman", serif;
}

.myspace-profile-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-shadow: 1px 1px 0 #ffffff;
}

.myspace-profile-body {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.97)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 10px, rgba(0, 0, 0, 0.03) 10px 20px);
}

.myspace-profile-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  border: 3px solid #000000;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(180deg, #1a0730, #18356f);
  box-shadow: 4px 4px 0 #000000;
}

.myspace-profile-copy {
  min-width: 0;
  color: #27304d;
  font-family: Verdana, sans-serif;
  font-size: 0.68rem;
  line-height: 1.15;
}

.myspace-profile-tag,
.myspace-profile-answer,
.myspace-profile-links {
  margin: 0;
}

.myspace-profile-tag {
  color: #46688e;
  font-weight: 700;
}

.myspace-profile-answer {
  margin-top: 5px;
  font-weight: 700;
  font-size: 0.73rem;
}

.myspace-profile-facts {
  display: grid;
  gap: 3px;
  margin: 10px 0 0;
}

.myspace-profile-facts div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 6px;
}

.myspace-profile-facts dt {
  color: #6e8399;
  font-weight: 700;
}

.myspace-profile-facts dd {
  margin: 0;
  font-weight: 700;
}

.myspace-online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
  background: #f5a623;
  vertical-align: middle;
}

.myspace-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 2px solid #c5d0eb;
  font-weight: 700;
}

.myspace-profile-links a {
  color: #2446b8;
  text-decoration: underline;
}

.top-player {
  max-width: 360px;
  margin-left: auto;
  box-shadow: 6px 6px 0 #000000;
}

.top-player-stack {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: flex-end;
}

.members-button-link {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 6px 8px;
  align-items: center;
  padding: 10px 12px;
  border: 3px solid #000000;
  background:
    linear-gradient(180deg, #fff6a7, #ff89cb 58%, #66e2ff);
  box-shadow: 6px 6px 0 #000000;
  color: #1b1464;
  text-decoration: none;
  text-transform: uppercase;
}

.members-button-lock,
.members-button-key {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 2px solid #000000;
  background: #fffef3;
}

.members-button-key {
  background: #fff066;
  transform: rotate(-8deg);
}

.members-button-lock::before,
.members-button-lock::after,
.members-button-key::before,
.members-button-key::after,
.members-lock::before,
.members-lock::after,
.members-key::before,
.members-key::after {
  content: "";
  position: absolute;
}

.members-button-lock::before,
.members-lock::before {
  width: 16px;
  height: 12px;
  border: 3px solid #000000;
  border-top: none;
  background: #61dcff;
  bottom: 10px;
}

.members-button-lock::after,
.members-lock::after {
  width: 12px;
  height: 10px;
  border: 3px solid #000000;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  top: 8px;
  background: transparent;
}

.members-button-key::before,
.members-key::before {
  width: 12px;
  height: 12px;
  border: 3px solid #000000;
  border-radius: 999px;
  left: 7px;
  background: #ff89cb;
}

.members-button-key::after,
.members-key::after {
  width: 15px;
  height: 3px;
  background: #000000;
  right: 7px;
  box-shadow:
    -3px 5px 0 #000000,
    0 0 0 3px #fff066 inset;
}

.members-button-text {
  grid-column: 1 / -1;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

.retro-ad {
  width: 728px;
  max-width: 100%;
  border: 3px solid #000000;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #fff7a8, #ff78c8 52%, #61dcff);
  box-shadow: 6px 6px 0 #000000;
  overflow: hidden;
}

.retro-ad-head {
  padding: 5px 10px;
  border-bottom: 3px solid #000000;
  background: #fff066;
  color: #8c0b2d;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

.retro-ad-body {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 8px 10px;
}

.retro-ad-gif {
  display: block;
  width: 100%;
  height: 50px;
  object-fit: cover;
  border: 3px solid #000000;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(180deg, #18062f, #1d3b73);
}

.retro-ad-copy {
  display: grid;
  align-content: center;
  gap: 2px;
  min-width: 0;
}

.retro-ad-kicker,
.retro-ad-text {
  margin: 0;
}

.retro-ad-kicker {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.retro-ad-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(0.95rem, 1.65vw, 1.45rem);
  line-height: 0.92;
  color: #0d2fa1;
  text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #ffeb6e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.retro-ad-text {
  font-size: 0.72rem;
  line-height: 1.15;
}

.retro-ad-button {
  display: inline-block;
  width: fit-content;
  padding: 4px 8px;
  border: 2px solid #000000;
  background: #ff3131;
  color: #fffef3;
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.brand {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 0.9;
  margin: 0;
  color: #fff066;
  text-shadow:
    2px 2px 0 #ff3131,
    4px 4px 0 #0c0c0c,
    0 0 18px rgba(255, 240, 102, 0.35);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: 18px;
  padding: 18px;
}

.hero-panel,
.promo-panel,
.section-panel {
  background: var(--panel);
  border: 3px solid #000000;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.48);
}

.hero-panel {
  position: relative;
  padding: 18px;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.65), transparent 18%),
    linear-gradient(135deg, rgba(212, 255, 51, 0.35), rgba(255, 255, 255, 0.25)),
    var(--panel);
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-frame {
  position: relative;
  min-width: 0;
  border: 3px solid #000000;
  background:
    radial-gradient(circle at 20% 20%, rgba(49, 240, 255, 0.55), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(255, 79, 195, 0.45), transparent 20%),
    linear-gradient(135deg, #1a003c, #111111 55%, #0a1738);
  box-shadow: 6px 6px 0 #000000;
  overflow: hidden;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.hero-gif {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  padding: 18px;
}

.hero-caption {
  display: grid;
  gap: 8px;
}

.myspace-stamp {
  display: inline-block;
  width: fit-content;
  padding: 5px 10px;
  border: 2px dashed #000000;
  background: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hero-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.92;
  color: #fff066;
  text-shadow:
    2px 2px 0 #ff3131,
    4px 4px 0 #0c0c0c;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 9px;
  background: var(--cyan);
  border: 2px solid #000000;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy {
  margin: 0;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-glyphs {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-bolt {
  width: 20px;
  height: 34px;
  background: var(--pink);
  clip-path: polygon(46% 0, 100% 0, 64% 42%, 92% 42%, 24% 100%, 40% 58%, 8% 58%);
  border: 2px solid #000000;
}

.mini-star {
  width: 28px;
  height: 28px;
  background: var(--cyan);
  clip-path: polygon(50% 0, 61% 27%, 88% 12%, 73% 39%, 100% 50%, 73% 61%, 88% 88%, 61% 73%, 50% 100%, 39% 73%, 12% 88%, 27% 61%, 0 50%, 27% 39%, 12% 12%, 39% 27%);
  border: 2px solid #000000;
}

.mini-zig {
  width: 36px;
  height: 12px;
  background:
    linear-gradient(-45deg, transparent 6px, #fff066 0) left,
    linear-gradient(45deg, transparent 6px, #fff066 0) right;
  background-size: 50% 100%;
  background-repeat: repeat-x;
  filter: drop-shadow(2px 2px 0 #000000);
}

.ticker {
  margin-top: 16px;
  border: 3px solid #000000;
  background: #111111;
  color: #7fffd8;
  padding: 10px 12px;
  font-family: "Courier New", monospace;
  font-size: 0.92rem;
  overflow: hidden;
  white-space: nowrap;
}

.promo-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0 12px,
      rgba(0, 0, 0, 0.04) 12px 24px
    ),
    linear-gradient(180deg, #fff7d6, #ffd8f4);
}

.profile-name {
  margin: 0;
  font-family: Verdana, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.profile-status {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0c2787;
}

.profile-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-top: 10px;
  border: 3px solid #000000;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 55%),
    linear-gradient(180deg, #130a2f, #152a62);
}

.friend-count {
  margin: 0;
  padding: 8px 10px;
  border: 2px solid #000000;
  background: #fff066;
  font-weight: 800;
  text-transform: uppercase;
}

.top-artists-widget {
  margin-top: 12px;
}

.artist-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 10px 10px 10px 34px;
  border: 2px dashed #000000;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.artist-list li::marker {
  color: #ff3131;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
}

.mood-box {
  padding: 10px;
  border: 2px dashed #000000;
  background: #ffffff;
  font-size: 0.86rem;
  line-height: 1.45;
}

.music-player {
  padding: 6px;
  border: 2px solid #000000;
  background:
    linear-gradient(180deg, #b0abc4, #5e5a77 52%, #2d2a3d);
  color: #d8ffd8;
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.4;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.8), inset -1px -1px 0 rgba(0, 0, 0, 0.5);
}

.winamp-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 6px;
  border: 1px solid #000000;
  background: linear-gradient(90deg, #1d166d, #4b46aa 55%, #958de0);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.winamp-window-buttons {
  display: flex;
  gap: 3px;
}

.winamp-window-buttons span {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid #000000;
  background: linear-gradient(180deg, #eeeef6, #8f8cab);
}

.winamp-display {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
  padding: 8px 6px;
  border: 1px solid #000000;
  background: linear-gradient(180deg, #10130f, #1a2517);
}

.winamp-visualizer {
  display: grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 2px;
  height: 28px;
}

.winamp-visualizer span {
  width: 4px;
  background: linear-gradient(180deg, #f4ff7c, #39ff7a);
}

.winamp-visualizer span:nth-child(1) { height: 12px; }
.winamp-visualizer span:nth-child(2) { height: 20px; }
.winamp-visualizer span:nth-child(3) { height: 10px; }
.winamp-visualizer span:nth-child(4) { height: 24px; }
.winamp-visualizer span:nth-child(5) { height: 16px; }
.winamp-visualizer span:nth-child(6) { height: 26px; }
.winamp-visualizer span:nth-child(7) { height: 14px; }

.winamp-track {
  min-width: 0;
}

.winamp-status,
.winamp-song,
.winamp-time {
  color: #8aff91;
}

.winamp-status {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.winamp-song {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.82rem;
}

.winamp-time {
  font-size: 0.9rem;
  font-weight: 700;
}

.winamp-controls {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.winamp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 3px 5px;
  border: 1px solid #000000;
  background: linear-gradient(180deg, #f0edf7, #9a95b5);
  color: #161126;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.winamp-button:active {
  transform: translate(1px, 1px);
}

.promo-box {
  padding: 14px;
  border: 3px solid #000000;
  background: #ffffff;
}

.promo-title {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.promo-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 10px;
  background: var(--red);
  color: #ffffff;
  border: 2px solid #000000;
  font-weight: 800;
  transform: rotate(-3deg);
}

.section-panel {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4)),
    #ffecc5;
}

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

.section-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.95;
  color: var(--blue);
  text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #000000;
}

.section-note {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blink {
  animation: blink-flash 1.1s steps(2, start) infinite;
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.cover {
  position: relative;
  aspect-ratio: 1;
  border: 3px solid #000000;
  box-shadow: 6px 6px 0 #000000;
  overflow: hidden;
  background: #0f1224;
  display: block;
  text-decoration: none;
  transform: rotate(-1deg);
}

.cover:nth-child(even) {
  transform: rotate(1deg);
}

.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 18, 0.02), rgba(7, 9, 18, 0.68)),
    linear-gradient(135deg, rgba(255, 79, 195, 0.12), rgba(40, 240, 255, 0.08));
  pointer-events: none;
}

.cover-title,
.cover-artist,
.cover-meta {
  position: relative;
  z-index: 1;
}

.cover-title {
  margin: auto 0 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff8b6;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.9);
}

.cover-artist {
  margin: 10px 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.cover-meta {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 5px 7px;
  border: 2px solid #000000;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cover-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.status-box {
  padding: 12px;
  border: 3px solid #000000;
  background: #ffffff;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000000;
}

.status-box strong {
  display: block;
  margin-bottom: 4px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.detail-shell {
  position: relative;
  z-index: 1;
  padding: 18px;
}

.detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  padding: 18px;
  border: 3px solid #000000;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.4)),
    #ffecc5;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.48);
}

.detail-art {
  min-width: 0;
  border: 3px solid #000000;
  background: #101728;
  box-shadow: 6px 6px 0 #000000;
  overflow: hidden;
}

.detail-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.detail-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.detail-top-media {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.detail-matrix-gif {
  display: block;
  width: 160px;
  height: 88px;
  object-fit: cover;
  border: 3px solid #000000;
  background: #05070a;
  box-shadow: 5px 5px 0 #000000;
}

.detail-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.92;
  color: #fff066;
  text-shadow:
    2px 2px 0 #ff3131,
    4px 4px 0 #0c0c0c;
}

.detail-desc {
  margin: 16px 0 0;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.6;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-chip {
  padding: 8px 10px;
  border: 2px solid #000000;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.members-shell {
  position: relative;
  z-index: 1;
  padding: 24px 18px 30px;
}

.members-covers-panel {
  margin: 0 18px 18px;
}

.admin-panel {
  margin: 0 18px 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.38)),
    #ffecc5;
}

.admin-table-wrap {
  margin-top: 18px;
  border: 3px solid #000000;
  background: #ffffff;
  box-shadow: 6px 6px 0 #000000;
  overflow-x: auto;
}

.admin-tools {
  margin-top: 18px;
}

.admin-tools-button {
  width: fit-content;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.admin-table th,
.admin-table td {
  padding: 10px 12px;
  border: 2px solid #000000;
  text-align: left;
}

.admin-table th {
  background: #fff066;
  color: #7a1236;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  text-transform: uppercase;
}

.admin-table td {
  background: #fffef3;
  font-family: "Courier New", monospace;
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-table tbody tr:nth-child(even) td {
  background: #fff8cf;
}

.members-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px;
  border: 3px solid #000000;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #fff7a8, #ff78c8 52%, #61dcff);
  box-shadow: 6px 6px 0 #000000;
}

.members-card.is-authorized {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 728px;
  max-width: 728px;
  min-height: 90px;
  max-height: 90px;
  margin: 0 0 0 18px;
  padding: 10px 14px;
  overflow: hidden;
}

.members-lockup {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.members-card.is-authorized .members-lockup {
  gap: 8px;
  margin: 0;
}

.members-copy-wrap {
  min-width: 0;
}

.members-card.is-authorized .eyebrow {
  display: none;
}

.members-lock,
.members-key {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 48px;
  border: 3px solid #000000;
  background: #ffffff;
}

.members-key {
  background: #fff066;
  transform: rotate(-10deg);
}

.members-title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.92;
  color: #0d2fa1;
  text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #ffef72;
}

.members-card.is-authorized .members-title {
  font-size: 2.2rem;
  line-height: 0.9;
}

.members-copy {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

.members-card.is-authorized .members-copy {
  margin: 4px 0 0;
  font-size: 0.88rem;
  line-height: 1.2;
}

.members-form {
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin-top: 18px;
}

.members-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.members-input {
  width: 100%;
  padding: 10px 12px;
  border: 3px solid #000000;
  background: #fffef3;
  color: #111111;
  font: inherit;
}

.members-button {
  padding: 10px 12px;
  border: 3px solid #000000;
  background: #111111;
  color: #7fffd8;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.members-logout-form {
  max-width: 140px;
}

.members-card.is-authorized .members-logout-form {
  margin: 0;
  justify-self: end;
}

.members-logout-button {
  justify-self: start;
  padding: 6px 10px;
  font-size: 0.72rem;
}

.members-hint {
  margin: 12px 0 0;
  font-size: 0.85rem;
}

.myspace-footer {
  position: relative;
  z-index: 1;
  margin: 18px;
  border: 3px solid #000000;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%),
    linear-gradient(180deg, #ffef9d, #ff8acf 55%, #72dbff);
  box-shadow: 6px 6px 0 #000000;
  overflow: hidden;
}

.footer-head {
  padding: 10px 14px;
  border-bottom: 3px solid #000000;
  background: #fff066;
  color: #7a1236;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 16px;
  padding: 16px;
}

.footer-column {
  padding: 12px;
  border: 3px solid #000000;
  background: rgba(255, 255, 255, 0.82);
}

.footer-title {
  margin: 0 0 8px;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 0.95;
  color: #0e2d95;
  text-shadow: 2px 2px 0 #ffffff, 4px 4px 0 #ffef72;
}

.footer-copy,
.footer-stamp,
.footer-link-row {
  margin: 0;
}

.footer-copy,
.footer-stamp {
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-link-row a {
  color: #1f2ebf;
  text-decoration: underline;
}

.footer-stamp {
  margin-top: 12px;
}

.footer-badge-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-badge {
  display: inline-block;
  padding: 8px 10px;
  border: 2px solid #000000;
  background: #111111;
  color: #7fffd8;
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

@keyframes blink-flash {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.45;
  }
}

@media (max-width: 820px) {
  .hero-banner-wrap {
    grid-template-columns: 1fr;
    width: auto;
  }

  .hero-banner {
    grid-template-columns: 90px minmax(0, 1fr);
    width: 100%;
    max-width: none;
  }

  .hero-banner-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero-banner-matrix {
    width: 100px;
    height: 70px;
  }

  .hero-banner-chuck {
    width: 100px;
    height: 70px;
  }

  .members-card.is-authorized {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    min-height: auto;
    max-height: none;
    margin-left: 0;
  }

  .top-player-wrap {
    grid-template-columns: 1fr;
  }

  .top-player-stack {
    justify-content: flex-start;
  }

  .top-player {
    max-width: none;
    width: 100%;
  }

  .shape-a,
  .shape-b,
  .shape-c,
  .shape-d,
  .shape-e {
    transform: scale(0.8);
  }

  .hero-glyphs {
    top: 12px;
    right: 12px;
  }

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

  .top-status-area {
    grid-template-columns: 1fr;
  }

  .movie-banner-row {
    grid-template-columns: 1fr;
  }

  .status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-banner {
    grid-template-columns: 1fr;
  }

  .hero-banner-gif {
    width: 120px;
  }

  .hero-banner-matrix {
    width: 120px;
    height: 56px;
  }

  .hero-banner-chuck {
    width: 120px;
    height: 56px;
  }

  .top-player-stack {
    flex-direction: column;
  }

  .retro-ad-body {
    grid-template-columns: 90px minmax(0, 1fr);
    min-height: auto;
  }

  .retro-ad-gif {
    height: 60px;
  }

  .retro-ad-title {
    white-space: normal;
  }

  .shape-b,
  .shape-c,
  .shape-d {
    display: none;
  }

  .shape-a {
    top: 120px;
    left: 10px;
  }

  .shape-e {
    right: 8px;
    bottom: 18px;
  }

  .hero-glyphs {
    position: static;
    margin-bottom: 10px;
  }

  main {
    width: min(100%, calc(100% - 16px));
    padding-top: 10px;
  }

  .topbar,
  .top-status-area,
  .movie-banner-row,
  .top-player-wrap,
  .hero,
  .section-panel {
    padding-left: 12px;
    padding-right: 12px;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .myspace-profile-body {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}
