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

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: #eee;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #111, #000);
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #222;
}

header h1 {
  margin-bottom: 10px;
}

/* NAV */
nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ff4081;
}

/* MAIN GRID */
.container {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  gap: 20px;
  padding: 20px;
  min-height: 70vh;
}

/* SIDE BOXES */
.side {
  background: #141414;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #222;
}

.side h3 {
  color: #ff4081;
  margin-bottom: 10px;
}

/* CONTENT */
.content {
  background: #111;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #222;
}

.content h2 {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* FOOTER */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  margin-top: 40px;
}
/* ===== RADIO PLAYER ===== */
.radio-player {
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  background: linear-gradient(145deg, #111, #1a1a1a);
  border-radius: 20px;
  border: 1px solid #222;
  box-shadow: 0 0 30px rgba(255,64,129,0.2);
}

.radio-player h3 {
  color: #ff4081;
  margin-bottom: 15px;
}

.radio-player button {
  padding: 15px 40px;
  font-size: 1.2em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(45deg, #ff0055, #ff9900);
  color: #fff;
  box-shadow: 0 0 25px rgba(255,0,120,0.6);
  transition: transform .2s, box-shadow .2s;
}

.radio-player button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255,0,120,0.9);
}
/* ===== RADIO PLAYER ===== */
.radio-player {
  margin-top: 30px;
  padding: 25px;
  text-align: center;
  background: radial-gradient(circle at top, #111, #0b0b0b);
  border-radius: 25px;
  border: 1px solid #222;
  box-shadow: 0 0 40px rgba(46,203,255,0.15);
}

.radio-player h3 {
  color: #ff2f92;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.track-info {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #2ecbff;
}

/* BUTTON */
.radio-player button {
  padding: 18px 45px;
  font-size: 1.3em;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(45deg, #ff2f92, #2ecbff);
  box-shadow: 0 0 30px rgba(255,47,146,0.6);
  transition: .2s;
}

/* LIVE PULSING */
.radio-player.live-onair button {
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 20px rgba(255,47,146,0.5); }
  50% { box-shadow: 0 0 45px rgba(46,203,255,0.9); }
  100% { box-shadow: 0 0 20px rgba(255,47,146,0.5); }
}
/* ===== HEADER LAYOUT ===== */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: linear-gradient(90deg, #050505, #111);
  border-bottom: 1px solid #222;
}

/* LOGO */
.logo {
  height: 50px;
}

/* NAV */
.header-nav {
  display: flex;
  gap: 20px;
}

.header-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.header-nav a:hover {
  color: #2ecbff;
}

/* PLAYER HEADER */
.header-player {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* STATUS */
.status-off {
  color: #aaa;
  font-size: 0.9em;
}

.status-on {
  color: #ff2f92;
  font-weight: bold;
}

/* BUTTON */
.header-player button {
  padding: 10px 18px;
  font-size: 1.1em;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #ff2f92, #2ecbff);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,47,146,0.6);
}

/* LIVE PULSE */
.header-player.live-onair button {
  animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 15px rgba(255,47,146,.5); }
  50% { box-shadow: 0 0 35px rgba(46,203,255,.9); }
  100% { box-shadow: 0 0 15px rgba(255,47,146,.5); }
}

/* MOBILE */
@media (max-width: 900px) {
  .main-header {
    flex-direction: column;
    gap: 15px;
  }
}
.header-player iframe {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(46,203,255,0.4);
}
/* ===== NOW PLAYING ===== */
.now-playing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.95em;
  color: #2ecbff; /* Neon-Blau aus deinem Logo */
}

.onair-dot {
  color: #ff2f92; /* Neon-Pink */
  animation: blink 1.2s infinite;
  font-size: 1.1em;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
/* ===== RADIO HEADER ===== */
.radio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 15px 25px;
  background: linear-gradient(90deg, #050505, #0b0b0b);
  border-bottom: 1px solid #222;
}

/* LOGO */
.radio-logo img {
  height: 50px;
}

/* NAVIGATION */
.radio-nav {
  display: flex;
  gap: 20px;
}

.radio-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.radio-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #2ecbff;
  transition: .3s;
}

.radio-nav a:hover::after {
  width: 100%;
}

/* LIVE BEREICH */
.radio-live {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* NOW PLAYING */
.now-playing {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2ecbff;
  font-size: 0.95em;
  white-space: nowrap;
}

.onair-dot {
  color: #ff2f92;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* LAUT PLAYER */
.laut-player {
  width: 260px;
  height: 60px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(46,203,255,0.4);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .radio-header {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .radio-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .radio-live {
    justify-content: center;
    flex-direction: column;
  }
}
/* ===== COVER ART ===== */
.cover-art {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

/* TEXT NEBEN COVER */
.track-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2ecbff;
  font-size: 0.95em;
  white-space: nowrap;
}
/* ===== LIVE BANNER ===== */
.live-banner {
  background: linear-gradient(90deg, #ff2f92, #2ecbff);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 1.05em;
  font-weight: bold;
  letter-spacing: 1px;
  animation: liveGlow 1.5s infinite;
}

@keyframes liveGlow {
  0% { box-shadow: 0 0 10px rgba(255,47,146,.6); }
  50% { box-shadow: 0 0 25px rgba(46,203,255,.9); }
  100% { box-shadow: 0 0 10px rgba(255,47,146,.6); }
}
/* ===== MOBILE HEADER FIX ===== */
@media (max-width: 600px) {

  .radio-header {
    padding: 10px 12px;
  }

  /* LOGO kleiner */
  .radio-logo img {
    height: 34px;
  }

  /* LIVE-BEREICH kompakter */
  .radio-live {
    gap: 10px;
  }

  /* COVER kleiner */
  .cover-art {
    width: 34px;
    height: 34px;
    border-radius: 6px;
  }

  /* TEXT etwas kleiner */
  .track-text {
    font-size: 0.8em;
  }

  /* PLAYER iframe kleiner */
  .laut-player {
    width: 220px;
    height: 50px;
  }

}
/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  font-size: 1.8em;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 800px) {

  .hamburger {
    display: block;
  }

  .radio-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #0b0b0b;
    padding: 15px 0;
    border-top: 1px solid #222;
  }

  .radio-nav a {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #222;
  }

  .radio-nav.show {
    display: flex;
  }

  /* Header umbrechen */
  .radio-header {
    flex-wrap: wrap;
  }

  .radio-live {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}
/* ===== SEITEN LAYOUT ===== */
.page-layout {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 25px;
  padding: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

/* BOXEN */
.page-left,
.page-right,
.page-center {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #222;
}

/* TITEL */
.page-left h3,
.page-right h3 {
  color: #ff2f92;
  margin-bottom: 10px;
}

.page-center h2 {
  color: #2ecbff;
  margin-bottom: 10px;
}

/* TEXT */
.page-center p {
  line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-center {
    order: 1;
  }

  .page-left {
    order: 2;
  }

  .page-right {
    order: 3;
  }
}
/* ===== AKTUELLE SENDUNG ===== */
.live-now {
  color: #ff2f92;
  font-weight: bold;
  animation: blink 1.2s infinite;
}

.autodj {
  color: #aaa;
  font-style: italic;
}
.wunsch-item a {
  color: #2ecbff;
  text-decoration: none;
  margin-right: 10px;
}

.wunsch-item a:hover {
  text-decoration: underline;
}
/* ===== DJ TEAM ===== */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.dj-card {
  background: #111;
  padding: 15px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #222;
}

.dj-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.dj-card a {
  display: inline-block;
  margin-top: 10px;
  color: #2ecbff;
}

/* ===== DJ PROFIL ===== */
.dj-profile {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.dj-profile img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}
