/* Keyframes */
@keyframes applePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}


.sitePlayer-player {
    background: #eeecec;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    font-family: -sitePlayer-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Live Indicator Dot */
.live-dot {
    width: 8px;
    height: 8px;
    background: #FF3B30;
    border-radius: 50%;
    animation: applePulse 2s ease-in-out infinite;
}

/* Live Text */
.live-text {
    font-size: 13px;
    font-weight: 500;
    color: #FF3B30;
    letter-spacing: 0.5px;
}

/* Radio Name */
.radio-name {
    font-size: 15px;
    font-weight: 400;
    color: #86868B;
}

/* Play Button */
.sitePlayer-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: #0071E3;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,113,227,0.3);
}

.sitePlayer-play-btn:hover {
    background: #0077ED;
    transform: scale(1.02);
}

.sitePlayer-play-btn:active {
    transform: scale(0.98);
}

.sitePlayer-play-btn i {
    font-size: 36px;
    margin-left: 4px;
}

/* Volume Section */
.volume-section {
    display: flex;
    align-items: center;
    padding: 0 8px;
}

/* Mute Button */
.sitePlayer-mute-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #86868B;
    transition: color 0.2s;
}

.sitePlayer-mute-btn:hover {
    color: #0071E3;
}

.sitePlayer-mute-btn i {
    font-size: 20px;
}

/* Volume Slider Container */
.volume-slider-container {
    flex: 1;
    position: relative;
    height: 4px;
    background: #E5E5E7;
    border-radius: 2px;
    cursor: pointer;
}

.volume-slider-container:hover {
    height: 6px;
}

.volume-slider-container:hover .volume-fill {
    height: 6px;
    border-radius: 3px;
    top: 0;
}

/* Volume Fill */
.volume-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 80%;
    background: #0071E3;
    border-radius: 2px;
    transition: width 0.1s;
}

.volume-slider-container:hover .volume-fill {
    background: #0077ED;
}

/* Volume Input Range */
.volume-slider-container input[type="range"] {
    position: absolute;
    left: 0;
    top: -8px;
    width: 100%;
    height: 20px;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

/* Webkit Slider Thumb */
.volume-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    cursor: pointer;
    opacity: 0;
}

/* Firefox Slider Thumb */
.volume-slider-container input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    cursor: pointer;
    border: none;
    opacity: 0;
}

/* Show Thumb on Hover */
.volume-slider-container:hover input[type="range"]::-webkit-slider-thumb {
    opacity: 1;
}

.volume-slider-container:hover input[type="range"]::-moz-range-thumb {
    opacity: 1;
}

/* Volume Value Display */
.volume-value {
    font-size: 13px;
    font-weight: 500;
    color: #86868B;
    min-width: 32px;
    text-align: right;
}

/* Player Status */
.player-status {
    font-size: 13px;
    font-weight: 400;
    color: #86868B;
    transition: color 0.3s;
}

/* Status Colors */
.player-status.connecting {
    color: #0071E3;
}

.player-status.playing {
    color: #34C759;
}

.player-status.error {
    color: #FF3B30;
}

/* Utility Classes */
.mb-6 {
    margin-bottom: 24px;
}

.mt-4 {
    margin-top: 20px;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.gap-2 {
    gap: 8px;
}

.gap-4 {
    gap: 16px;
}

.flex-grow-1 {
    flex-grow: 1;
}
