/* Mobile Fix CSS pour Radio City */
@media (max-width: 768px) {
    .now-playing {
        display: flex !important;
        flex: 1 !important;
        gap: 0.5rem !important;
    }

    .play-btn {
        width: 50px !important;
        height: 50px !important;
    }

    .album-art {
        display: none !important;
    }

    .song-info {
        display: block !important;
        flex: 1 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .song-title, .song-artist {
        display: block !important;
        visibility: visible !important;
    }

    .visualizer {
        height: 30px !important;
    }
}

/* Empêcher le scroll horizontal */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Player fixé en bas */
.player-fixed {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

/* Empêcher les éléments de dépasser */
.container, .container-fluid, main, .page {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}
