/*------------------------------------------------------------------------
# AA Responsive Radio Player - Sticky Full Width Player
# ------------------------------------------------------------------------
# author    AA Extensions https://aaextensions.com
# Copyright (C) 2018 AA Extensions. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: https://aaextensions.com
-------------------------------------------------------------------------*/
.aaradioplayer-stickyradio-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Radio Player */
.aaradioplayer-stickyradio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #2c3e50, #1a1a2e);
    color: white;
    padding: 15px 0;
    border-top: 3px solid #3498db;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

.aaradioplayer-stickyradio-player-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 20px;
}

.aaradioplayer-stickyradio-station-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
    margin-bottom: 10px;
}

.aaradioplayer-stickyradio-station-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #3498db;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.aaradioplayer-stickyradio-station-text {
    flex: 1;
    min-width: 0;
}

.aaradioplayer-stickyradio-station-name {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aaradioplayer-stickyradio-song-info {
    font-size: 14px;
    color: #ecf0f1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.aaradioplayer-stickyradio-frequency {
    display: inline-block;
    background: #e74c3c;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 8px;
    font-weight: bold;
}

.aaradioplayer-stickyradio-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    gap: 10px;
}

.aaradioplayer-stickyradio-play-btn {
    background: #3498db;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.aaradioplayer-stickyradio-play-btn:hover {
    background: #2980b9;
    transform: scale(1.05);
}

.aaradioplayer-stickyradio-player-time {
    display: flex;
    align-items: center;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #ecf0f1;
    margin: 0 10px;
    flex-shrink: 0;
}

.aaradioplayer-stickyradio-time-separator {
    margin: 0 5px;
}

.aaradioplayer-stickyradio-volume-control {
    display: flex;
    align-items: center;
    margin-left: 10px;
    flex-shrink: 0;
}

.aaradioplayer-stickyradio-volume-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
}

.aaradioplayer-stickyradio-volume-slider {
    width: 80px;
    margin-left: 8px;
    -webkit-appearance: none;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    outline: none;
}

.aaradioplayer-stickyradio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
}

/* Status indicator */
.aaradioplayer-stickyradio-status {
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-size: 12px;
}

.aaradioplayer-stickyradio-status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e74c3c;
    margin-right: 6px;
    animation: aaradioplayer-stickyradio-pulse 2s infinite;
}

@keyframes aaradioplayer-stickyradio-pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Audio element styling */
.aaradioplayer-stickyradio-audio {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .aaradioplayer-stickyradio-player-container {
        flex-direction: column;
        text-align: center;
    }
    
    .aaradioplayer-stickyradio-station-info {
        width: 100%;
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .aaradioplayer-stickyradio-controls {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .aaradioplayer-stickyradio-station-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .aaradioplayer-stickyradio-station-logo {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    
    .aaradioplayer-stickyradio-station-name {
        font-size: 16px;
    }
    
    .aaradioplayer-stickyradio-song-info {
        font-size: 13px;
    }
    
    .aaradioplayer-stickyradio-play-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .aaradioplayer-stickyradio-player-time {
        font-size: 13px;
    }
    
    .aaradioplayer-stickyradio-volume-slider {
        width: 70px;
    }
}