        /* Contenedor principal: simula la ventana flotante */
        .jukebox {
            max-width: 500px;
            width: 100%;
            background: #1e2430;
            border-radius: 32px;
            padding: 20px 16px 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px #3a4458;
            transition: all 0.25s ease;
            position: relative;
            color: #f0f3fa;
        }

        /* Cabecera con botón minimizar */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid #2f3a4b;
        }

        .header h2 {
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
        }

        .header h2 span {
            background: #f7b731;
            color: #0b0e14;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 40px;
        }

        .minimize-btn {
            background: #2f3a4b;
            border: none;
            color: #bcc9e0;
            font-size: 1.5rem;
            line-height: 1;
            padding: 0 12px;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 300;
        }

        .minimize-btn:hover {
            background: #3f4b60;
            color: white;
        }

        /* Estado minimizado: siempre visible abajo (simulado) */
        .jukebox.minimized {
            padding: 10px 16px;
            max-width: 400px;
            border-radius: 60px;
            background: #141a24;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
            border: 1px solid #3a4458;
            position: fixed;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: 92%;
            z-index: 999;
        }

        .jukebox.minimized .body-content {
            display: none;
        }

        .jukebox.minimized .header {
            margin-bottom: 0;
            border-bottom: 0;
            padding-bottom: 0;
        }

        .jukebox.minimized .header h2 {
            font-size: 1rem;
        }

        .jukebox.minimized .header h2 span {
            font-size: 0.6rem;
            padding: 0 8px;
        }

        .jukebox.minimized .minimize-btn {
            font-size: 1.2rem;
            height: 28px;
            padding: 0 10px;
        }

        /* Reproductor y controles */
        .player {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .track-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .track-title {
            font-size: 1.1rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .track-artist {
            font-size: 0.9rem;
            color: #a5b4d0;
        }

        .progress-container {
            background: #2a3344;
            height: 6px;
            border-radius: 10px;
            cursor: pointer;
            margin: 6px 0 4px;
        }

        .progress-bar {
            height: 100%;
            width: 0%;
            background: #f7b731;
            border-radius: 10px;
            transition: width 0.1s linear;
        }

        .time-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.7rem;
            color: #8896b0;
        }

        .controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 8px 0 6px;
        }

        .controls button {
            background: transparent;
            border: none;
            color: #d6e0f0;
            font-size: 1.9rem;
            cursor: pointer;
            transition: 0.15s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 40px;
        }

        .controls button:hover {
            background: #2f3a4b;
            color: white;
        }

        .controls .play-btn {
            background: #f7b731;
            color: #0b0e14;
            font-size: 2rem;
            width: 60px;
            height: 60px;
        }

        .controls .play-btn:hover {
            background: #ffce5c;
            transform: scale(1.02);
        }

        /* Lista de canciones + filtros */
        .song-panel {
            margin-top: 20px;
            border-top: 1px solid #2f3a4b;
            padding-top: 16px;
        }

        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 14px;
            justify-content: space-between;
            align-items: center;
        }

        .filter-bar select,
        .filter-bar button {
            background: #2a3344;
            border: 1px solid #3f4b60;
            color: #e8edf8;
            padding: 6px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: 0.15s;
        }

        .filter-bar select:hover,
        .filter-bar button:hover {
            background: #38455a;
            border-color: #f7b731;
        }

        .filter-bar .like-filter-btn {
            background: #3f2a3a;
            border-color: #b54b6b;
            color: #f0c0d0;
        }

        .filter-bar .like-filter-btn.active {
            background: #b54b6b;
            color: white;
            border-color: #f7b731;
        }

        .song-list {
            max-height: 220px;
            overflow-y: auto;
            padding-right: 4px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .song-list::-webkit-scrollbar {
            width: 5px;
        }

        .song-list::-webkit-scrollbar-track {
            background: #1a212c;
            border-radius: 10px;
        }

        .song-list::-webkit-scrollbar-thumb {
            background: #f7b731;
            border-radius: 10px;
        }

        .song-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background: #1e2430;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.1s;
            border: 1px solid transparent;
        }

        .song-item:hover {
            background: #2a3346;
            border-color: #3f4b60;
        }

        .song-item.active {
            background: #2f3a4f;
            border-color: #f7b731;
        }

        .song-item .info {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 0;
        }

        .song-item .info .name {
            font-weight: 500;
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .song-item .info .artist {
            font-size: 0.7rem;
            color: #99a8c5;
        }

        .song-item .likes {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.8rem;
            color: #f0b3b3;
            background: #2d1f2a;
            padding: 2px 10px 2px 6px;
            border-radius: 40px;
            margin-left: 6px;
            white-space: nowrap;
        }

        .song-item .likes button {
            background: transparent;
            border: none;
            color: #f7b731;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 0 2px;
            line-height: 1;
        }

        .song-item .likes .like-count {
            min-width: 16px;
            text-align: center;
        }

        .session-info {
            font-size: 0.7rem;
            color: #7a89a5;
            text-align: right;
            margin-top: 8px;
            border-top: 1px dashed #2f3a4b;
            padding-top: 10px;
        }

        .session-info span {
            background: #2a3344;
            padding: 2px 10px;
            border-radius: 40px;
        }

        /* responsive */
        @media (max-width: 480px) {
            .jukebox {
                padding: 14px 12px;
            }
            .controls button {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
            .controls .play-btn {
                width: 52px;
                height: 52px;
                font-size: 1.7rem;
            }
        }