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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Radio Player Styles - Add this to assets/css/style.css */
    .radio-player-container {
        width: 100%;
        padding: 20px 0;
        background-color: #f4f4f4; /* Optional: outer container background */
    }
    
    .radio-player {
        background: linear-gradient(to right, #1a2a3a, #2c5364, #1a2a3a); /* Main gradient background */
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        position: relative;
    }
    
    /* Glass effect overlay */
    .radio-player::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.05); /* Subtle white overlay */
        backdrop-filter: blur(3px);
        z-index: 0;
    }
    
    .player-content {
        position: relative;
        z-index: 1;
        padding: 24px;
    }
    
    /* Player header with gradient text */
    .player-header {
        text-align: center;
        margin-bottom: 16px;
    }
    
    .player-title {
        font-size: 24px;
        font-weight: bold;
        margin: 0;
        background: linear-gradient(to right, #ffe259, #ffa751); /* Text gradient */
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .title-underline {
        height: 2px;
        width: 120px;
        margin: 4px auto 0;
        background: linear-gradient(to right, transparent, #ffa751, transparent); /* Underline gradient */
    }
    
    /* Audio visualizer */
    .audio-visualizer {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        height: 48px;
        margin-bottom: 16px;
        gap: 4px;
    }
    
    .visualizer-bar {
        width: 8px;
        height: 4px;
        background: linear-gradient(to top, #ffa751, #ffe259); /* Bar gradient */
        border-radius: 2px 2px 0 0;
        transition: height 0.5s ease;
    }
    
    /* Now Playing section */
    .now-playing {
        background-color: rgba(0, 0, 0, 0.3); /* Dark semi-transparent background */
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 16px;
        overflow: hidden;
    }
    
    .now-playing-text {
        color: white;
        font-weight: 500;
        white-space: nowrap;
    }
    
    .now-playing-label {
        color: #ffa751; /* Orange accent color */
        margin-right: 8px;
    }
    
    /* Controls section */
    .player-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .play-button {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: linear-gradient(to bottom right, #ffe259, #ffa751); /* Button gradient */
        color: #203a43; /* Dark text color */
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(255, 167, 81, 0.2);
    }
    
    .play-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 167, 81, 0.3);
    }
    
    .play-button:active {
        transform: translateY(0);
    }
    
    .play-button i {
        font-size: 20px;
        margin-left: 3px; /* Center the play icon visually */
    }
    
    /* Volume controls */
    .volume-controls {
        display: flex;
        align-items: center;
        flex: 1;
        margin-left: 16px;
        gap: 8px;
    }
    
    .mute-button {
        background: transparent;
        border: none;
        color: white;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .mute-button:hover {
        color: #ffa751; /* Orange accent on hover */
    }
    
    .volume-slider-container {
        flex: 1;
        max-width: 200px;
    }
    
    .volume-slider {
        width: 100%;
        height: 8px;
        border-radius: 4px;
        background-color: #495c69; /* Slider track color */
        -webkit-appearance: none;
        appearance: none;
        outline: none;
    }
    
    .volume-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #ffa751; /* Slider thumb color */
        cursor: pointer;
    }
    
    .volume-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #ffa751; /* Slider thumb color for Firefox */
        cursor: pointer;
        border: none;
    }
    
    /* Bottom wave decoration */
    .wave-decoration {
        height: 32px;
        background-color: rgba(26, 42, 58, 0.5); /* Semi-transparent dark blue */
        position: relative;
        overflow: hidden;
    }
    
    .wave-svg {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    /* Animations */
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    .marquee {
        display: inline-block;
        animation: marquee 15s linear infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scaleY(0.3); }
        50% { transform: scaleY(1); }
    }
    
    .pulse-animation {
        animation: pulse 1.5s ease-in-out infinite;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .player-content {
            padding: 16px;
        }
        
        .volume-controls {
            max-width: 120px;
        }
    }
