/* Wunschbox, Aktuelle Sendung, Chat Eingang nebeneinander */
.wishshow-wrap {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.wishbox-section, .chat-box-section {
    flex: 1 1 280px;
    max-width: 340px;
    min-width: 220px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.show-section-wide {
    flex: 2 1 480px;
    max-width: 600px;
    min-width: 260px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}
.chat-box-section {
    align-items: center;
    text-align: center;
}
.chat-box {
    margin-top: 16px;
    background: rgba(0,0,0,0.10);
    border-radius: 12px;
    box-shadow: 0 0 8px #00cfff33;
    padding: 12px;
    min-width: 100px;
    max-width: 140px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 8px #00cfff;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.chat-img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 0 18px #00cfff;
}
@media (max-width: 1200px) {
    .wishshow-wrap {
        flex-direction: column;
        gap: 16px;
    }
    .wishbox-section, .show-section-wide, .chat-box-section {
        max-width: 100%;
    }
}
/* Aktuelle Sendung + Chat Eingang nebeneinander */
.showchat-wrap {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.show-section, .chat-box-section {
    flex: 1 1 320px;
    max-width: 480px;
    min-width: 240px;
    box-sizing: border-box;
}
.chat-box-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}
.chat-box {
    margin-top: 16px;
    background: rgba(0,0,0,0.10);
    border-radius: 12px;
    box-shadow: 0 0 8px #00cfff33;
    padding: 12px;
    min-width: 100px;
    max-width: 140px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 8px #00cfff;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.chat-img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 0 18px #00cfff;
}
@media (max-width: 900px) {
    .showchat-wrap {
        flex-direction: column;
        gap: 16px;
    }
    .show-section, .chat-box-section {
        max-width: 100%;
    }
}
/* Aktuelle Sendung + Chat nebeneinander */
.chat-show-flex {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}
.show-main {
    flex: 2 1 320px;
    min-width: 240px;
}
.chat-box {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.10);
    border-radius: 12px;
    box-shadow: 0 0 8px #00cfff33;
    padding: 12px;
    min-width: 100px;
    max-width: 140px;
    margin-top: 32px;
    height: fit-content;
}
.chat-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 8px #00cfff;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.chat-img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 0 18px #00cfff;
}
@media (max-width: 900px) {
    .chat-show-flex {
        flex-direction: column;
        gap: 16px;
    }
    .chat-box {
        margin-top: 0;
        align-self: flex-start;
        max-width: 100%;
    }
}
/* Wunschbox + Aktuelle Sendung nebeneinander */
.wishshow-wrap {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.wishbox-section, .show-section {
    flex: 1 1 320px;
    max-width: 480px;
    min-width: 280px;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    .wishshow-wrap {
        flex-direction: column;
        gap: 16px;
    }
    .wishbox-section, .show-section {
        max-width: 100%;
    }
}
/* 🎧 WUNSCHBOX */
.wishbox {
    max-width:500px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.wishbox input,
.wishbox textarea {
    padding:10px;
    border-radius:8px;
    border:none;
    outline:none;
    background:rgba(10,24,40,0.95);
    color:#eaf6fb;
    font-size:1rem;
    box-shadow:0 0 0 1.5px #00cfff33;
    transition:box-shadow 0.2s;
}

.wishbox input::placeholder,
.wishbox textarea::placeholder {
    color:#a0b8c9;
    opacity:1;
}

.wishbox input:focus,
.wishbox textarea:focus {
    box-shadow:0 0 0 2.5px #00cfff;
}

.wishbox button {
    background:linear-gradient(90deg,#0077b6,#2300a3 80%);
    color:#fff;
    border:none;
    padding:10px;
    border-radius:10px;
    box-shadow:0 0 10px #00cfff;
    cursor:pointer;
    font-weight:600;
    letter-spacing:0.5px;
    transition:background 0.2s,box-shadow 0.2s;
}
.wishbox button:hover {
    background:linear-gradient(90deg,#00cfff,#0077b6 80%);
    box-shadow:0 0 18px #00cfff;
}

/* 📻 LIVE SHOW */
.live-show {
    display:flex;
    gap:20px;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
}

.live-show img {
    width:120px;
    border-radius:12px;
    box-shadow:0 0 15px #00cfff;
}

/* 👥 TEAM */
.team-grid {
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.team-card {
    width:180px;
    text-align:center;
    padding:15px;
    background:rgba(255,255,255,0.05);
    border-radius:12px;
    transition:0.3s;
}

.team-card:hover {
    transform:translateY(-5px);
    box-shadow:0 0 15px #00cfff;
}

.team-card img {
    width:100px;
    border-radius:50%;
    margin-bottom:10px;
}
/* MODERNE PLAYER BUTTONS */
.player-btn {
    background: var(--accent);
    border: none;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 16px var(--accent);
    margin: 0 8px;
    font-size: 1.7rem;
    transition: transform 0.1s, box-shadow 0.2s;
    cursor: pointer;
}
.player-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 24px var(--accent);
    background: #0099cc;
}
/* RADIO LAYOUT */
.radio-wrap {
    display:flex;
    gap:20px;
    margin:20px;
    align-items:stretch;
}

.radio-player {
    flex:3;
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px;
}

.player-cover img {
    width:110px;
    border-radius:12px;
    box-shadow:0 0 15px #00cfff;
}

.live-dot {
    position:absolute;
    bottom:5px;
    left:5px;
    background:red;
    padding:3px 8px;
    border-radius:10px;
}

.player-info {
    flex:1;
}

.player-controls {
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:flex-end;
}

.controls-main button {
    background:#00cfff;
    box-shadow:0 0 10px #00cfff;
}

#volume {
    accent-color:#00cfff;
}

/* ONAIR */
.onair-box {
    flex:1;
    display:flex;
    align-items:center;
    gap:15px;
    padding:20px;
}

.onair-box img {
    width:110px;
    height:110px;
    border-radius:12px;
    box-shadow:0 0 15px var(--accent);
    object-fit:cover;
}

/* RESPONSIVE */
@media(max-width:900px){
    .radio-wrap {
        flex-direction:column;
    }

    .radio-player {
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .player-controls {
        align-items:center;
    }
}
:root {
    --accent: #00cfff;
}

/* PLAYER MODERN */
.player-modern {
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px;
    flex:2;
}

/* COVER */
.cover {
    width:90px;
    box-shadow:0 0 15px var(--accent);
}

/* TITEL */
.info h2 {
    font-size:1.3rem;
}

#artist {
    opacity:0.7;
    font-size:0.9rem;
}

/* BUTTONS */
.main-controls button {
    background:var(--accent);
    box-shadow:0 0 10px var(--accent);
}

/* PROGRESS */
.progress-bar {
    background:var(--accent);
}

/* ONAIR */
.onair-box {
    flex:1;
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px;
}


/* --- ON AIR AVATAR FINAL --- */
.onair-box img {
    width:110px !important;
    height:110px !important;
    border-radius:12px !important;
    box-shadow:0 0 15px var(--accent) !important;
    object-fit:cover !important;
}

.onair-title {
    color:var(--accent);
}

/* RESPONSIVE */
@media(max-width:900px){
    .player-onair-wrap {
        flex-direction:column;
    }

    .player-modern {
        flex-direction:column;
        text-align:center;
    }
}
/* NEWS TICKER */
.news-ticker {
    width:100%;
    overflow:hidden;
    white-space:nowrap;
    padding:8px 0;
    position:relative;
    border-top:1px solid rgba(255,255,255,0.1);
    border-bottom:1px solid rgba(255,255,255,0.1);
}

#newsTickerText {
    display:inline-block;
    padding-left:100%;
    animation:tickerScroll 80s linear infinite;
    font-size:0.9em;
}

/* ANIMATION */
@keyframes tickerScroll {
    0% { transform:translateX(0); }
    100% { transform:translateX(-100%); }
}

/* PAUSE ON HOVER */
.news-ticker:hover #newsTickerText {
    animation-play-state: paused;
}
/* STATUS */
.news-status {
    margin-bottom:10px;
    font-size:0.9em;
    opacity:0.8;
}

/* SKELETON */
.news-loader {
    display:flex;
    gap:10px;
    margin-bottom:15px;
}

.skeleton {
    flex:1;
    height:120px;
    border-radius:10px;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.05)
    );
    animation:loading 1.2s infinite;
}

@keyframes loading {
    0% { background-position:-200px; }
    100% { background-position:200px; }
}

/* TRENDING */
.trending {
    margin:20px 0;
}

#trendingContainer {
    display:flex;
    gap:10px;
    overflow-x:auto;
}

.trending-item {
    min-width:200px;
    background:rgba(255,255,255,0.05);
    padding:10px;
    border-radius:10px;
    cursor:pointer;
}
/* BREAKING */
.breaking {
    background:#ff0055;
    padding:10px;
    border-radius:10px;
    margin-bottom:15px;
    font-weight:bold;
    box-shadow:0 0 10px #ff0055;
}

/* FILTER */
.news-filters {
    margin-bottom:15px;
}

.news-filters button {
    margin-right:10px;
    padding:6px 12px;
    border:none;
    border-radius:8px;
    background:#ff00cc;
    color:white;
    cursor:pointer;
}

/* SLIDER */
.news-slider {
    display:flex;
    overflow-x:auto;
    gap:15px;
    margin-bottom:20px;
}

.news-slider::-webkit-scrollbar {
    display:none;
}

.news-slide {
    min-width:250px;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
}

.news-slide img {
    width:100%;
    height:140px;
    object-fit:cover;
}
/* NEWS SECTION */
.news-section {
    margin:30px 20px;
    padding:25px;
}

.news-section h2 {
    margin-bottom:20px;
    color:#ff00cc;
}

/* GRID */
.news-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

/* CARD */
.news-card {
    background:rgba(255,255,255,0.05);
    border-radius:12px;
    overflow:hidden;
    transition:0.3s;
    cursor:pointer;
}

.news-card:hover {
    transform:translateY(-5px) scale(1.02);
    box-shadow:0 0 20px rgba(255,0,255,0.3);
}

.news-card img {
    width:100%;
    height:160px;
    object-fit:cover;
}

.news-content {
    padding:15px;
}

.news-content h4 {
    margin:0;
    font-size:1rem;
}

.news-content p {
    font-size:0.85rem;
    opacity:0.7;
}
/* PROGRESS */
.progress {
    width:100%;
    height:4px;
    background:rgba(255,255,255,0.1);
    border-radius:10px;
    margin-top:5px;
    overflow:hidden;
}

.progress-bar {
    height:100%;
    width:0%;
    background:#ff00cc;
    box-shadow:0 0 10px #ff00cc;
    transition:width 0.5s;
}

/* DJ AVATAR */
#djAvatar {
    box-shadow:0 0 10px #ff00cc;
}
.dj-avatar {
    width:40px;
    border-radius:50%;
    margin-top:5px;
    box-shadow:0 0 10px #ff00cc;
}

/* HISTORY */
#history {
    list-style:none;
    padding:0;
    margin-top:10px;
}
#history li {
    padding:6px;
    border-bottom:1px solid rgba(255,255,255,0.1);
    opacity:0.8;
}
/* FOOTER TEXT */
.footer-text {
    text-align:center;
    font-size:0.9em;
    opacity:0.7;
}
/* PROGRESS BAR */
.progress {
    width:100%;
    height:4px;
    background:rgba(255,255,255,0.1);
    border-radius:10px;
    overflow:hidden;
    margin:10px 0;
}

.progress-bar {
    width:0%;
    height:100%;
    background:#ff00cc;
    box-shadow:0 0 10px #ff00cc;
}

/* EQUALIZER */
.equalizer {
    position:absolute;
    bottom:5px;
    right:5px;
    display:flex;
    gap:2px;
}

.equalizer span {
    width:3px;
    height:10px;
    background:#ff00cc;
    animation:equalize 1s infinite;
}

.equalizer span:nth-child(2){animation-delay:0.2s;}
.equalizer span:nth-child(3){animation-delay:0.4s;}

@keyframes equalize {
    0%{height:5px;}
    50%{height:15px;}
    100%{height:5px;}
}

/* PLAYER MOBILE */
@media(max-width:700px){
    .player {
        flex-direction:column;
        align-items:center;
    }

    .controls {
        align-items:center;
    }
}
/* MODERNE NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    background: rgba(30,0,40,0.75);
    box-shadow: 0 4px 24px 0 rgba(255,0,255,0.07);
    border-radius: 0 0 18px 18px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    transition: background 0.3s;
}
.navbar .nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar .logo {
    width: 38px;
    border-radius: 8px;
    box-shadow: 0 0 8px #ff00ff33;
}
.navbar .brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #ff00ff22;
}
.navbar nav {
    display: flex;
    gap: 18px;
}
.navbar nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    padding: 7px 16px;
    border-radius: 7px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    opacity: 0.85;
}
.navbar nav a:hover, .navbar nav a.active {
    background: #ff00cc33;
    color: #ff00cc;
    box-shadow: 0 0 8px #ff00cc44;
    opacity: 1;
}
.navbar .nav-right {
    display: flex;
    gap: 10px;
}
.navbar button {
    background: #ff00cc;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 7px 12px;
    font-size: 1rem;
    box-shadow: 0 0 8px #ff00cc44;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    opacity: 0.9;
}
.navbar button:hover {
    background: #d100a6;
    box-shadow: 0 0 12px #ff00cc88;
    opacity: 1;
}
/* BEWERBUNGSFORMULAR */
.bewerben-form {
    max-width: 420px;
    margin: 32px auto;
    background: rgba(30,0,40,0.7);
    border-radius: 16px;
    box-shadow: 0 4px 24px #ff00ff22;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.bewerben-form input, .bewerben-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: #fff;
}
.bewerben-form textarea {
    min-height: 90px;
    resize: vertical;
}
.bewerben-form button {
    background: #ff00cc;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1rem;
    box-shadow: 0 0 10px #ff00cc;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.bewerben-form button:hover {
    background: #d100a6;
    box-shadow: 0 0 16px #ff00cc88;
}
/* PLAYER REWORK */
.player-onair-wrap {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: stretch;
    margin: 10px 0 18px 0;
    flex-wrap: wrap;
}
.player {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(30, 0, 40, 0.55);
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(255,0,255,0.08);
    min-width: 240px;
    max-width: 370px;
    flex: 1 1 320px;
    margin: 0;
}
.onair-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(30,0,40,0.55);
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(255,0,255,0.08);
    padding: 10px 18px;
    min-width: 180px;
    max-width: 260px;
    flex: 1 1 180px;
    margin: 0;
}
.onair-box .onair-info {
    text-align: left;
}
.onair-box .onair-title {
    font-weight: bold;
    color: #ff00cc;
    letter-spacing: 0.5px;
    font-size: 1em;
}
.onair-box .onair-name {
    color: #fff;
    opacity: 0.85;
    font-size: 1.05em;
}
.onair-box .onair-live {
    background: #ff0055;
    color: #fff;
    padding: 2px 9px;
    border-radius: 8px;
    font-size: 0.97em;
    box-shadow: 0 0 6px #ff0055cc;
    margin-left: 8px;
}
@media (max-width: 900px) {
    .player-onair-wrap {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .player, .onair-box {
        max-width: 100%;
        min-width: 0;
    }
}

/* COVER */
.cover-wrap {
    position:relative;
}

.cover {
    width: 70px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ff00ff44;
}

.live-badge {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: #ff0055;
    padding: 2px 7px;
    font-size: 11px;
    border-radius: 7px;
    color: #fff;
    letter-spacing: 0.5px;
    box-shadow: 0 0 6px #ff0055cc;
}

/* INFO */
.info {
    flex: 1;
    min-width: 0;
}

/* MINI VISUALIZER */
#miniVisualizer {
    width: 100%;
    height: 28px;
    margin-top: 7px;
    opacity: 0.7;
}

/* CONTROLS */
.controls {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-end;
}

.main-controls button {
    font-size: 15px;
    padding: 7px 12px;
    border: none;
    background: #ff00cc;
    color: white;
    border-radius: 8px;
    box-shadow: 0 0 6px #ff00cc44;
    opacity: 0.85;
    transition: background 0.2s, opacity 0.2s;
}
.main-controls button:hover {
    background: #d100a6;
    opacity: 1;
}

/* VOLUME */
#volume {
    width: 90px;
    accent-color: #ff00cc;
    opacity: 0.8;
}

/* EXTERNAL */
.external a {
    margin-right: 3px;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.external a:hover {
    opacity: 1;
}
:root {
    --bg: #0f0f1a;
    --text: #fff;
    --glass: rgba(255,255,255,0.08);
}

body.light {
    --bg: #f2f2f2;
    --text: #000;
    --glass: rgba(255,255,255,0.6);
}

body {
    margin:0;
    font-family:sans-serif;
    background:var(--bg);
    color:var(--text);
}

/* BG */
.bg {
    position:fixed;
    width:100%;
    height:100%;
    background:url("assets/images/background.png") center/cover;
    filter:brightness(0.3);
    z-index:-2;
}

/* VISUALIZER */
#visualizer {
    position:fixed;
    width:100%;
    height:100%;
    z-index:-1;
}

/* GLASS */
.glass {
    background:var(--glass);
    backdrop-filter:blur(15px);
    border-radius:15px;
    box-shadow:0 0 20px rgba(255,0,255,0.2);
}

/* NAV */
.navbar {
    display:flex;
    justify-content:space-between;
    padding:10px 20px;
    align-items:center;
}

.logo {
    width:40px;
}

.brand {
    margin-left:10px;
}

.nav-left {
    display:flex;
    align-items:center;
}

nav a {
    margin:0 10px;
    text-decoration:none;
    color:var(--text);
}

/* HERO */
.hero-img {
    width:100%;
}

/* SECTION */
.section {
    margin:20px;
    padding:20px;
    text-align:center;
}

.welcome-img {
    max-width:100%;
}

/* PLAYER */
.player {
    display:flex;
    justify-content:space-around;
    align-items:center;
    margin:20px;
    padding:20px;
}

.cover {
    width:100px;
    border-radius:10px;
    box-shadow:0 0 20px #ff00ff;
}

.info {
    text-align:center;
}

.live {
    color:red;
    animation:pulse 1s infinite;
}

@keyframes pulse {
    0%{opacity:0.5;}
    50%{opacity:1;}
    100%{opacity:0.5;}
}

/* CONTROLS */
.controls button {
    margin:5px;
    padding:10px;
    border:none;
    background:#ff00cc;
    color:white;
    border-radius:10px;
    box-shadow:0 0 10px #ff00cc;
}

/* CARDS */
.cards {
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
    margin:20px;
}

.card {
    width:250px;
    padding:20px;
    text-align:center;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-5px) scale(1.02);
}

/* FOOTER */
.footer {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
    margin:20px;
}

.footer-img {
    height:40px;
}

/* MODAL */
.modal {
    display:none;
    position:fixed;
    width:100%;
    height:100%;
    justify-content:center;
    align-items:center;
}

.modal-box {
    padding:20px;
    width:300px;
}