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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #f5f3f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 90%;
    text-align: center;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(244, 196, 48, 0.3);
}

.fallback-text h1 {
    font-size: 3rem;
    color: #f4c430;
    text-shadow: 0 0 20px rgba(244, 196, 48, 0.3);
    margin-bottom: 0;
    letter-spacing: 3px;
}

header h1 {
    font-size: 3rem;
    color: #f4c430;
    text-shadow: 0 0 20px rgba(244, 196, 48, 0.3);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

header p {
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.radio-player {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

#visualizer {
    width: 100%;
    height: 200px;
    background: #111;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #333;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.install-btn {
    padding: 8px 16px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 20px;
    color: #999;
    font-size: 0.8rem;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.install-btn:hover {
    background: rgba(244, 196, 48, 0.1);
    color: #f4c430;
    border-color: rgba(244, 196, 48, 0.5);
    opacity: 1;
    transform: translateY(-1px);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f4c430, #d4941e);
    border: none;
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 196, 48, 0.3);
    font-weight: bold;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.5);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

#volumeSlider {
    width: 150px;
    height: 5px;
    background: #333;
    outline: none;
    border-radius: 5px;
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #f4c430;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(244, 196, 48, 0.4);
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 15px;
}

.album-art {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(244, 196, 48, 0.3);
    object-fit: cover;
}

.track-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 30, 30, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.label {
    color: #f4c430;
    font-weight: bold;
    margin-right: 10px;
}

#trackInfo {
    color: #f5f3f0;
}

#listenerCount {
    color: #f4c430;
    font-weight: bold;
}

footer {
    margin-top: 30px;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
    
    .controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .info {
        flex-direction: column;
        gap: 15px;
    }
}