:root {
  --bg: #030306;
  --text: #ffffff;
  --muted: rgba(255,255,255,.66);
  --soft: rgba(255,255,255,.42);
  --line: rgba(255,255,255,.12);

  --blue: #10b8ff;
  --violet: #6244ff;
  --magenta: #e000cf;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(224,0,207,.20), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(16,184,255,.14), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(98,68,255,.14), transparent 42%),
    #030306;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(3,3,6,.76);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  width: 220px;
  max-width: 55vw;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: #fff;
}

.icon-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 92px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(224,0,207,.24), transparent 28%),
    radial-gradient(circle at 80% 14%, rgba(16,184,255,.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(98,68,255,.24), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(3,3,6,.08) 0%,
      rgba(3,3,6,.30) 56%,
      rgba(3,3,6,.92) 100%
    );
}

.hero-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--violet), var(--blue));
  box-shadow: 0 0 16px rgba(16,184,255,.8);
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(56px, 9vw, 118px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 900;
}

h1 span {
  background: linear-gradient(90deg, var(--magenta), var(--violet), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: -58px;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.34);
  transition: .2s ease;
}

.hero-scroll:hover {
  transform: translateX(-50%) translateY(-4px);
  background: rgba(255,255,255,.10);
}

.hero-scroll span {
  width: 13px;
  height: 13px;
  margin-top: -5px;
  border-right: 2px solid rgba(255,255,255,.92);
  border-bottom: 2px solid rgba(255,255,255,.92);
  transform: rotate(45deg);
  animation: heroArrow 2s infinite;
}

@keyframes heroArrow {
  0% {
    opacity: .25;
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translate(6px, 6px);
  }

  100% {
    opacity: .25;
    transform: rotate(45deg) translate(0, 0);
  }
}

section {
  padding: 74px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-title p {
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Soundwelten */

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

.sound-card {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  background: #070711;
  box-shadow: 0 16px 34px rgba(0,0,0,.34);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sound-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 22px 46px rgba(0,0,0,.44);
}

.sound-card::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 4;
  width: 72px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(16,184,255,.7);
}

.sound-card.rheinland::before {
  background: #6faede;
}

.sound-card.retro::before {
  background: #5a4b91;
  box-shadow: 0 0 14px rgba(90,75,145,.75);
}

.sound-card.dance::before {
  background: #ff6233;
  box-shadow: 0 0 14px rgba(255,98,51,.80);
}

.sound-card.german::before {
  background: #17d6df;
}

.sound-card.lounge::before {
  background: #9d77ff;
}

.sound-card.karneval::before {
  background: #ff414d;
}

.sound-card.schlager::before {
  background: #ff4fb8;
}

.sound-card.weihnachten::before,
.sound-card.christmas::before {
  background: #d7b164;
  box-shadow: 0 0 14px rgba(215,177,100,.80);
}

.sound-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.28) 0%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.88) 100%),
    radial-gradient(circle at 50% 80%, rgba(0,0,0,.10), rgba(0,0,0,.55));
  pointer-events: none;
}

.sound-logo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.sound-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.06) brightness(.82);
  transition: transform .35s ease, filter .35s ease;
}

.sound-card:hover .sound-logo-wrap img {
  transform: scale(1.095);
  filter: saturate(1.16) contrast(1.08) brightness(.95);
}

.sound-live-label {
  position: absolute;
  left: 14px;
  top: 15px;
  right: 14px;
  z-index: 5;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 14px rgba(0,0,0,.8);
}

.sound-current {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 56px;
  z-index: 5;
}

.sound-current strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-shadow: 0 5px 18px rgba(0,0,0,.78);
}

.sound-current span {
  display: block;
  color: rgba(255,255,255,.92);
  font-size: clamp(12px, 1.05vw, 16px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-shadow: 0 5px 18px rgba(0,0,0,.78);
}

.sound-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(0,0,0,.34);
  border-top: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.sound-bottom span:first-child {
  color: rgba(255,255,255,.72);
  font-size: 9px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.play-circle {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  transition: .2s ease;
  flex: 0 0 auto;
}

.play-circle i {
  font-size: 10px;
  color: #fff;
}

.sound-card:hover .play-circle {
  transform: scale(1.06);
  background: rgba(255,255,255,.18);
}

/* Nowplaying – Senderfamilie Design */

.now-section {
  padding-top: 50px;
}

.now-list {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.now-item {
  --np-bg: #141820;
  --np-accent: #ffffff;
  --np-neutral: #f2eadc;
  --np-button-bg: var(--np-neutral);
  --np-button-color: var(--np-bg);

  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 132px 1fr 76px;
  align-items: stretch;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--np-bg);
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
  isolation: isolate;
}

.now-item.rheinland {
  --np-bg: #0a62ad;
  --np-accent: #6faede;
  --np-neutral: #f5f5f5;
}

.now-item.dance {
  --np-bg: #98df00;
  --np-accent: #e000a8;
  --np-neutral: #000000;
}

.now-item.german {
  --np-bg: #243438;
  --np-accent: #4ccddd;
  --np-neutral: #d8d8d8;
}

.now-item.karneval {
  --np-bg: #d4004f;
  --np-accent: #ffdf00;
  --np-neutral: #f5f5f5;
}

.now-item.lounge {
  --np-bg: #47496f;
  --np-accent: #bd78f2;
  --np-neutral: #e8e2d5;
}

.now-item.retro {
  --np-bg: #63c4bd;
  --np-accent: #d84f4f;
  --np-neutral: #e8d4ad;
}

.now-item.schlager {
  --np-bg: #7a1e48;
  --np-accent: #ffd166;
  --np-neutral: #f8f1e5;
}

.now-item.weihnachten,
.now-item.christmas {
  --np-bg: #c1121f;
  --np-accent: #ffd700;
  --np-neutral: #f5f0e6;
}

.now-bg {
  display: none;
}

.now-bg img {
  display: none;
}

.now-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.16), transparent 24%),
    radial-gradient(circle at 12% 110%, rgba(0,0,0,.16), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,.08), transparent 48%);
}

.now-item::after {
  content: "";
  position: absolute;
  left: 132px;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 1px;
  background: rgba(255,255,255,.18);
  opacity: .45;
  pointer-events: none;
}

.now-cover {
  position: relative;
  z-index: 3;
  width: 132px;
  height: 132px;
  overflow: hidden;
  background: rgba(255,255,255,.10);
}

.now-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.now-content {
  position: relative;
  z-index: 3;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 26px 16px;
}

.now-station {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}

.now-bars {
  display: none;
}

.now-station strong {
  color: var(--np-neutral);
  font-size: clamp(18px, 2vw, 25px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.now-station span:not(.now-bars) {
  display: none;
}

.now-track strong {
  display: block;
  margin-bottom: 4px;
  color: var(--np-accent);
  font-size: clamp(24px, 3vw, 36px);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.now-track span {
  display: block;
  color: var(--np-neutral);
  font-size: clamp(16px, 1.9vw, 23px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.open-btn {
  position: relative;
  z-index: 4;
  align-self: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--np-button-bg);
  color: var(--np-button-color);
  font-size: 15px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  transition: transform .2s ease, filter .2s ease;
}

.open-btn:hover {
  transform: scale(1.08);
  filter: brightness(1.06);
}

.open-btn i {
  margin-left: 3px;
  font-size: 15px;
}

/* Features */

.stream-info-section {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 18% 0%, rgba(224,0,207,.13), transparent 32%),
    radial-gradient(circle at 82% 0%, rgba(16,184,255,.10), transparent 34%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.stream-info-section .section-title {
  margin-bottom: 48px;
}

.stream-info-section .section-title h2 {
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .03em;
}

.stream-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stream-info-item {
  position: relative;
  padding: 0 38px;
  text-align: center;
}

.stream-info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  width: 1px;
  height: 132px;
  background: rgba(255,255,255,.24);
}

.stream-info-icon {
  width: 84px;
  height: 70px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta);
  font-size: 48px;
  line-height: 1;
  position: relative;
  filter: drop-shadow(0 0 18px rgba(224,0,207,.28));
}

.stream-info-play {
  position: absolute;
  font-size: 17px;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
}

.stream-info-item:nth-child(2) .stream-info-icon {
  color: var(--violet);
}

.stream-info-item:nth-child(3) .stream-info-icon {
  color: var(--blue);
}

.stream-info-item h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 900;
}

.stream-info-item p {
  max-width: 220px;
  margin: 0 auto;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.55;
}

/* Footer */

.footer {
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
  padding: 30px 0;
}

.footer-simple-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.48);
  font-size: 14px;
}

.footer-simple a {
  color: rgba(255,255,255,.68);
}

.footer-simple a:hover {
  color: #fff;
}

.footer-simple-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 1180px) {
  .sound-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .stream-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 0;
  }

  .stream-info-item:nth-child(2)::after {
    display: none;
  }

  .now-item {
    grid-template-columns: 110px 1fr 62px;
    min-height: 110px;
  }

  .now-cover {
    width: 110px;
    height: 110px;
  }

  .now-content {
    padding: 13px 16px;
  }

  .now-station {
    margin-bottom: 9px;
  }

  .now-station strong {
    font-size: 18px;
  }

  .now-track strong {
    font-size: 23px;
  }

  .now-track span {
    font-size: 17px;
  }

  .open-btn {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }
}

@media (max-width: 820px) {
  .sound-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .icon-btn {
    display: inline-flex;
  }

  .site-header {
    backdrop-filter: blur(16px);
  }

  .header-inner {
    min-height: 72px;
  }

  .logo {
    width: 150px;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: rgba(3,3,6,.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0,0,0,.38);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(255,255,255,.06);
  }

  .hero {
    min-height: calc(100svh - 72px);
    padding: 28px 0 96px;
    display: flex;
    align-items: center;
  }

  .hero-container {
    min-height: calc(100svh - 72px - 124px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    transform: translateY(-14px);
  }

  .eyebrow {
    margin-bottom: 18px;
    padding: 7px 12px;
    font-size: 9px;
    letter-spacing: .13em;
  }

  h1 {
    max-width: 360px;
    margin: 0 auto 18px;
    font-size: clamp(38px, 12vw, 54px);
    line-height: .92;
    letter-spacing: -.065em;
  }

  .lead {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,.68);
  }

  .hero-scroll {
    bottom: 24px;
    width: 42px;
    height: 42px;
  }

  .hero-scroll span {
    width: 11px;
    height: 11px;
    margin-top: -4px;
  }

  section {
    padding: 58px 0;
  }

  #soundwelten {
    padding-top: 62px;
  }

  .section-title {
    margin-bottom: 26px;
  }

  .section-title h2 {
    font-size: 30px;
    line-height: 1;
  }

  .section-title p {
    font-size: 10px;
    letter-spacing: .18em;
  }

  .sound-card {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
  }

  .sound-live-label {
    font-size: 9px;
    left: 11px;
    top: 12px;
    right: 11px;
  }

  .sound-current {
    left: 11px;
    right: 11px;
    bottom: 48px;
  }

  .sound-current strong {
    font-size: 15px;
  }

  .sound-current span {
    font-size: 11px;
  }

  .sound-bottom {
    min-height: 38px;
    padding: 8px 11px;
  }

  .sound-bottom span:first-child {
    font-size: 8px;
  }

  .play-circle {
    width: 28px;
    height: 28px;
  }

  .now-section {
    padding-top: 26px;
  }

  .now-list {
    gap: 12px;
  }

  .now-item {
    grid-template-columns: 82px 1fr 48px;
    min-height: 82px;
  }

  .now-cover {
    width: 82px;
    height: 82px;
  }

  .now-content {
    padding: 10px 12px;
  }

  .now-station {
    gap: 0;
    margin-bottom: 6px;
  }

  .now-station strong {
    font-size: 12px;
  }

  .now-track strong {
    font-size: 15px;
  }

  .now-track span {
    font-size: 12px;
  }

  .open-btn {
    width: 32px;
    height: 32px;
    min-height: 32px;
    font-size: 11px;
  }

  .open-btn i {
    font-size: 11px;
  }

  .stream-info-section {
    padding: 64px 0 54px;
  }

  .stream-info-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stream-info-item {
    padding: 0;
  }

  .stream-info-item::after {
    display: none !important;
  }

  .stream-info-icon {
    width: 70px;
    height: 60px;
    margin-bottom: 18px;
    font-size: 38px;
  }

  .stream-info-play {
    font-size: 14px;
  }

  .stream-info-item h3 {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .stream-info-item p {
    max-width: 240px;
    font-size: 13px;
    line-height: 1.6;
  }

  .footer {
    margin-top: 10px;
    padding: 22px 0;
  }

  .footer-simple-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    line-height: 1.6;
  }

  .footer-simple-links {
    gap: 14px;
  }
}

@media (max-width: 460px) {
  .hero {
    min-height: calc(100svh - 72px);
    padding: 24px 0 92px;
  }

  .hero-container {
    min-height: calc(100svh - 72px - 116px);
  }

  .hero-content {
    transform: translateY(-10px);
  }

  h1 {
    max-width: 330px;
    font-size: clamp(34px, 12.5vw, 48px);
  }

  .lead {
    max-width: 310px;
    font-size: 12px;
  }

  .hero-scroll {
    bottom: 22px;
  }

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

  .sound-card {
    aspect-ratio: 1 / 1;
  }

  .sound-live-label {
    font-size: 11px;
    left: 14px;
    top: 15px;
    right: 14px;
  }

  .sound-current {
    left: 14px;
    right: 14px;
    bottom: 52px;
  }

  .sound-current strong {
    font-size: 19px;
  }

  .sound-current span {
    font-size: 14px;
  }

  .now-item {
    grid-template-columns: 74px 1fr 42px;
    min-height: 74px;
  }

  .now-cover {
    width: 74px;
    height: 74px;
  }

  .now-content {
    padding: 9px 10px;
  }

  .now-station strong {
    font-size: 10px;
  }

  .now-track strong {
    font-size: 13px;
  }

  .now-track span {
    font-size: 11px;
  }

  .open-btn {
    width: 30px;
    height: 30px;
    min-height: 30px;
  }
}

/* Nowplaying – finale responsive Korrekturen */
@media (max-width: 980px) {
  .now-item {
    grid-template-columns: 110px 1fr 62px;
    min-height: 110px;
  }

  .now-item::after {
    left: 110px;
  }

  .now-cover {
    width: 110px;
    height: 110px;
  }

  .now-content {
    padding: 13px 16px;
  }

  .now-station {
    margin-bottom: 9px;
  }

  .now-station strong {
    font-size: 18px;
  }

  .now-track strong {
    font-size: 23px;
  }

  .now-track span {
    font-size: 17px;
  }

  .open-btn {
    width: 38px;
    height: 38px;
    min-height: 38px;
  }
}

@media (max-width: 720px) {
  .now-section {
    padding-top: 26px;
  }

  .now-list {
    gap: 12px;
  }

  .now-item {
    grid-template-columns: 82px 1fr 48px;
    min-height: 82px;
  }

  .now-item::after {
    left: 82px;
  }

  .now-cover {
    width: 82px;
    height: 82px;
  }

  .now-content {
    padding: 10px 12px;
  }

  .now-station {
    margin-bottom: 6px;
  }

  .now-station strong {
    font-size: 12px;
  }

  .now-track strong {
    font-size: 15px;
  }

  .now-track span {
    font-size: 12px;
  }

  .open-btn {
    width: 32px;
    height: 32px;
    min-height: 32px;
    font-size: 11px;
  }

  .open-btn i {
    font-size: 11px;
  }
}

@media (max-width: 460px) {
  .now-item {
    grid-template-columns: 74px 1fr 42px;
    min-height: 74px;
  }

  .now-item::after {
    left: 74px;
  }

  .now-cover {
    width: 74px;
    height: 74px;
  }

  .now-content {
    padding: 9px 10px;
  }

  .now-station strong {
    font-size: 10px;
  }

  .now-track strong {
    font-size: 13px;
  }

  .now-track span {
    font-size: 11px;
  }

  .open-btn {
    width: 30px;
    height: 30px;
    min-height: 30px;
  }
}
