:root {
  color-scheme: dark;
  --ink: #f5f7ff;
  --muted: #b8c1df;
  --panel: #10172b;
  --panel-2: #18213b;
  --line: #52628f;
  --blue: #86b7ff;
  --green: #80ffb0;
  --pink: #ff83d4;
  --yellow: #ffe37d;
  --shadow: #050711;
}

* {
  box-sizing: border-box;
}

html {
  background: #070b16;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(58, 88, 164, 0.35), transparent 34rem),
    radial-gradient(circle at 85% 30%, rgba(140, 38, 129, 0.23), transparent 30rem),
    linear-gradient(180deg, #080d1c, #050711);
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: var(--blue);
}

a:hover,
a:focus-visible {
  color: #fff;
}

img,
iframe,
audio {
  max-width: 100%;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-badge {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid #a9b9e8;
  border-right-color: #35436e;
  border-bottom-color: #35436e;
  background: #1f2b50;
  box-shadow: 5px 5px 0 var(--shadow);
  font-family: "Courier New", monospace;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.site-nav a,
.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border: 2px solid #b5c0e3;
  border-right-color: #334064;
  border-bottom-color: #334064;
  color: #fff;
  background: #1b2749;
  box-shadow: 3px 3px 0 var(--shadow);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a[aria-current="page"],
.button-link:hover,
.button-link:focus-visible {
  background: #334f89;
}

main {
  padding: 16px 0 56px;
}

.hero,
.panel,
.card,
.watch-panel {
  border: 2px solid var(--line);
  background: linear-gradient(180deg, rgba(24, 33, 59, 0.98), rgba(12, 18, 34, 0.98));
  box-shadow: 8px 8px 0 var(--shadow);
}

.hero {
  padding: clamp(24px, 5vw, 54px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font: 700 0.82rem/1.3 "Courier New", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(2.1rem, 7vw, 5rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.lede {
  max-width: 72ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
  gap: 20px;
  margin-top: 28px;
}

.card {
  overflow: hidden;
}

.card-body {
  padding: 20px;
}

.card h2,
.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
}

.card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 2px solid var(--line);
  background: #000;
}

.panel {
  margin-top: 28px;
  padding: clamp(20px, 4vw, 34px);
}

.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.plain-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid #3b4b78;
  background: #111a31;
  text-decoration: none;
}

.plain-list a:hover,
.plain-list a:focus-visible {
  border-color: var(--blue);
  background: #1b294d;
}

.watch-panel {
  padding: clamp(16px, 3vw, 30px);
}

.video-frame {
  position: relative;
  width: 100%;
  margin: 22px 0;
  overflow: hidden;
  border: 2px solid #aebbe0;
  background: #000;
  box-shadow: 7px 7px 0 var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font: 0.9rem/1.4 "Courier New", monospace;
}

.music-release {
  display: grid;
  grid-template-columns: minmax(180px, 340px) 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}

.album-art {
  width: 100%;
  border: 2px solid #b9c4e6;
  box-shadow: 8px 8px 0 var(--shadow);
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 24px 0 42px;
  border-top: 1px solid #263456;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 6px 0;
}

.accent-pink {
  color: var(--pink);
}

.accent-yellow {
  color: var(--yellow);
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 20px, 1120px);
  }

  .music-release {
    grid-template-columns: 1fr;
  }

  .album-art {
    width: min(100%, 420px);
  }
}

