/* ============================================
   RADIO PLAYER - CSS SIMPLIFIÉ
   Widget déplié/replié + Minuteur + Now Playing
   Version 2 thèmes (dark/light)
   ============================================ */

/* ============================================
   BOUTON RADIO HEADER (état playing)
   ============================================ */
#radioBtn.playing {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: var(--primary);
    color: white;
    animation: radio-pulse 2s infinite;
}

@keyframes radio-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(99, 102, 241, 0); }
}

/* ============================================
   MODAL DES STATIONS
   ============================================ */
.radio-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.radio-modal-overlay.show {
    display: flex !important;
}

.radio-modal-overlay.show .radio-modal {
    transform: translateY(0);
    opacity: 1;
}

.radio-modal {
    width: 100%;
    max-height: 85vh;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    /* État fermé par défaut */
    transform: translateY(100%);
    opacity: 0;

    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

/* Modale ouverte */
.radio-modal-overlay.show .radio-modal {
    transform: translateY(0);
    opacity: 1;
}


.radio-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.radio-modal-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.radio-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-modal-close:hover {
    background: rgba(99, 102, 241, 0.2);
}

.radio-modal-content {
    padding: 1rem 1.25rem;
    flex-shrink: 0;
}

/* Station en cours */
.radio-now-playing {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.radio-now-playing.hidden {
    display: none;
}

.radio-current-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.radio-current-info {
    flex: 1;
    min-width: 0;
}

.radio-current-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.radio-current-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Equalizer */
.radio-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
}

.radio-equalizer-bar {
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
    animation: equalizerBounce 0.6s ease-in-out infinite;
}

.radio-equalizer-bar:nth-child(1) { animation-delay: 0s; }
.radio-equalizer-bar:nth-child(2) { animation-delay: 0.1s; }
.radio-equalizer-bar:nth-child(3) { animation-delay: 0.2s; }
.radio-equalizer-bar:nth-child(4) { animation-delay: 0.3s; }

@keyframes equalizerBounce {
    0%, 100% { height: 8px; }
    50% { height: 28px; }
}

.radio-equalizer.paused .radio-equalizer-bar {
    animation: none;
    height: 8px;
}

/* Contrôles */
.radio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.radio-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.radio-play-btn:hover {
    transform: scale(1.05);
}

.radio-play-btn .material-icons {
    font-size: 2rem;
}

.radio-volume-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.radio-volume-icon {
    color: var(--text-secondary);
    cursor: pointer;
}

.radio-volume-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-elevated);
    border-radius: 3px;
    cursor: pointer;
}

.radio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

.radio-volume-value {
    font-size: 0.85rem;
    color: var(--text-secondary);
    min-width: 40px;
    text-align: right;
}

/* Bouton Cast modal */
.radio-cast-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-cast-btn:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.radio-cast-btn.casting {
    color: #4285f4;
}

/* Liste des stations */
.radio-stations-container {
    padding: 0.75rem 1rem;
    padding-bottom: 2rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Scrollbar */
.radio-stations-container::-webkit-scrollbar {
    width: 4px;
}

.radio-stations-container::-webkit-scrollbar-track {
    background: transparent;
}

.radio-stations-container::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 2px;
}

.radio-stations-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    margin-top: 1rem;
    padding-left: 0.25rem;
}

.radio-stations-title:first-child {
    margin-top: 0;
}

.radio-stations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.radio-station {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 0.35rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-width: 0;
}

.radio-station:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.radio-station.active {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
}

.radio-station-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 0.35rem;
    background: var(--bg-elevated);
    flex-shrink: 0;
}

.radio-station-name {
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.2;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-primary);
}

.radio-station-desc {
    font-size: 0.58rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

/* ============================================
   WIDGET RADIO (Mini Player)
   ============================================ */
#radioWidget {
    position: fixed !important;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: calc(100% - 1.5rem);
    max-width: 440px;
    background: rgb(20 20 20);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 40px var(--shadow-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

#radioWidget.show {
    display: flex !important;
}

/* Widget header */
.radio-widget-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    cursor: pointer;
}

.radio-widget-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.radio-widget-info {
    flex: 1;
    min-width: 0;
}

.radio-widget-name {
    font-size: 1rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-primary);
}

.radio-widget-status {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.15rem;
}

.radio-widget-status .live-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Now Playing dans le widget */
.radio-widget-nowplaying {
    font-size: 0.75rem;
    color: var(--primary-light);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.radio-widget-nowplaying .material-icons {
    font-size: 0.9rem;
}

/* Visualizer widget */
.radio-widget-visualizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 40px;
    padding: 0.5rem 0;
}

.radio-widget-bar {
    width: 3px;
    background: var(--primary);
    border-radius: 2px;
    animation: widgetBarBounce 0.5s ease-in-out infinite;
}

.radio-widget-bar:nth-child(1) { animation-delay: 0s; height: 15px; }
.radio-widget-bar:nth-child(2) { animation-delay: 0.1s; height: 25px; }
.radio-widget-bar:nth-child(3) { animation-delay: 0.2s; height: 35px; }
.radio-widget-bar:nth-child(4) { animation-delay: 0.3s; height: 25px; }
.radio-widget-bar:nth-child(5) { animation-delay: 0.4s; height: 15px; }

@keyframes widgetBarBounce {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* Toggle btn */
.radio-widget-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-elevated);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.radio-widget-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
}

.radio-widget-toggle .material-icons {
    transition: transform 0.3s ease;
}

/* Corps du widget (dépliable) */
.radio-widget-expanded {
    padding: 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 300px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#radioWidget.collapsed .radio-widget-expanded {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

/* Contrôles principaux */
.radio-widget-main-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.radio-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-elevated);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.radio-widget-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.radio-widget-btn.large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.radio-widget-btn.large .material-icons {
    font-size: 2rem;
}

.radio-widget-btn.cast.casting {
    background: rgba(66, 133, 244, 0.2);
    color: #4285f4;
}

.radio-widget-btn.sleep.active {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

/* Badge minuteur */
.sleep-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #fbbf24;
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    display: none;
}

/* Section volume */
.radio-widget-volume-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.radio-widget-volume-slider {
    flex: 1;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary) 0%, var(--bg-elevated) 0%);
    border-radius: 4px;
    cursor: pointer;
}

.radio-widget-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.radio-widget-volume-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.radio-widget-volume-value {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 45px;
    text-align: right;
    color: var(--text-primary);
}

/* ============================================
   POPUP MINUTEUR SOMMEIL
   ============================================ */
.sleep-timer-popup {
    position: fixed;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    width: calc(100% - 2rem);
    max-width: 320px;
    background: rgb(20 20 20);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.25rem;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px var(--shadow-color);
}

.sleep-timer-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.sleep-timer-popup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.sleep-timer-popup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.sleep-timer-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sleep-timer-option:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

.sleep-timer-time-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-elevated);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #dfa40a;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.sleep-timer-time-btn:hover {
    background: rgba(99, 102, 241, 0.2);
}

.sleep-timer-time-input {
    display: none;
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    text-align: center;
}

.sleep-timer-status {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    color: #fbbf24;
    font-size: 0.85rem;
}

.sleep-timer-status .material-icons {
    font-size: 1.1rem;
}

#sleepTimerStatusText {
    flex: 1;
}

.sleep-timer-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.2);
    border: none;
    border-radius: 50%;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sleep-timer-cancel:hover {
    background: rgba(239, 68, 68, 0.3);
}

.sleep-timer-cancel .material-icons {
    font-size: 1rem;
}

/* ============================================
   TOAST
   ============================================ */
.radio-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10002;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.radio-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   ESPACE FOOTER QUAND RADIO JOUE
   ============================================ */
body.radio-playing .footer {
    margin-bottom: 110px !important;
}

/* ============================================
   RESPONSIVE MOBILE (< 600px)
   ============================================ */
@media (max-width: 599px) {
    .radio-modal {
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        background: rgb(20 20 20);
    }
    
    .radio-modal-header {
        padding: 0.875rem 1rem;
    }
    
    .radio-modal-header h2 {
        font-size: 1rem;
    }
    
    .radio-modal-content {
        padding: 0.875rem 1rem;
    }
    
    .radio-stations-container {
        padding: 0.5rem 0.75rem 1.5rem;
    }
    
    .radio-stations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }
    
    .radio-station {
        padding: 0.5rem 0.25rem;
    }
    
    .radio-station-logo {
        width: 50px;
        height: 50px;
    }
    
    .radio-station-name {
        font-size: 0.65rem;
    }
    
    .radio-station-desc {
        font-size: 0.55rem;
    }
    
    .radio-current-logo {
        width: 48px;
        height: 48px;
    }
    
    .radio-current-name {
        font-size: 1rem;
    }
    
    .radio-play-btn {
        width: 50px;
        height: 50px;
    }
    
    .radio-play-btn .material-icons {
        font-size: 1.75rem;
    }
}

/* ============================================
   RESPONSIVE TABLETTE ET PC (>= 600px)
   ============================================ */
@media (min-width: 600px) {
    .radio-modal-overlay {
        align-items: center;
        padding: 2rem;
    }
    
    .radio-modal {
        max-width: 850px;
        max-height: 80vh;
        border-radius: 24px;
        animation: modalFadeIn 0.3s ease;
        background: rgb(20 20 20);
    }
    
    @keyframes modalFadeIn {
        from { transform: scale(0.95); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }
    
    .radio-stations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }
    
    .radio-station {
        padding: 0.7rem 0.4rem;
    }
    
    .radio-station-logo {
        width: 50px;
        height: 50px;
    }
    
    .radio-station-name {
        font-size: 0.72rem;
    }
    
    .radio-station-desc {
        font-size: 0.62rem;
    }
    
    #radioWidget {
        bottom: 20px !important;
        max-width: 420px;
    }
    
    body.radio-playing .footer {
        margin-bottom: 220px !important;
    }
}

/* ============================================
   RESPONSIVE PETIT MOBILE (< 380px)
   ============================================ */
@media (max-width: 379px) {
    .radio-stations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
    }
    
    .radio-station {
        padding: 0.4rem 0.2rem;
    }
    
    .radio-station-logo {
        width: 36px;
        height: 36px;
    }
    
    .radio-station-name {
        font-size: 0.6rem;
    }
    
    .radio-station-desc {
        display: none;
    }
    
    .radio-widget-main-controls {
        gap: 0.35rem;
    }
    
    .radio-widget-btn {
        width: 42px;
        height: 42px;
    }
    
    .radio-widget-btn.large {
        width: 52px;
        height: 52px;
    }
    
    .sleep-timer-popup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
}

/* ============================================
   THÈME CLAIR
   ============================================ */

/* Widget */
[data-theme="light"] #radioWidget {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .radio-widget-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .radio-widget-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .radio-widget-btn.large {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
}

[data-theme="light"] .radio-widget-toggle {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .radio-widget-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .radio-widget-volume-slider {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .radio-widget-volume-slider::-webkit-slider-thumb {
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

/* Modal */
[data-theme="light"] .radio-modal {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .radio-modal-header {
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .radio-modal-close {
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .radio-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .radio-volume-slider {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .radio-station {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .radio-station:hover {
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .radio-station.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

/* Popup minuteur */
[data-theme="light"] .sleep-timer-popup {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .sleep-timer-popup-header {
    color: #d97706;
}

[data-theme="light"] .sleep-timer-option {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .sleep-timer-option:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: #d97706;
}

[data-theme="light"] .sleep-timer-time-btn {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--primary);
}

[data-theme="light"] .sleep-timer-status {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: #d97706;
}

/* Toast */
[data-theme="light"] .radio-toast {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}