/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Full-Screen Background */
body {
    background: linear-gradient(135deg, #000000, #ff0000);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Radio Player Container */
.radio-container {
    width: 90%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.8);
}

/* Header - Logo */
header {
    margin-bottom: 20px;
}

.logo {
    width: 200px;
    height: auto;
}

/* Track Info */
.track-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

#track-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.6);
    margin-bottom: 10px;
}

.track-details h2 {
    font-size: 20px;
    color: #ff0000;
}

.track-details p {
    font-size: 16px;
    color: #ddd;
}

/* Audio Player */
audio {
    width: 100%;
    background: #222;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Next Track */
.next-track {
    margin-bottom: 15px;
}

.next-track h3 {
    color: #ff0000;
}

/* Listeners */
.listeners {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Request Box */
.request-box {
    background: #222;
    padding: 10px;
    border-radius: 5px;
}

.request-box h3 {
    margin-bottom: 10px;
    color: #ff0000;
}

.request-box iframe {
    width: 100%;
    height: 300px;
    border: none;
}
