/*
Theme Name: ESC Radio Theme
Author: ESC Nieuws
Description: Radio player theme for ESC Radio
Version: 1.0
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: linear-gradient(135deg, #1a063d 0%, #340b75 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.radio-container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
    width: 100%;
}

.logo {
    font-size: 48px;
    margin-bottom: 10px;
}

h1 {
    color: #FFD700;
    font-size: 36px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.tagline {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 40px;
}

.player-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    border: 2px solid rgba(255,215,0,0.3);
}

.now-playing {
    margin: 20px 0;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

.now-playing h3 {
    color: #FFD700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.song-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.artist {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
}

.links {
    margin-top: 40px;
}

.button {
    display: inline-block;
    background: #FFD700;
    color: #340b75;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin: 10px;
    transition: transform 0.3s;
}

.button:hover {
    transform: scale(1.05);
}

.back-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    font-size: 14px;
}

.back-link:hover {
    color: #FFD700;
}

.footer {
    position: fixed;
    bottom: 20px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

@media (max-width: 600px) {
    h1 { font-size: 28px; }
    .player-box { padding: 20px; }
    .radio-container { padding: 20px; }
}