<style>
    /* Seite */
    /* ==================================================
       EVIL RADIO - WEIHNACHTS PLAYER STYLE
       ================================================== */

    /* Seite */
body {
    background: var(--bg-page);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
}

/* Player Container */
.player {
    background: rgba(15, 26, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-card);
    border: 1px solid rgba(255,216,122,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(255,216,122,0.3);
    width: 380px;
    max-width: 90%;
    text-align: center;
    padding: 30px 20px;
}

/* Überschrift / Songtitel */
.song-title {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(255,216,122,0.5);
}

/* Steuerung */
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Haupt-Play-Button */
.play-btn {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(196,30,58,0.6), 0 16px 36px rgba(0,0,0,0.9);
    transition: transform 0.25s, box-shadow 0.25s;
}
.play-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(255,216,122,0.6), 0 20px 40px rgba(0,0,0,0.95);
    transform: scale(1.1);
}

/* Lautstärke-Buttons */
.vol-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,216,122,0.25);
    color: var(--accent-gold);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255,216,122,0.2);
    transition: all 0.3s ease;
}
.vol-btn:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(255,216,122,0.6), 0 10px 25px rgba(0,0,0,0.8);
    transform: scale(1.1);
}

/* Fortschrittsleiste */
.progress {
    width: 85%;
    height: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin: 25px auto 10px auto;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255,216,122,0.2);
}
.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-gold) 100%);
    box-shadow: 0 0 10px rgba(255,216,122,0.4);
    transition: width 0.1s linear;
}

/* Lautstärkeanzeige */
.volume-display {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 10px;
}

/* Optional: kleine Weihnachtslichter */
.player::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 2px;
    background: radial-gradient(circle at 10% 50%, var(--accent-red) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(circle at 30% 50%, var(--accent-gold) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(circle at 50% 50%, #fff 0%, rgba(0,0,0,0) 60%),
    radial-gradient(circle at 70% 50%, var(--accent-gold) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(circle at 90% 50%, var(--accent-red) 0%, rgba(0,0,0,0) 60%);
    filter: drop-shadow(0 0 6px var(--accent-gold));
    opacity: 0.8;
    border-radius: 5px;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
    .player {
        width: 90%;
        padding: 20px 15px;
    }
    .play-btn {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
    .vol-btn {
        width: 42px;
        height: 42px;
    }
}

</style>