@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Roboto:wght@400;700&display=swap');

:root {
  --pink: #ff16d1;
  --cyan: #00eaff;
  --dark: #080814;
  --panel: #121329;
  --text: #f8f8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--text);
  font-family: Roboto, Arial, sans-serif;
}


/* =========================================
   HEADER
   ========================================= */

.top {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 5%;

  background: rgba(5, 5, 15, .82);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0, 234, 255, .25);
}


/* =========================================
   LOGO / BRAND
   ========================================= */

.brand {
  font-family: Orbitron;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
}

.brand-small {
  color: var(--pink);
  margin-right: 8px;

  text-shadow:
    0 0 5px var(--pink),
    0 0 12px var(--pink),
    0 0 25px var(--pink);
}

.brand b {
  color: var(--pink);

  text-shadow:
    0 0 5px var(--pink),
    0 0 12px var(--pink),
    0 0 25px var(--pink);
}


/* =========================================
   NAVIGATION
   ========================================= */

nav {
  display: flex;
  gap: 18px;
}

nav a {
  position: relative;

  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;

  transition:
    color .25s ease,
    text-shadow .25s ease;
}


/* Menü Hover */

nav a:hover {
  color: var(--cyan);

  text-shadow:
    0 0 5px var(--cyan),
    0 0 12px var(--cyan),
    0 0 25px var(--cyan),
    0 0 40px var(--cyan);
}


/* Neon-Linie unter Menüpunkt */

nav a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: var(--pink);

  box-shadow:
    0 0 5px var(--pink),
    0 0 12px var(--pink),
    0 0 25px var(--pink);

  transform: translateX(-50%);

  transition: width .3s ease;
}

nav a:hover::after {
  width: 100%;
}

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


/* =========================================
   MOBILE MENU BUTTON
   ========================================= */

.menu-btn {
  display: none;

  background: none;
  color: #fff;

  border: 0;

  font-size: 28px;

  cursor: pointer;

  transition:
    color .25s ease,
    text-shadow .25s ease;
}

.menu-btn:hover {
  color: var(--cyan);

  text-shadow:
    0 0 5px var(--cyan),
    0 0 15px var(--cyan),
    0 0 30px var(--cyan);
}


/* =========================================
   HERO
   ========================================= */

.hero {
  min-height: 760px;

  display: flex;
  align-items: center;

  position: relative;

  background: url('hero.jpg') center/cover fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 20, .88),
      rgba(8, 8, 20, .35)
    ),
    linear-gradient(
      0deg,
      #080814 0%,
      transparent 35%
    );
}

.hero-content {
  position: relative;
  z-index: 1;

  padding: 130px 7%;

  max-width: 900px;
}


/* =========================================
   NEON BADGE
   ========================================= */

.neon-badge {
  font-family: Orbitron;

  color: var(--cyan);

  letter-spacing: 4px;

  margin-bottom: 18px;

  text-shadow:
    0 0 5px var(--cyan),
    0 0 15px var(--cyan),
    0 0 30px var(--cyan);
}


/* =========================================
   HAUPTÜBERSCHRIFT
   ========================================= */

h1 {
  font:
    900 clamp(48px, 8vw, 100px) / .92 Orbitron;

  margin: 0;

  color: #fff;

  text-shadow:
    0 0 5px #fff,
    0 0 18px var(--pink),
    0 0 38px var(--pink);
}

h1 span {
  color: #fff;

  text-shadow:
    0 0 5px #fff,
    0 0 16px var(--cyan),
    0 0 35px var(--cyan);
}

.hero p {
  font-size: 20px;
  margin: 28px 0;
}


/* =========================================
   BUTTONS
   ========================================= */

.btn {
  position: relative;

  display: inline-block;

  overflow: hidden;

  border: 1px solid var(--cyan);

  background:
    linear-gradient(
      90deg,
      var(--pink),
      #8a2be2
    );

  color: #fff;

  padding: 14px 22px;

  border-radius: 5px;

  text-decoration: none;

  font-weight: 900;

  box-shadow:
    0 0 20px rgba(255, 22, 209, .4);

  cursor: pointer;

  transition:
    transform .25s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}


/* Button Hover */

.btn:hover {
  transform: translateY(-3px) scale(1.04);

  border-color: var(--cyan);

  box-shadow:
    0 0 5px var(--cyan),
    0 0 15px var(--cyan),
    0 0 25px var(--pink),
    0 0 45px var(--pink),
    0 0 70px rgba(255, 22, 209, .6);
}


/* Licht läuft über Button */

.btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 70%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.5),
      transparent
    );

  transform: skewX(-20deg);

  transition: left .5s ease;
}

.btn:hover::before {
  left: 140%;
}


/* Button Klick */

.btn:active {
  transform: scale(.97);

  box-shadow:
    0 0 5px var(--pink),
    0 0 15px var(--pink),
    0 0 30px var(--pink);
}

.secondary {
  background: transparent;
}


/* =========================================
   SECTIONS
   ========================================= */

.section {
  padding: 90px 7%;

  max-width: 1400px;

  margin: auto;
}

.dark {
  max-width: none;

  background: #0c0d1d;
}

.section-title {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 35px;
}

.section-title span {
  color: var(--pink);

  font-family: Orbitron;

  text-shadow:
    0 0 8px var(--pink);
}

.section-title h2 {
  font:
    900 34px Orbitron;

  margin: 0;

  text-shadow:
    0 0 5px var(--cyan),
    0 0 15px rgba(0, 234, 255, .5);
}


/* =========================================
   RADIO
   ========================================= */

.radio-grid {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 24px;
}

.player-card,
.side-card,
.cards article,
.form-wrap,
.chat-box,
.login {
  background:
    linear-gradient(
      145deg,
      #15172f,
      #0d0e20
    );

  border: 1px solid rgba(0, 234, 255, .25);

  border-radius: 12px;

  padding: 28px;

  box-shadow:
    0 0 30px rgba(0, 0, 0, .25);
}


/* =========================================
   LIVE
   ========================================= */

.live {
  color: var(--pink);

  font-weight: 900;

  letter-spacing: 2px;

  animation: liveGlow 1.5s infinite alternate;
}

@keyframes liveGlow {

  from {
    text-shadow:
      0 0 5px var(--pink);
  }

  to {
    text-shadow:
      0 0 5px var(--pink),
      0 0 15px var(--pink),
      0 0 30px var(--pink);
  }

}


/* =========================================
   COVER
   ========================================= */

.cover {
  width: 180px;
  height: 180px;

  border-radius: 10px;

  margin: 20px 0;

  display: grid;

  place-items: center;

  font:
    900 38px Orbitron;

  color: #fff;

  border: 2px solid var(--pink);

  box-shadow:
    0 0 10px var(--pink),
    0 0 25px var(--pink);

  background:
    radial-gradient(
      circle,
      #3b1748,
      #101021
    );

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.cover:hover {
  transform: scale(1.05);

  box-shadow:
    0 0 10px var(--pink),
    0 0 25px var(--pink),
    0 0 50px var(--cyan);
}


/* =========================================
   SONG
   ========================================= */

.song small {
  color: var(--cyan);

  text-shadow:
    0 0 8px var(--cyan);
}

.song h3 {
  font:
    700 25px Orbitron;

  margin: 8px 0;
}

.song p {
  opacity: .7;
}


/* =========================================
   PLAY BUTTON
   ========================================= */

.play {
  width: 65px;
  height: 65px;

  border-radius: 50%;

  border: 2px solid var(--cyan);

  background: none;

  color: #fff;

  font-size: 25px;

  cursor: pointer;

  box-shadow:
    0 0 18px rgba(0, 234, 255, .4);

  transition:
    transform .25s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.play:hover {
  transform: scale(1.12);

  background: rgba(0, 234, 255, .12);

  box-shadow:
    0 0 5px var(--cyan),
    0 0 15px var(--cyan),
    0 0 30px var(--cyan),
    0 0 50px rgba(0, 234, 255, .7);
}

#volume {
  width: 180px;

  margin-left: 20px;

  vertical-align: middle;
}

.stream-note {
  margin-top: 20px;

  opacity: .55;

  font-size: 13px;
}

code {
  color: var(--cyan);
}


/* =========================================
   KARTEN
   ========================================= */

.cards {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.cards article {
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}


/* Karten Hover */

.cards article:hover {
  transform:
    translateY(-8px)
    scale(1.02);

  border-color: var(--pink);

  box-shadow:
    0 0 5px var(--pink),
    0 0 15px var(--pink),
    0 0 30px var(--pink),
    0 0 50px rgba(255, 22, 209, .35);
}

.cards h3 {
  font-family: Orbitron;
}

.cards b {
  color: var(--cyan);
}


/* =========================================
   WUNSCHBOX
   ========================================= */

.form-wrap {
  max-width: 700px;
}

.form-wrap form,
.login {
  display: grid;

  gap: 13px;
}

.form-wrap input,
.login input,
.chat-box input {
  width: 100%;

  padding: 14px;

  background: #080916;

  border: 1px solid #303451;

  color: #fff;

  border-radius: 5px;

  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}


/* Input Hover */

.form-wrap input:hover,
.login input:hover,
.chat-box input:hover {
  border-color: var(--cyan);

  box-shadow:
    0 0 8px rgba(0, 234, 255, .3);
}


/* Input Fokus */

.form-wrap input:focus,
.login input:focus,
.chat-box input:focus {
  outline: none;

  border-color: var(--pink);

  box-shadow:
    0 0 5px var(--pink),
    0 0 15px rgba(255, 22, 209, .4);
}

.form-wrap label {
  font-size: 13px;

  opacity: .8;
}

.message {
  margin-top: 15px;

  color: var(--cyan);
}


/* =========================================
   DJs
   ========================================= */

.djcards {
  grid-template-columns:
    repeat(3, 1fr);
}

.avatar {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-family: Orbitron;

  font-weight: 900;

  border: 2px solid var(--pink);

  box-shadow:
    0 0 20px rgba(255, 22, 209, .5);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}


/* DJ Hover */

.dj:hover .avatar {
  transform: scale(1.12);

  border-color: var(--cyan);

  box-shadow:
    0 0 5px var(--cyan),
    0 0 15px var(--cyan),
    0 0 30px var(--cyan),
    0 0 45px rgba(0, 234, 255, .6);
}


/* =========================================
   CHAT
   ========================================= */

.chat-box {
  max-width: 800px;
}

.chat-box small,
.login small {
  opacity: .5;

  display: block;

  margin-top: 15px;
}

.chat-box form {
  display: flex;

  gap: 10px;

  margin-top: 15px;
}

#messages {
  min-height: 150px;

  max-height: 250px;

  overflow: auto;

  background: #080916;

  padding: 15px;

  border-radius: 6px;
}


/* =========================================
   DJ TICKER
   ========================================= */

.ticker {
  overflow: hidden;

  white-space: nowrap;

  border: 1px solid var(--pink);

  padding: 15px;

  color: var(--cyan);

  font-family: Orbitron;

  box-shadow:
    0 0 20px rgba(255, 22, 209, .15);

  transition:
    border-color .3s ease,
    box-shadow .3s ease;
}

.ticker:hover {
  border-color: var(--cyan);

  box-shadow:
    0 0 5px var(--cyan),
    0 0 15px var(--cyan),
    0 0 30px var(--cyan);
}

.ticker span {
  display: inline-block;

  animation:
    ticker 16s linear infinite;
}

@keyframes ticker {

  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }

}


/* =========================================
   KONTAKT
   ========================================= */

.contact {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 30px;
}

.contact h3 {
  font-family: Orbitron;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
  text-align: center;

  padding: 30px;

  border-top: 1px solid #24263d;

  opacity: .6;
}


/* =========================================
   RESPONSIVE / TABLET
   ========================================= */

@media(max-width: 900px) {

  nav {
    display: none;

    position: absolute;

    top: 62px;
    left: 0;
    right: 0;

    padding: 20px;

    background: #090a18;

    flex-direction: column;
  }

  .top.open nav {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

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

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

  .hero {
    min-height: 680px;

    background-attachment: scroll;
  }

}


/* =========================================
   RESPONSIVE / HANDY
   ========================================= */

@media(max-width: 600px) {

  .section {
    padding: 65px 5%;
  }

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

  .hero-content {
    padding: 120px 5%;
  }

  .hero p {
    font-size: 17px;
  }

  .chat-box form {
    flex-direction: column;
  }

  #volume {
    margin: 15px 0 0;

    width: 100%;
  }

  .btn:hover {
    transform: scale(1.02);
  }

  nav a:hover::after {
    width: 50%;
  }

}
.dj .avatar img {
    width: 90px !important;
    height: 90px !important;
    object-fit: contain !important;
    border-radius: 50% !important;
    display: block !important;
}
.djcards {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

.djcards .dj {
  width: auto !important;
}
#djs .djcards {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
}

#djs .djcards > .dj {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
}
/* ===== AVATAR RESIZER ===== */

.avatar-resizer {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    border: 1px solid #ff2da8;
    border-radius: 18px;
    background: rgba(10, 10, 20, 0.8);
}

.avatar-resizer input,
.avatar-resizer select {
    margin: 15px 5px;
    padding: 10px;
    border-radius: 8px;
}

.avatar-preview {
    margin: 25px auto;
}

#avatarCanvas {
    display: block;
    margin: 0 auto;
    border: 3px solid #ff2da8;
    border-radius: 50%;
    max-width: 100%;
    background: #111;
}

#downloadAvatar {
    margin-top: 10px;
}
/* ===== WOCHEN-SENDEPLAN ===== */

.schedule-week {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.schedule-day {
    padding: 20px;
    border: 1px solid #ff2da8;
    border-radius: 15px;
    background: rgba(10, 10, 20, 0.8);
}

.schedule-day > h3 {
    margin-bottom: 15px;
    color: #ff2da8;
}

.schedule-day article {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.schedule-day article b {
    color: #37f5e7;
}

.schedule-day article h4 {
    margin: 10px 0;
    font-size: 20px;
}

/* Handy */
@media (max-width: 800px) {
    .schedule-week {
        grid-template-columns: 1fr;
    }
}
/* ===== HEUTIGER SENDETAG ===== */

.schedule-day.today {
    border: 2px solid #37f5e7;
    box-shadow:
        0 0 15px #37f5e7,
        0 0 30px rgba(255, 45, 168, 0.45);
    transform: scale(1.03);
}

.schedule-day.today > h3::after {
    content: "  • HEUTE";
    color: #37f5e7;
    font-size: 14px;
}
/* ===== JETZT LIVE ===== */

.live-badge {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 14px;
    border-radius: 20px;
    background: #ff1744;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.8);
    animation: livePulse 1.5s infinite;
}

.schedule-day.live {
    border: 2px solid #ff1744;
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.7);
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.55;
    }
}
/* ===== KALENDER SENDEPLAN ===== */

.calendar-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 30px;
}

.week-calendar {
    display: grid;
    grid-template-columns: 90px repeat(7, minmax(130px, 1fr));
    min-width: 1050px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    overflow: hidden;
}

.calendar-head {
    padding: 14px 8px;
    text-align: center;
    font-weight: bold;
    color: #ff2da8;
    background: rgba(255, 45, 168, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.time-head {
    color: #37f5e7;
}

.calendar-time {
    padding: 14px 8px;
    text-align: center;
    font-weight: bold;
    color: #37f5e7;
    background: rgba(55, 245, 231, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.calendar-cell {
    min-height: 58px;
    padding: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(10, 10, 20, 0.45);
}

.calendar-cell.show {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    color: white;
    background: rgba(255, 45, 168, 0.18);
    box-shadow: inset 0 0 12px rgba(255, 45, 168, 0.22);
}

.calendar-cell.show:hover {
    background: rgba(55, 245, 231, 0.18);
}

@media (max-width: 900px) {
    .calendar-wrap {
        overflow-x: scroll;
    }
}
/* ===== SENDEPLAN FEINSCHLIFF ===== */

.week-calendar {
    display: grid;
    grid-template-columns: 90px repeat(7, minmax(150px, 1fr));
    min-width: 1140px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

.calendar-head {
    padding: 14px 10px;
    text-align: center;
    font-weight: bold;
    background: rgba(55, 245, 231, 0.10);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.calendar-time {
    padding: 12px 8px;
    font-weight: bold;
    text-align: center;
    color: #37f5e7;
    background: rgba(10, 10, 20, 0.75);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.calendar-cell {
    min-height: 58px;
    padding: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.calendar-cell.show {
    background: rgba(255, 45, 168, 0.20);
    box-shadow: inset 0 0 18px rgba(255, 45, 168, 0.24);
    font-size: 14px;
    line-height: 1.3;
}

.calendar-cell.show:hover {
    background: rgba(55, 245, 231, 0.20);
}

.calendar-wrap {
    overflow-x: auto;
    padding-bottom: 10px;
}
.show-card {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 45, 168, 0.18);
    box-shadow: inset 0 0 14px rgba(255, 45, 168, 0.18);
    text-align: center;
}

.show-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.show-card span {
    display: block;
    font-size: 12px;
    color: #37f5e7;
    margin-bottom: 3px;
}

.show-card small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}