/* =====================================
   RESET & BASISLAYOUT
===================================== */

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

:root {
  /* Höhe für fixierten Player (Standardwerte, werden mobil angepasst) */
  --player-safe: 140px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1d2133;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header,
main,
footer {
  width: 100%;
}

main {
  flex: 1;
  padding: 2rem 1rem;
  text-align: center;
  background-color: #1d2133;
}

/* Standard-Typografie */
h1 {
  font-size: 2.2rem;
  color: #FF017F;
  margin-top: 1rem;
}

p.subtext {
  font-size: 1.2rem;
  margin: 1rem auto 0;
  color: #444;
  max-width: 800px;
  line-height: 1.6;
}

.highlight {
  color: #FF017F;
  font-weight: 600;
}

/* =====================================
   INFO-BANNER (PROGRAMMHINWEIS)
===================================== */

.info-banner {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #FF017F 0%, #FF7E0D 100%);
  color: #fff;
  padding: 1rem 0.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  animation: fade-in-banner 0.8s ease forwards;
}

.info-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.info-banner i {
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 0.15rem;
  animation: pulse-icon 2.5s infinite ease-in-out;
}

.info-banner p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.info-banner strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-banner em {
  font-style: normal;
  font-weight: 600;
  color: #ffe9c9;
}

/* Einfache, elegante Animationen */
@keyframes fade-in-banner {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

/* Mobile Optimierung */
@media (max-width: 600px) {
  .info-banner p {
    font-size: 0.95rem;
  }
  .info-banner i {
    font-size: 1.2rem;
  }
}


/* =====================================
   HERO-BEREICH
===================================== */

.hero {
  position: relative;
  width: 100%;
  height: 45vh;
  background-image: url('../fileadmin/uploads/images/vinyl-2722233_1920.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 10, 40, 0.55) 0%,
    rgba(50, 30, 60, 0.6) 40%,
    rgba(10, 5, 20, 0.75) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: block !important;
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 468px;
  margin: 0 auto;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content h1,
.hero-content p,
.hero-content .play-button {
  display: block !important;
  width: 100%;
  margin: 0 auto 1rem;
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.2rem;
  color: #f7f7f7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
  opacity: 0.95;
  line-height: 1.4;
}

/* CTA-Button allgemein & im Hero */

.play-button {
  background: linear-gradient(to right, #FF017F, #FF7E0D);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.hero .play-button {
  display: inline-block !important;
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
}

.hero .play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
}

/* Bildcontainer unterhalb Hero */

.image-container {
  margin: 2rem auto;
  max-width: 600px;
  width: 90%;
}

.image-container img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.coming-soon {
  font-size: 1.1rem;
  margin: 2rem 1rem;
  color: #333;
}

/* =====================================
   DEVICES-SECTION
===================================== */

.devices {
  background: linear-gradient(135deg, #e71f85 0%, #e31834 100%);
  text-align: center;
  padding: 2.5rem 1rem;
  color: #fff;
}

.devices h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.devices .underline {
  width: 50px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 1.8rem;
  border-radius: 2px;
}

.device-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.device {
  flex: 1 1 120px;
  min-width: 110px;
  text-align: center;
}

.device i {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.6rem;
  transition: transform 0.3s ease, color 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.device p {
  color: #fff;
  font-weight: 600;
  margin-top: 0.2rem;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.device:hover i {
  transform: scale(1.12);
  color: #ffe9c9;
}

/* =====================================
   ABOUT-SECTION
===================================== */

.about {
  background-color: #1d2133;
  color:#FFF;
  padding: 4rem 1.5rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.about-text {
  flex: 1 1 50%;
  color: #ededed;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  color: #FFF;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #ededed;
  margin-bottom: 1.5rem;
}

.about-text .highlight {
  color: #FF017F;
  font-weight: 600;
}

/* =====================================
   HIGHLIGHTS (3 KARTEN)
===================================== */

.highlights {
  background: linear-gradient(180deg, #1d2133 0%, #181b2b 100%);
  padding: 3.5rem 1.25rem;
  margin: 0;
}

.highlights-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

/* Bildbereich */
.h-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.h-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
  filter: saturate(1.02) contrast(1.03);
}

.highlight-card:hover .h-image img {
  transform: scale(1.06);
}

.h-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 70% 20%,
    rgba(255,1,127,0.18),
    rgba(255,126,13,0.12) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* Text */
.highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FF017F;
  margin: 1rem 1rem 0.25rem;
}

.highlight-card p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 1rem 1.25rem;
}

/* =====================================
   FEATURES-SECTION
===================================== */

.features {
  background: #794988;
  color: #fff;
  padding: 4rem 1.5rem;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.feature-item {
  flex: 1 1 300px;
  max-width: 340px;
  margin: 0 auto;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FF7E0D;
  transition: color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  color: #FF017F;
  transform: scale(1.1);
}

.feature-item h3 {
  color: #FF7E0D;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.feature-item:hover h3 {
  color: #FF017F;
}

.feature-item p {
  color: #F0F0F0;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* =====================================
   ZULETZT GESPIELT – GRID & KARTEN
===================================== */

.last-tracks {
  background: #1d2133;
  color: #FFF;
  padding: 4rem 1.5rem;
}

.last-tracks-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.last-tracks h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #FFF;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: stretch;
}

.track-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform .25s ease, box-shadow .25s ease;
}

.track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.track-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.track-info {
  padding: 1.2rem;
}

.track-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #000;
  word-break: break-word;
  text-align: center;
}

.track-info p {
  font-size: 1rem;
  font-weight: 400;
  color: #222;
  opacity: 0.95;
  margin-bottom: 0.6rem;
  word-break: break-word;
  text-align: center;
}

.track-time {
  font-size: 0.9rem;
  color: #FF017F;
  font-weight: 500;
}

/* "Mehr Titel anzeigen"-Button */

.more-tracks-btn {
  text-align: center;
  margin-top: 2rem;
}

.more-tracks-btn .button {
  display: inline-block;
  background: linear-gradient(135deg, #e71f85 0%, #e31834 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.more-tracks-btn .button:hover {
  background: linear-gradient(135deg, #d81b6c 0%, #cc152a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* =====================================
   PLAYER-FOOTBAR
===================================== */

.with-player {
  padding-bottom: var(--player-safe);
}

/* Fallback */
footer {
  position: relative;
  z-index: 1;
}

#dynamic-footer {
  margin-top: auto;
}

.player-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 8px 12px;
}

.player-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(43, 14, 26, 0.9) 0%,
    rgba(26, 10, 21, 0.9) 100%
  );
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.player-cover {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 100px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

.player-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1 1 auto;
}

.player-station {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-track {
  font-size: .95rem;
  color: #ddd;
  letter-spacing: .3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-cta {
  flex: 0 0 auto;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}

.player-cta svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}

.player-cta svg circle {
  fill: #fff;
}

.player-cta svg polygon {
  fill: #2b0e1a;
}

.player-cta:hover svg {
  transform: scale(1.06);
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, .45));
}

/* =====================================
   EINFACHER FOOTER (GLOBAL)
===================================== */

footer {
  background: linear-gradient(90deg, #FF017F 0%, #FF7E0D 100%);
  color: #fff;
  text-align: center;
  padding: 2.4rem 1rem 2.4rem;
  font-size: 1.05rem;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* =====================================
   SITE-FOOTER (MULTI-COLUMN)
===================================== */

.site-footer {
  background: linear-gradient(135deg, #433d8b 0%, #7a4988 50%, #c86c80 100%);
  color: #fff;
  margin-top: 2rem;
  position: relative;
  padding-bottom: calc(2.2rem + var(--player-safe));
}

.site-footer .footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 1.2rem 2.2rem;
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 280px;
  align-items: start;
  text-align: left;
}

.f-group {
  border: 0;
  padding: 0;
}

.f-title {
  list-style: none;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.2;
  cursor: default;
  margin: 0 0 .8rem;
  color: #fff;
}

.f-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.f-list li {
  margin: .20rem 0;
}

.f-list a {
  color: rgba(255, 255, 255, .95);
  text-decoration: none;
  font-size: 1rem;
}

.f-list a:hover {
  text-decoration: underline;
}

.f-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.f-brand img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
}

.f-divider {
  grid-column: 1 / -1;
  height: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .6);
  margin-top: 1.4rem;
}

.f-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .6rem;
}

.f-legal a {
  color: #fff;
  text-decoration: none;
  margin: 0 .7rem;
  font-weight: 600;
}

.f-legal a:hover {
  text-decoration: underline;
}

.f-legal .sep {
  opacity: .8;
}

.f-social {
  display: flex;
  gap: .6rem;
}

.f-social .icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, .9);
  text-decoration: none;
}

.f-social .icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* Details/Accordion */
.f-group summary {
  list-style: none;
}

.f-group summary::-webkit-details-marker {
  display: none;
}

/* =====================================
   SUBPAGES, PAGE HERO & CONTENT-CARDS
===================================== */

.subpage .page {
  min-height: calc(100vh - var(--player-safe, 0px));
  background: #ededed;
}

.page-hero {
  margin-top: 0;
  padding: 2.8rem 1rem 2.2rem;
  background: linear-gradient(135deg, #e71f85 0%, #e31834 55%, #f06a3a 100%);
  color: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, .08) inset;
  width: 100%;
  position: relative;
  border-bottom: 3px solid rgba(255, 255, 255, .15);
}

.page-hero .page-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.page-hero .page-subtitle {
  color: rgba(255, 255, 255, .9);
  margin-top: .35rem;
  font-size: 1.1rem;
}

.page-hero .page-container::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .85);
  margin-left: 100px;
}

.page-section {
  padding: 2rem 1rem 3rem;
}

.page-container {
  max-width: 1400px;
  margin: 0 auto;
}

.content-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
  padding: 1.6rem;
}

.content-toolbar {
  margin-bottom: .75rem;
}

.content-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content-scroll > center {
  display: none;
}

.content-card .tab,
.content-card .tabcontent,
.content-card .lfm_api_schedule_table_head {
  border-left: 0;
  border-right: 0;
}

.content-card .lfm_schedule {
  max-width: none !important;
  width: 100% !important;
  overflow:hidden;
}

.content-card #lfm_schedule_cen {
  padding: 0 !important;
  text-align: left;
}

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

/* =====================================
   EMPFANGS-BEREICH
===================================== */

.empfang-card {
  padding: 2rem 1.75rem 2.25rem;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.empfang-intro {
  margin-bottom: 1.5rem;
  color: #444;
  font-size: 0.95rem;
}

.empfang-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.empfang-block {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf7fb 100%);
  border-radius: 18px;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(240, 235, 240, 0.9);
  box-shadow:
    0 6px 20px rgba(255, 0, 90, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fade-in-up 0.45s ease forwards;
  overflow: hidden;
}

.empfang-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 127, 0.06),
    rgba(255, 136, 0, 0.05)
  );
  z-index: 0;
  opacity: 0.9;
}

.empfang-block > * {
  position: relative;
  z-index: 1;
}

.empfang-block:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 28px rgba(255, 0, 90, 0.12),
    0 3px 10px rgba(0, 0, 0, 0.05);
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
}

.empfang-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #1e1e1e;
}

.empfang-block p,
.empfang-block ul {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
}

.empfang-block p {
  margin-bottom: 0.6rem;
}

.empfang-block ul {
  margin: 0.35rem 0 0.6rem;
  padding-left: 1.1rem;
}

.empfang-block--full {
  grid-column: 1 / -1;
}

/* Stream-URLs */

.stream-list {
  margin-top: 0.4rem;
  padding-left: 0;
}

.stream-list li {
  list-style: none;
  margin: 0.25rem 0;
}

.stream-list code {
  font-size: 0.9rem;
  font-family: "Courier New", monospace;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  background: #1f1f25;
  color: #f5f5f5;
  display: inline-block;
  word-break: break-all;
  transition: all 0.25s ease;
}

.stream-list code:hover {
  background: #2a2a32;
  transform: translateX(2px);
}

.stream-list .preferred code {
  border: 2px solid #ff017f;
  background: #2b2b33;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 6px rgba(255, 1, 127, 0.25);
}

.stream-list .preferred .label {
  display: inline-block;
  margin-left: 0.6rem;
  font-size: 0.7rem;
  color: #ff017f;
  background: rgba(255, 1, 127, 0.08);
  border: 1px solid rgba(255, 1, 127, 0.25);
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.stream-list .preferred code:hover {
  background: #32323a;
  box-shadow: 0 0 10px rgba(255, 1, 127, 0.3);
}

/* Portale */

.portal-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.portal-list li {
  margin: 0;
}

.portal-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0.2rem;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: all 0.18s ease;
}

.portal-list a:hover {
  background: #f7f7f7;
  color: #ff017f;
  transform: translateX(2px);
}

.portal-icon {
  font-size: 0.85rem;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.portal-list a:hover .portal-icon {
  opacity: 1;
  transform: scale(1.1);
}

.portal-radio { color: #64e646; }
.portal-phonostar { color: #cc3333; }
.portal-onlineradiobox { color: #2f63a0; }
.portal-lautfm { color: #00cd9a; }
.portal-mytuner { color: #b13738; }

/* Buttons */

.btn-listen {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ff007f, #00e6cc);
  background-size: 150% 150%;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 0, 127, 0.25);
  transition: all 0.4s ease;
}

.btn-listen:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 0, 127, 0.25);
  filter: brightness(1.08);
}

.empfang-block .btn-listen {
  margin: 0.4rem 0 0.7rem;
}

.hint {
  font-size: 0.75rem;
  color: #777;
  margin-top: 0.5rem;
}

/* Alexa-Stile */

.alexa-link {
  color: #146eb4;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.alexa-link:hover {
  color: #ff017f;
}

.alexa-btn {
  background: linear-gradient(135deg, #232f3e, #37475a);
  color: #fff;
  box-shadow: 0 6px 20px rgba(35, 47, 62, 0.3);
}

.alexa-btn:hover {
  background: linear-gradient(135deg, #1c2634, #2a3a4e);
  box-shadow: 0 8px 24px rgba(35, 47, 62, 0.4);
}

.alexa-button-wrapper {
  margin-top: 0.8rem;
}

/* =====================================
   IMPRESSUM
===================================== */

.impressum-card {
  padding: 2rem 2rem 2.4rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.impressum-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.impressum-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: #fff0f7;
  color: #ff017f;
  font-size: 0.78rem;
  font-weight: 600;
}

.impressum-tag i {
  font-size: 0.8rem;
}

.impressum-sub {
  font-size: 0.8rem;
  color: #777;
}

.impressum-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.impressum-col {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #333;
}

.impressum-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #111;
}

.impressum-label {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0.8rem 0 0.25rem;
  color: #222;
}

.impressum-subheading {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0.7rem 0 0.15rem;
  color: #222;
}

.impressum-blocktext {
  margin: 0 0 0.7rem;
}

.impressum-link {
  color: #ff017f;
  font-weight: 600;
  text-decoration: none;
}

.impressum-link i {
  margin-right: 0.25rem;
}

.impressum-link:hover {
  text-decoration: underline;
}

.impressum-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.6fr);
  gap: 2rem;
  margin-top: 0.5rem;
}

.impressum-bottom-col {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #333;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0 0.9rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.86rem;
  color: #fff;
  border-radius: 8px;
  padding: 0.42rem 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-btn i {
  font-size: 0.9rem;
}

.social-btn.fb {
  background: #1877f2;
  box-shadow: 0 3px 8px rgba(24, 119, 242, 0.25);
}

.social-btn.fb:hover {
  background: #1664d8;
  box-shadow: 0 4px 10px rgba(24, 119, 242, 0.35);
}

.social-btn.ig {
  background: linear-gradient(135deg, #ff007f, #ff8c00);
  box-shadow: 0 3px 8px rgba(255, 1, 127, 0.25);
}

.social-btn.ig:hover {
  filter: brightness(1.06);
  box-shadow: 0 4px 10px rgba(255, 1, 127, 0.35);
}

.impressum-list {
  margin: 0.2rem 0 0.4rem;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.impressum-note {
  font-size: 0.8rem;
  color: #777;
}

.impressum-hint {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: #999;
}

/* =====================================
   DATENSCHUTZ
===================================== */

.datenschutz-card {
  padding: 2.2rem 2.2rem 2.5rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: #222;
}

.datenschutz-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

.datenschutz-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-top: 1.2rem;
  margin-bottom: 0.35rem;
}

.datenschutz-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.datenschutz-card ul {
  margin: 0.4rem 0 1rem 1.3rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.datenschutz-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.datenschutz-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: #e6fbf7;
  color: #00bfa5;
  font-size: 0.8rem;
  font-weight: 600;
}

.datenschutz-tag i {
  font-size: 0.9rem;
}

.datenschutz-sub {
  font-size: 0.8rem;
  color: #777;
}

.datenschutz-card a {
  color: #00bfa5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.datenschutz-card a:hover {
  color: #ff017f;
  text-decoration: underline;
}

.datenschutz-hint {
  margin-top: 1.8rem;
  font-size: 0.8rem;
  color: #888;
}

/* =====================================
   ANIMATIONEN
===================================== */

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================
   MEDIA QUERIES
===================================== */

/* Tablet / mittlere Screens */
@media (max-width: 1024px) {
  :root {
    --player-safe: 120px;
  }

  .player-cover {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }

  .player-cta svg {
    width: 52px;
    height: 52px;
  }
}

/* Bis 980px – Highlights */
@media (max-width: 980px) {
  .highlights-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

/* Bis 900px – About, Features, Empfang, Footer-Grid */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1.05rem;
  }

  .features-container {
    gap: 1.1rem;
  }

  .feature-item {
    margin-bottom: 1.2rem;
  }

  .feature-item:last-child {
    margin-bottom: 0;
  }

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

  .empfang-card {
    padding: 1.4rem 1.2rem 1.7rem;
  }

  .site-footer .footer-wrap {
    grid-template-columns: 1fr;
    padding: 2.4rem 1rem 1.8rem;
    text-align: left;
  }

  .f-group {
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    padding-bottom: .6rem;
  }

  .f-group:last-of-type {
    border-bottom: 0;
  }

  .f-brand {
    justify-content: flex-start;
    text-align: left;
  }

  .f-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .8rem;
    text-align: left;
  }

  .f-social {
    justify-content: flex-start;
  }

  .f-group > summary.f-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.35rem;
  }

  .f-group > summary.f-title::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform .2s ease;
  }

  .f-group[open] > summary.f-title::after {
    transform: rotate(-135deg);
  }

  .f-list {
    margin-top: .4rem;
  }

  .impressum-card {
    padding: 1.6rem 1.4rem 2rem;
  }

  .impressum-grid,
  .impressum-bottom {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

/* Desktop: Footer-Details immer offen, Titel nicht klickbar */
@media (min-width: 901px) {
  .f-group[open] > .f-list {
    display: block;
  }

  .f-group > summary.f-title {
    pointer-events: none;
  }
}

/* Bis 768px – Hero, Tracks mobil, Player kompakter, Page-Hero */
@media (max-width: 768px) {
  header {
    justify-content: center;
  }

  h1 {
    font-size: 1.8rem;
  }

  p.subtext,
  .coming-soon {
    font-size: 1rem;
  }

  .hero {
    height: 40vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .device-grid {
    gap: 1.5rem;
  }

  .device i {
    font-size: 2rem;
  }

  .devices h2 {
    font-size: 1.5rem;
  }

  .last-tracks {
    padding: 1rem 1rem calc(0.2rem + var(--player-safe, 0px));
  }

  .last-tracks h2 {
    font-size: clamp(1.25rem, 4.5vw, 1.6rem);
    margin-bottom: 1rem;
  }

  .track-grid {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
    justify-items: stretch;
  }

  .track-card {
    display: grid !important;
    grid-template-columns: 84px 1fr !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.75rem !important;
    border-radius: 12px !important;
    background: #FFF !important;
    border: 1px solid #dbeafe !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1) !important;
    transform: none !important;
  }

  .track-card:hover {
    transform: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1) !important;
  }

  .track-card img {
    width: 84px !important;
    height: 84px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    grid-column: 1 !important;
    grid-row: 1 / span 3 !important;
  }

  .track-info {
    padding: 0 !important;
    text-align: left !important;
    display: grid !important;
    grid-template-areas:
      "time"
      "title"
      "artist";
    row-gap: .25rem;
  }

  .track-time {
    grid-area: time;
    font-weight: 800 !important;
    color: #FF017F !important;
    font-size: .95rem !important;
    margin: 0 0 .1rem 0 !important;
  }

  .track-info p {
    grid-area: title;
    margin: 0 !important;
    font-size: .95rem !important;
    line-height: 1.3 !important;
    color: #000 !important;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .track-info p::before {
    content: "Titel: ";
    font-weight: 700;
    color: #FF017F;
  }

  .track-info h3 {
    grid-area: artist;
    margin: 0 !important;
    font-size: .95rem !important;
    font-weight: 400 !important;
    color: #000 !important;
    text-align: left !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .track-info h3::before {
    content: "Künstler: ";
    font-weight: 700;
    color: #FF017F;
    margin-right: 2px;
  }

  :root {
    --player-safe: 100px;
  }

  .player-inner {
    padding: 10px 12px;
    gap: 12px;
  }

  .player-cover {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .player-station {
    font-size: .95rem;
  }

  .player-track {
    font-size: .88rem;
  }

  .player-cta svg {
    width: 48px;
    height: 48px;
  }

  .page-hero {
    padding: 1.8rem 1rem 1.2rem;
    width: 100%;
    left: 0;
  }

  .page-hero h1 {
    font-size: 1.6rem;
  }

  .content-card {
    border-radius: 14px;
    padding: 1.1rem;
  }

  .page-hero .page-container::after {
    margin-left: 20px !important;
  }
}

/* Bis 640px – Highlights, Button */
@media (max-width: 640px) {
  .highlights-wrap {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .highlights {
    padding: 2.5rem 1rem;
  }

  .highlight-card h3,
  .highlight-card p {
    text-align: center;
  }

  .more-tracks-btn {
    margin-top: 1.5rem;
  }

  .more-tracks-btn .button {
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
  }
}

/* Bis 480px – Typo & Player */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  footer {
    font-size: 0.9rem;
  }

  :root {
    --player-safe: 84px;
  }

  .player-cover {
    display: none;
  }
}

/* ===============================
   Über uns – Radio RetroMix
   =============================== */

/* Card-Layout */
.ueberuns-card {
  padding: 2.2rem 2.2rem 2.6rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: #222;
}

/* Intro-Bereich mit Icon */
.ueberuns-intro {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.ueberuns-icon {
  font-size: 1.8rem;
  color: #ff017f;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Überschriften */
.ueberuns-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-top: 1.7rem;
  margin-bottom: 0.5rem;
}

.ueberuns-card h2:first-of-type {
  margin-top: 0;
}

/* Fließtext */
.ueberuns-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0.9rem;
}

/* Listen */
.ueberuns-card ul {
  margin: 0.5rem 0 1.2rem 1.4rem;
  line-height: 1.65;
  color: #333;
  font-size: 0.96rem;
}

.ueberuns-card li {
  margin-bottom: 0.3rem;
}

/* Links */
.ueberuns-link {
  color: #ff017f;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ueberuns-link:hover {
  color: #ff2a90;
  text-shadow: 0 0 6px rgba(255, 1, 127, 0.3);
}

/* Social Media Buttons */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
  margin-bottom: 1.4rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.social-btn i {
  font-size: 1rem;
}

/* Farbvarianten */
.social-btn.fb {
  background: #1877f2;
}

.social-btn.fb:hover {
  background: #0d65d9;
  transform: translateY(-1px);
}

.social-btn.ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.ig:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Zitat/Schlusszeile */
.ueberuns-hint {
  margin-top: 1.8rem;
  font-size: 0.86rem;
  color: #666;
  font-style: italic;
  text-align: center;
}

/* Responsives Layout */
@media (max-width: 900px) {
  .ueberuns-card {
    padding: 1.6rem 1.4rem 2rem;
  }

  .ueberuns-intro {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .ueberuns-card h2 {
    margin-top: 1.4rem;
  }

  .social-links {
    flex-direction: column;
    gap: 0.6rem;
  }
}

/* Hero-Sektion für Über uns */
.page-hero--ueberuns {
  background: linear-gradient(90deg, #ff017f 0%, #ff4f30 100%);
  color: #fff;
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.page-hero--ueberuns h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.page-hero--ueberuns .page-subtitle {
  font-size: 1rem;
  color: #fff8f8;
}

/* ===============================
   Moderation – Radio RetroMix
   =============================== */

.page-hero--moderation {
  background: linear-gradient(90deg, #ff017f 0%, #ff4f30 100%);
  color: #ffffff;
  text-align: center;
  padding: 4rem 0 3.2rem;
}

.page-hero--moderation h1 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.page-hero--moderation .page-subtitle {
  font-size: 1rem;
  color: #ffeaf3;
}

/* Card */
.moderation-card {
  padding: 2.2rem 2.2rem 2.4rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.03);
}

/* Layout */
.moderation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.moderation-text p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0.85rem;
}

.moderation-card h2 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #111;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.moderation-card h2:first-of-type {
  margin-top: 0;
}

/* Liste */
.moderation-list {
  margin: 0.4rem 0 1.2rem 1.3rem;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #333;
}

.moderation-list li {
  margin-bottom: 0.25rem;
}

/* Links */
.moderation-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ff017f;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.moderation-link i {
  font-size: 0.95rem;
}

.moderation-link:hover {
  color: #ff2a90;
  text-shadow: 0 0 6px rgba(255, 1, 127, 0.3);
}

/* Hinweis */
.moderation-note {
  font-size: 0.82rem;
  color: #777;
  margin-top: 0.4rem;
}

/* Bildbereich */
.moderation-image-wrapper {
  display: flex;
  justify-content: flex-end;
}

.moderation-figure {
  margin: 0;
  text-align: center;
}

.moderation-image {
  width: 100%;
  max-width: 320px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0,0,0,0.25);
  border: 3px solid #ffffff;
}

.moderation-figure figcaption {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: #777;
}

/* ===============================
   Responsive – Moderation (optimiert)
   =============================== */
@media (max-width: 900px) {
  .page-hero--moderation {
    padding: 3.2rem 0 2.4rem;
  }

  .moderation-card {
    padding: 1.6rem 1.4rem 2rem;
  }

  /* Mobil: untereinander, Bild zuerst */
  .moderation-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    text-align: center;
  }

  /* Bildblock */
  .moderation-image-wrapper {
    order: 1;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .moderation-figure {
    text-align: center;
  }

  .moderation-image {
    width: 100%;
    max-width: 300px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
  }

  .moderation-figure figcaption {
    font-size: 0.82rem;
    color: #666;
    margin-top: 0.4rem;
  }

  /* Textblock */
  .moderation-text {
    order: 2;
    text-align: left;
    width: 100%;
  }

  .moderation-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Überschriften */
  .moderation-card h2 {
    font-size: 1.1rem;
    margin-top: 1.4rem;
    margin-bottom: 0.4rem;
  }

  /* Social-Media-Buttons */
  .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
  }

  .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: auto;
  }

  .social-btn.fb {
    background: #1877f2;
  }

  .social-btn.ig {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  }

  .social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  }
}
