:root {
  color-scheme: light;
  --ink: #241b17;
  --muted: #66584c;
  --paper: #fff9ed;
  --cream: #f4ddae;
  --gold: #d99a25;
  --rust: #a8462d;
  --teal: #0f6f70;
  --mint: #d6efe6;
  --charcoal: #2f2925;
  --line: rgba(36, 27, 23, 0.14);
  --shadow: 0 22px 55px rgba(48, 37, 28, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(36, 27, 23, 0.035) 1px, transparent 1px) 0 0 / 18px 18px,
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 99;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 249, 237, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(217, 154, 37, 0.17);
  outline: 0;
}

.search-toggle {
  position: relative;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.search-toggle span::before,
.search-toggle span::after {
  content: "";
  position: absolute;
  display: block;
}

.search-toggle span::before {
  top: 13px;
  left: 12px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.search-toggle span::after {
  top: 27px;
  left: 26px;
  width: 10px;
  height: 2px;
  transform: rotate(45deg);
  transform-origin: left center;
  background: var(--ink);
}

.search-toggle:hover,
.search-toggle:focus-visible {
  background: rgba(217, 154, 37, 0.17);
  outline: 0;
}

.site-search {
  grid-column: 1 / -1;
  display: none;
  position: relative;
  padding-bottom: 16px;
}

.site-search.is-open {
  display: block;
}

.site-search input {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 2px solid rgba(15, 111, 112, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(48, 37, 28, 0.1);
}

.site-search input:focus {
  border-color: var(--teal);
  outline: 0;
}

.search-results {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  max-height: min(460px, calc(100vh - 150px));
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.search-results.is-open {
  display: grid;
  gap: 4px;
}

.search-result {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border-radius: var(--radius);
  text-decoration: none;
}

.search-result:hover,
.search-result:focus-visible {
  background: rgba(217, 154, 37, 0.12);
  outline: 0;
}

.search-result img,
.search-result .search-initial {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--mint);
}

.search-result .search-initial {
  display: grid;
  place-items: center;
  color: var(--teal);
  font-weight: 900;
}

.search-result strong,
.search-result small {
  display: block;
}

.search-result strong {
  line-height: 1.2;
}

.search-result small,
.search-empty {
  color: var(--muted);
}

.search-empty {
  padding: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  padding: 84px 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(25, 12, 7, 0.88) 0%, rgba(25, 12, 7, 0.58) 42%, rgba(25, 12, 7, 0.24) 100%),
    linear-gradient(180deg, rgba(25, 12, 7, 0.34), rgba(25, 12, 7, 0.7)),
    url("assets/images/hintergrund.webp") center center / cover no-repeat,
    #1b0f0b;
  border-bottom: 1px solid var(--line);
}

.hero.section {
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  min-height: calc(100svh - 78px);
  box-sizing: border-box;
  padding-block: clamp(46px, 7vw, 84px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 760px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 237, 197, 0.22);
  border-radius: var(--radius);
  background: rgba(25, 12, 7, 0.52);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(3px);
}

.hero .eyebrow {
  color: #ffd27b;
}

.hero h1,
.hero .lead {
  color: #fff6df;
}

.hero .lead {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 520px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.7vw, 4.6rem);
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  max-width: 100%;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(15, 111, 112, 0.24);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.button.quiz-cta {
  color: #241b17;
  border-color: rgba(217, 154, 37, 0.28);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(217, 154, 37, 0.22);
}

.play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.retro-console {
  position: relative;
  width: min(100%, 520px);
  min-height: 360px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(244, 221, 174, 0.18)),
    #b65338;
  border: 10px solid #3a2d27;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.retro-console::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.radio-face {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: center;
  min-height: 170px;
  padding: 18px;
  background: #f6d49d;
  border: 6px solid #3a2d27;
  border-radius: var(--radius);
}

.radio-dial {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 7px;
  min-height: 110px;
  padding: 12px;
  background:
    radial-gradient(circle, rgba(58, 45, 39, 0.64) 2px, transparent 3px) 0 0 / 14px 14px,
    #8e3e2d;
  border-radius: var(--radius);
}

.radio-dial span {
  display: block;
  height: var(--bar, 52%);
  border-radius: 999px 999px 2px 2px;
  background: #f9e3b9;
}

.radio-dial span:nth-child(1) { --bar: 42%; }
.radio-dial span:nth-child(2) { --bar: 70%; }
.radio-dial span:nth-child(3) { --bar: 54%; }
.radio-dial span:nth-child(4) { --bar: 88%; }
.radio-dial span:nth-child(5) { --bar: 62%; }

.radio-display {
  padding: 18px;
  color: #f9e3b9;
  background: #201916;
  border: 3px solid #3a2d27;
  border-radius: var(--radius);
}

.radio-display span,
.radio-display strong {
  display: block;
}

.radio-display span {
  color: var(--gold);
  font-weight: 900;
}

.radio-display strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.radio-knobs {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.radio-knobs span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #f6d49d 0 24%, transparent 25%),
    repeating-conic-gradient(#3a2d27 0 10deg, #241b17 10deg 20deg);
  box-shadow: inset 0 0 0 5px #241b17;
}

.vinyl-peek {
  position: absolute;
  z-index: 0;
  right: -66px;
  bottom: -74px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #f3c24c 0 15%, #241b17 15.5% 17%, transparent 17.5%),
    repeating-radial-gradient(circle, #211a17 0 10px, #332b26 11px 13px);
  box-shadow: 0 20px 44px rgba(36, 27, 23, 0.32);
}

.vinyl-peek span {
  position: absolute;
  inset: 39%;
  display: grid;
  place-items: center;
  color: #241b17;
  font-weight: 900;
}

.equalizer {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 28px;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 74px;
  padding: 10px 12px;
  background: rgba(36, 27, 23, 0.86);
  border-radius: var(--radius);
}

.equalizer span {
  width: 13px;
  height: var(--eq, 60%);
  border-radius: 999px;
  background: var(--gold);
}

.equalizer span:nth-child(1) { --eq: 36%; }
.equalizer span:nth-child(2) { --eq: 72%; }
.equalizer span:nth-child(3) { --eq: 48%; }
.equalizer span:nth-child(4) { --eq: 88%; }
.equalizer span:nth-child(5) { --eq: 58%; }

.player-band {
  scroll-margin-top: 88px;
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(168, 70, 45, 0.92), rgba(47, 41, 37, 0.94)),
    #2f2925;
}

.player-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: stretch;
}

.radio-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(58px, 5.4vw, 72px);
  align-items: stretch;
}

.radio-meta {
  align-self: center;
  min-width: 0;
}

.radio-meta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.radio-meta h2 {
  max-width: 5.4em;
  font-size: clamp(2.7rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  overflow-wrap: normal;
  word-break: normal;
}

.radio-meta h2 span {
  display: block;
}

.player-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
  min-width: 0;
  min-height: 300px;
  padding: 24px;
  background: #f7e2b6;
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.player-content,
.track-list {
  min-width: 0;
}

.speaker {
  height: 100%;
  min-height: 220px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle, rgba(36, 27, 23, 0.56) 2px, transparent 3px) 0 0 / 15px 15px,
    #9f3f2b;
}

.player-label {
  margin-bottom: 8px;
  color: var(--rust);
  font-weight: 900;
  text-transform: uppercase;
}

.player-cover {
  display: block;
  width: 112px;
  aspect-ratio: 1;
  margin: 0 0 12px;
  object-fit: cover;
  border: 4px solid rgba(36, 27, 23, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(36, 27, 23, 0.14);
}

.player-cover[hidden] {
  display: none;
}

.player-content h3 {
  min-height: 2.4em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  overflow-wrap: anywhere;
}

audio {
  width: 100%;
  min-width: 0;
  height: 42px;
  margin: 10px 0 18px;
}

.player-controls {
  display: flex;
  gap: 10px;
}

.player-story-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.player-story-link:hover,
.player-story-link:focus-visible {
  background: #0b5d5e;
  outline: 0;
}

.round-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--charcoal);
  font-size: 1.55rem;
  font-weight: 900;
  cursor: pointer;
}

.round-button.play {
  background: var(--teal);
}

.track-list {
  display: grid;
  gap: 8px;
  max-height: 524px;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}

.track-list button {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 800;
  text-align: left;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.track-list button:hover,
.track-list button.is-active {
  background: rgba(244, 221, 174, 0.18);
}

@media (max-width: 1240px) {
  .player-shell {
    grid-template-columns: 1fr;
  }

  .track-list {
    max-height: 244px;
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 0;
}

.shuffle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--teal);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 111, 112, 0.18);
}

.shuffle-button:hover,
.shuffle-button:focus-visible {
  background: #0b5d5e;
  outline: 0;
}

.shuffle-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.artist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.artist-actions .shuffle-button {
  margin-top: 0;
  text-decoration: none;
}

.all-artists-cta {
  color: #241b17;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: none;
}

.all-artists-cta:hover,
.all-artists-cta:focus-visible {
  color: #fff;
  background: #0b5d5e;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.song-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.song-card-link {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.song-card-link:hover,
.song-card-link:focus-visible {
  border-color: rgba(15, 111, 112, 0.34);
  box-shadow: 0 18px 42px rgba(48, 37, 28, 0.12);
  outline: 0;
  transform: translateY(-2px);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.load-more-wrap .button {
  min-width: 170px;
}

.song-card.featured {
  grid-row: auto;
}

.song-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f7e9c8;
  border-radius: var(--radius);
}

.song-card h3 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.news-card h3 a {
  text-decoration: none;
}

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

.tag {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.muted {
  background: #eef4ea;
  border-block: 1px solid var(--line);
}

.artist-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: center;
}

.artist-layout .load-more-wrap {
  grid-column: 2;
  justify-content: flex-start;
  margin-top: 8px;
}

.artist-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artist-cloud a {
  padding: 10px 14px;
  border: 1px solid rgba(15, 111, 112, 0.2);
  border-radius: var(--radius);
  color: #0c5657;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-decoration: none;
}

.artist-cloud a:hover,
.artist-cloud a:focus-visible {
  border-color: rgba(15, 111, 112, 0.38);
  background: rgba(255, 255, 255, 0.92);
  outline: 0;
}

.artist-cloud .all-artists-link {
  color: #fff;
  background: var(--teal);
}

.artist-directory-section {
  padding-top: 32px;
}

.artist-filter-panel {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.artist-range-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.artist-range-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 27, 23, 0.12), rgba(36, 27, 23, 0.72)),
    var(--teal);
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.artist-range-card:nth-child(2) {
  background-color: var(--rust);
}

.artist-range-card:nth-child(3) {
  background-color: #674b8f;
}

.artist-range-card:nth-child(4) {
  background-color: #315a87;
}

.artist-range-card.is-active {
  outline: 3px solid rgba(217, 154, 37, 0.92);
  outline-offset: 3px;
}

.artist-range-card span,
.artist-range-card small {
  font-weight: 900;
}

.artist-range-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.15;
}

.artist-range-card small {
  color: rgba(255, 255, 255, 0.78);
}

.artist-search-row {
  display: grid;
  gap: 9px;
  max-width: 760px;
}

.artist-search-label {
  color: #163f5b;
  font-weight: 900;
}

.artist-search-box {
  position: relative;
}

.artist-search-box span {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}

.artist-search-box span::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -5px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  transform: rotate(45deg);
}

.artist-search-input {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px 12px 50px;
  border: 1px solid rgba(15, 111, 112, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  box-shadow: 0 14px 35px rgba(48, 37, 28, 0.06);
}

.artist-search-input:focus {
  border-color: var(--teal);
  outline: 0;
}

.artist-result-count,
.artist-empty {
  color: var(--muted);
  font-weight: 900;
}

.decade-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.decade-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.decade-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 27, 23, 0.2), rgba(36, 27, 23, 0.76)),
    var(--teal);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.decade-card:nth-child(2) {
  background-color: var(--rust);
}

.decade-card:nth-child(3) {
  background-color: #674b8f;
}

.decade-card:nth-child(4) {
  background-color: #315a87;
}

.decade-card.is-active {
  outline: 3px solid rgba(217, 154, 37, 0.92);
  outline-offset: 3px;
}

.decade-card span {
  font-weight: 900;
}

.decade-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.15;
}

.decade-card small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.archive-browser-section {
  padding-top: 32px;
}

.archive-filter {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.archive-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-filter-tabs button {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(15, 111, 112, 0.18);
  border-radius: 999px;
  color: #103f52;
  background: #fff;
  font-weight: 900;
}

.archive-filter-tabs button.is-active {
  color: #fff;
  border-color: #163f5b;
  background: #163f5b;
}

.archive-filter label {
  display: grid;
  gap: 8px;
  color: #163f5b;
  font-weight: 900;
}

.archive-filter input {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid rgba(15, 111, 112, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.archive-filter input:focus {
  border-color: var(--teal);
  outline: 0;
}

.archive-count {
  color: var(--muted);
  font-weight: 900;
}

.related-decades {
  margin-top: 58px;
}

.classic-related-section {
  padding-top: 0;
}

.classic-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.classic-related-card {
  display: block;
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.classic-related-card:hover,
.classic-related-card:focus-visible {
  outline: 0;
  transform: translateY(-2px);
}

.classic-related-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.news-section {
  background: linear-gradient(180deg, var(--paper), #fff);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.05fr minmax(0, 3fr);
  gap: 16px;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 35px rgba(48, 37, 28, 0.08);
}

.news-card span {
  color: var(--rust);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.read-more {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--teal);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.read-more:hover,
.read-more:focus-visible {
  background: #0b5d5e;
  outline: 0;
}

.posts-page h1 {
  max-width: 820px;
}

.posts-list {
  margin-top: 34px;
}

.post-detail:empty {
  display: none;
}

.post-detail-card {
  max-width: 880px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.94);
  box-shadow: var(--shadow);
}

.post-detail-card img {
  display: block;
  width: 100%;
  max-height: 420px;
  margin-bottom: 24px;
  border-radius: 10px;
  object-fit: cover;
}

.post-detail-card h1 {
  margin: 12px 0 18px;
}

.classic-video {
  overflow: hidden;
  margin: 24px 0;
  border-radius: 10px;
  background: #1f1713;
}

.classic-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.post-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.classic-biography {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-section {
  padding-top: 0;
}

.page-title {
  padding-bottom: 34px;
  background: linear-gradient(180deg, #fff3d8, var(--paper));
  border-bottom: 1px solid var(--line);
}

.page-title h1,
.article-hero h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.article-hero {
  padding: 76px 0;
  background:
    radial-gradient(circle at 76% 20%, rgba(15, 111, 112, 0.14), transparent 30%),
    linear-gradient(180deg, #fff3d8, var(--paper));
  border-bottom: 1px solid var(--line);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.article-grid > * {
  min-width: 0;
  max-width: 100%;
}

.article-cover {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-content {
  max-width: 860px;
  padding-block: 58px 78px;
}

.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.05rem;
}

.article-content a {
  color: var(--teal);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.article-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;
}

.article-content th,
.article-content td {
  padding: 8px 10px;
  border: 1px solid var(--line);
  vertical-align: top;
  overflow-wrap: anywhere;
}

.article-content blockquote {
  margin: 30px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(217, 154, 37, 0.12);
}

.legal-content {
  max-width: 860px;
  padding-block: 8px 18px;
}

.legal-section {
  padding-top: 56px;
}

.legal-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-content address {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(217, 154, 37, 0.1);
  font-style: normal;
}

.legal-content a {
  color: var(--teal);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.article-content figure {
  margin: 0 0 32px;
}

.article-content video {
  width: 100%;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.source-link {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.artist-index a {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.artist-index small {
  color: var(--muted);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  color: #fff;
  background: var(--charcoal);
  border-radius: var(--radius);
}

.contact-box p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.quiz-page {
  position: relative;
  min-height: calc(100svh - 78px);
  padding: 74px 0;
  color: #fff8e8;
  background:
    radial-gradient(circle at 16% 12%, rgba(217, 154, 37, 0.24), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(15, 111, 112, 0.22), transparent 26%),
    linear-gradient(135deg, #211916, #3a2019 48%, #161210);
  overflow: hidden;
}

.quiz-page::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    linear-gradient(90deg, rgba(255, 248, 232, 0.5) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(rgba(255, 248, 232, 0.36) 1px, transparent 1px) 0 0 / 26px 26px;
  pointer-events: none;
}

.quiz-glow {
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(217, 154, 37, 0.32), transparent 62%),
    repeating-radial-gradient(circle, rgba(255, 248, 232, 0.2) 0 2px, transparent 3px 18px);
  pointer-events: none;
}

.quiz-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: start;
}

.quiz-hero-card,
.quiz-stage,
.quiz-highscore {
  border: 1px solid rgba(244, 221, 174, 0.18);
  border-radius: 12px;
  background: rgba(255, 248, 232, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.quiz-hero-card,
.quiz-highscore {
  padding: clamp(24px, 4vw, 42px);
}

.quiz-hero-card h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.95;
}

.quiz-hero-card .lead {
  max-width: 680px;
  color: rgba(255, 248, 232, 0.82);
}

.quiz-field {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin: 30px 0 18px;
  font-weight: 900;
}

.quiz-field input,
.quiz-question input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 2px solid rgba(244, 221, 174, 0.24);
  border-radius: var(--radius);
  color: #fff8e8;
  background: rgba(24, 20, 18, 0.72);
  font: inherit;
  font-weight: 800;
}

.quiz-field input:focus,
.quiz-question input:focus {
  border-color: var(--gold);
  outline: 0;
}

.quiz-field input.is-wrong {
  border-color: #ff9b90;
}

.quiz-start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quiz-name-error {
  margin: 0;
  color: #ff9b90;
  font-weight: 900;
}

.quiz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.quiz-button.primary {
  color: #241b17;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(217, 154, 37, 0.24);
}

.quiz-button.secondary {
  color: #fff;
  background: var(--teal);
}

.quiz-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.quiz-stage {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
}

.quiz-turntable {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(244, 221, 174, 0.28), rgba(168, 70, 45, 0.18)),
    rgba(255, 248, 232, 0.08);
  border: 1px solid rgba(244, 221, 174, 0.18);
}

.quiz-vinyl {
  position: relative;
  width: min(78%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #d99a25 0 13%, #241b17 13.5% 16%, transparent 16.5%),
    repeating-radial-gradient(circle, #171210 0 10px, #302722 11px 13px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.38);
}

.quiz-vinyl span {
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: #fff8e8;
}

.quiz-vinyl.is-spinning {
  animation: quiz-spin 1.8s linear infinite;
}

.quiz-tonearm {
  position: absolute;
  top: 78px;
  right: 52px;
  width: 112px;
  height: 16px;
  transform: rotate(34deg);
  transform-origin: right center;
  border-radius: 999px;
  background: #f4ddae;
  box-shadow: 0 0 0 4px rgba(36, 27, 23, 0.46);
}

.quiz-tonearm::after {
  content: "";
  position: absolute;
  left: -16px;
  top: -12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px #241b17;
}

.quiz-panel h2 {
  color: #fff;
}

.quiz-round-indicator {
  margin: -4px 0 8px;
  color: rgba(255, 248, 232, 0.78);
  font-weight: 900;
}

.quiz-round-indicator strong {
  color: var(--gold);
}

.quiz-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.16);
}

.quiz-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #f4ddae);
  transition: width 0.12s linear;
}

.quiz-countdown {
  color: rgba(255, 248, 232, 0.78);
  font-weight: 900;
}

.quiz-countdown strong {
  color: #fff;
  font-size: 2rem;
}

.quiz-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.quiz-question {
  display: grid;
  gap: 8px;
}

.quiz-question label {
  color: #fff;
  font-weight: 900;
}

.quiz-question input.is-correct {
  border-color: #55c985;
}

.quiz-question input.is-wrong {
  border-color: #df5c4d;
}

.quiz-feedback {
  min-height: 1.4em;
  margin: 0;
  font-weight: 900;
}

.quiz-feedback.is-correct {
  color: #79e4a6;
}

.quiz-feedback.is-wrong {
  color: #ff8a7d;
}

.quiz-result {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.quiz-round-result {
  flex-basis: 100%;
  margin: 0;
  color: rgba(255, 248, 232, 0.84);
  font-weight: 900;
}

.quiz-score {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 900;
}

.quiz-highscore {
  position: sticky;
  top: 100px;
}

.quiz-highscore h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.quiz-highscore ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quiz-highscore li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 248, 232, 0.1);
}

.quiz-highscore li span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #241b17;
  background: var(--gold);
  font-weight: 900;
}

.quiz-highscore li strong,
.quiz-highscore li em {
  font-style: normal;
  overflow-wrap: anywhere;
}

.quiz-highscore li em {
  color: rgba(255, 248, 232, 0.76);
  font-weight: 900;
}

.quiz-empty-score {
  grid-template-columns: 1fr !important;
  color: rgba(255, 248, 232, 0.76);
  font-weight: 800;
}

@keyframes quiz-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.8);
  background: #181412;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-grid a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-block;
  }

  .header-grid {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
    padding-bottom: 16px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
    background: rgba(217, 154, 37, 0.13);
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(25, 12, 7, 0.82) 0%, rgba(25, 12, 7, 0.52) 45%, rgba(25, 12, 7, 0.34) 100%),
      url("assets/images/hintergrund.webp") center center / cover no-repeat,
      #1b0f0b;
  }

  .hero-grid,
  .player-shell,
  .radio-panel,
  .artist-layout,
  .news-grid,
  .article-grid,
  .quiz-layout,
  .quiz-stage {
    grid-template-columns: 1fr;
  }

  .artist-layout .load-more-wrap {
    grid-column: auto;
    justify-content: center;
  }

  .hero-grid {
    min-height: auto;
  }

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

  .classic-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .news-cards {
    grid-template-columns: 1fr;
  }

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

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

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

  .quiz-stage {
    grid-column: auto;
  }

  .quiz-highscore {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .hero.section {
    padding-bottom: clamp(230px, 58vw, 420px);
  }

  .hero-grid {
    padding-block: 58px 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 22px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.2vw, 2.65rem);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 12vw, 3.08rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .page-title {
    padding-top: 34px;
    padding-bottom: 30px;
  }

  .page-title h1 {
    margin-bottom: 14px;
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .legal-page-title h1 {
    font-size: clamp(2rem, 8.5vw, 2.35rem);
    overflow-wrap: normal;
  }

  .page-title .lead {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .legal-section {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .legal-content {
    padding-block: 0;
  }

  .legal-content h2 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .legal-content p,
  .legal-content li,
  .legal-content address {
    font-size: 1rem;
    line-height: 1.58;
  }

  .legal-content address {
    padding: 14px 16px;
  }

  .retro-console {
    width: 100%;
    min-height: 248px;
    padding: 16px;
    border-width: 7px;
  }

  .radio-face {
    grid-template-columns: 1fr;
    min-height: 180px;
  }

  .radio-dial {
    min-height: 72px;
  }

  .vinyl-peek {
    right: -18px;
    bottom: -38px;
    width: 124px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

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

  .speaker {
    min-height: 52px;
  }

  .song-grid,
  .decade-grid,
  .decade-grid.compact,
  .artist-range-grid {
    grid-template-columns: 1fr;
  }

  .artist-range-card {
    min-height: 176px;
    padding: 22px;
  }

  .artist-range-card span {
    font-size: 1.15rem;
    line-height: 1.1;
  }

  .artist-range-card strong {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .classic-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .classic-related-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .classic-related-section .section-heading {
    margin-bottom: 18px;
  }

  .classic-related-section h2 {
    font-size: clamp(2.15rem, 12vw, 3.1rem);
  }

  .decade-card {
    min-height: 148px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .quiz-page {
    padding: 50px 0;
  }

  .quiz-hero-card,
  .quiz-stage,
  .quiz-highscore {
    border-radius: var(--radius);
  }

  .quiz-turntable {
    min-height: 230px;
  }

  .quiz-vinyl {
    width: min(74%, 210px);
  }

  .quiz-tonearm {
    top: 48px;
    right: 34px;
    width: 82px;
  }

  .quiz-result,
  .quiz-button {
    width: 100%;
  }

  .quiz-highscore li {
    grid-template-columns: 28px 1fr;
  }

  .quiz-highscore li em {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quiz-vinyl.is-spinning {
    animation: none;
  }
}
