/* Web Player - codecs.com/app/web-player/ */
.web-player {
    max-width: 960px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #3b779b 0%, #4bb2d5 100%);
    border-radius: 8px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(75, 178, 213, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(58, 157, 133, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section__icon i {
    font-size: 2.5rem;
    color: white;
}

.hero-section__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-section__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Main Container */
.player-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* File Drop Zone */
.drop-zone {
    border: 3px dashed #dee2e6;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    margin: 30px;
}

.drop-zone:hover {
    border-color: #4bb2d5;
    background: linear-gradient(135deg, #f0f9fc 0%, #e3f2fd 100%);
}

.drop-zone.dragover {
    border-color: #3b779b;
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f2 100%);
    transform: scale(1.02);
}

.drop-zone.has-file {
    display: none;
}

.drop-zone__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #4bb2d5;
}

.drop-zone__icon i {
    font-size: 4rem;
}

.drop-zone__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f6e8d;
    margin: 0 0 10px;
}

.drop-zone__subtitle {
    color: #6c757d;
    margin: 0 0 20px;
}

.drop-zone__formats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.drop-zone__format {
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #495057;
}

.drop-zone__format--video {
    border-color: #4bb2d5;
    color: #2f6e8d;
}

.drop-zone__format--audio {
    border-color: #3b779b;
    color: #3b779b;
}

.drop-zone__format--stream {
    border-color: #e74c3c;
    color: #c0392b;
    background: #fff5f5;
}

.drop-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Player Area */
.player-area {
    display: none;
    padding: 20px 30px 30px;
}

.player-area.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* File Info Bar */
.file-info-bar {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-info-bar__icon {
    width: 40px;
    height: 40px;
    background: #4bb2d5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.file-info-bar__icon--audio {
    background: #3b779b;
}

.file-info-bar__details {
    flex: 1;
    min-width: 0;
}

.file-info-bar__name {
    font-weight: 600;
    color: #1565c0;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-info-bar__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #1976d2;
    font-size: 0.85rem;
}

.file-info-bar__btn {
    background: #fff;
    border: 1px solid #4bb2d5;
    color: #4bb2d5;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.file-info-bar__btn:hover {
    background: #4bb2d5;
    color: #fff;
}

/* Video/Audio Container */
.media-wrapper {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.media-wrapper video {
    width: 100%;
    max-height: 540px;
    display: block;
}

/* Audio Container - Enhanced Player */
.audio-container {
    background: linear-gradient(135deg, #0d1f2d 0%, #132a3a 100%);
    border-radius: 8px;
    overflow: hidden;
}

/* Audio Visualizer Canvas */
.audio-visualizer {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, #081520 0%, #0d1f2d 100%);
}

.audio-visualizer.fullscreen-mode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    border-radius: 0;
}

.audio-visualizer.fullscreen-mode .viz-top-controls {
    top: 20px;
    right: 20px;
}

.audio-visualizer.fullscreen-mode .audio-track-info {
    padding: 60px 30px 20px;
}

.audio-visualizer.fullscreen-mode .audio-track-title {
    font-size: 1.5rem;
}

/* Fullscreen controls overlay */
.audio-controls.fullscreen-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    border-radius: 0;
    background: linear-gradient(to top, rgba(13,31,45,0.98) 0%, rgba(13,31,45,0.85) 80%, transparent 100%);
    padding: 40px 30px 25px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.audio-controls.fullscreen-controls.visible {
    opacity: 1;
    transform: translateY(0);
}

#audioVisualizerCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Track Info Overlay */
.audio-track-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.audio-track-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.audio-track-artist {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Top Controls (mode + fullscreen) */
.viz-top-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
}

.viz-top-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.viz-top-btn:hover {
    background: rgba(75, 178, 213, 0.5);
    transform: scale(1.1);
}

.viz-top-btn.active {
    background: linear-gradient(135deg, #4bb2d5, #3b779b);
}

/* Fullscreen hint */
.fullscreen-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.audio-visualizer.fullscreen-mode .fullscreen-hint {
    opacity: 1;
    animation: fadeOutHint 3s forwards;
}

@keyframes fadeOutHint {
    0%, 70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Custom Audio Controls */
.audio-controls {
    padding: 15px 20px 20px;
    background: linear-gradient(135deg, #0f2535 0%, #163045 100%);
}

/* Progress Bar - Fixed height container to prevent jump */
.audio-progress {
    margin-bottom: 15px;
    padding: 6px 0;
}

.audio-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    transition: none;
}

.audio-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4bb2d5, #3b779b);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
    pointer-events: none;
}

.audio-progress-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    pointer-events: none;
    left: var(--progress-percent, 0%);
    margin-left: -7px;
}

.audio-progress-bar:hover::after {
    opacity: 1;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-family: monospace;
}

/* Main Controls Row */
.audio-main-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.audio-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.audio-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.08);
}

.audio-btn:active {
    transform: scale(0.95);
}

.audio-btn--play {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #4bb2d5, #3b779b);
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(59, 119, 155, 0.4);
}

.audio-btn--play:hover {
    background: linear-gradient(135deg, #5bc0e0, #4b8fb3);
    box-shadow: 0 6px 20px rgba(59, 119, 155, 0.5);
}

.audio-btn--small {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

.audio-btn.active {
    background: linear-gradient(135deg, #4bb2d5, #3b779b);
}

/* Volume Control */
.audio-secondary-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audio-volume {
    display: flex;
    align-items: center;
    gap: 8px;
}

.audio-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
}

.audio-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.audio-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Extra Controls */
.audio-extra-controls {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Speed Selector */
.audio-speed-wrapper {
    position: relative;
}

.audio-speed-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    height: 28px;
    padding: 0 10px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.audio-speed-btn:hover {
    background: rgba(255,255,255,0.2);
}

.audio-speed-btn.active {
    background: linear-gradient(135deg, #4bb2d5, #3b779b);
}

.audio-speed-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(30, 30, 60, 0.98);
    border-radius: 8px;
    padding: 6px 0;
    margin-bottom: 8px;
    min-width: 80px;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.audio-speed-menu.active {
    display: block;
}

.audio-speed-option {
    padding: 8px 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
}

.audio-speed-option:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.audio-speed-option.active {
    color: #4bb2d5;
    font-weight: 600;
}

/* Hide native audio */
.audio-container audio {
    display: none;
}

/* Responsive */
@media (max-width: 480px) {
    .audio-controls {
        padding: 12px 15px 15px;
    }
    .audio-btn {
        width: 38px;
        height: 38px;
    }
    .audio-btn--play {
        width: 50px;
        height: 50px;
    }
    .audio-volume-slider {
        width: 60px;
    }
}

/* =====================================================
   PLAYLIST STYLES
   ===================================================== */
.playlist-section {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.playlist-header {
    background: linear-gradient(135deg, #3b779b 0%, #4bb2d5 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.playlist-header__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.playlist-header__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.playlist-header__title i {
    font-size: 1.1rem;
}

.playlist-header__count {
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.playlist-header__actions {
    display: flex;
    gap: 8px;
}

.playlist-header__btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.playlist-header__btn:hover {
    background: rgba(255,255,255,0.25);
}

.playlist-header__btn--danger:hover {
    background: #ce3527;
}

.playlist-body {
    max-height: 480px;
    overflow-y: auto;
}

.playlist-empty {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.playlist-empty__icon {
    font-size: 3rem;
    color: #dee2e6;
    margin-bottom: 15px;
}

.playlist-empty__text {
    font-size: 0.95rem;
    margin: 0;
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 12px;
}

.playlist-item:last-child {
    border-bottom: none;
}

.playlist-item:hover {
    background: #e3f2fd;
}

.playlist-item.active {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #4bb2d5;
}

.playlist-item.active .playlist-item__now-playing {
    display: flex;
}

.playlist-item__drag {
    color: #adb5bd;
    cursor: grab;
    padding: 5px;
    font-size: 1rem;
}

.playlist-item__drag:active {
    cursor: grabbing;
}

.playlist-item__index {
    width: 24px;
    height: 24px;
    background: #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    flex-shrink: 0;
}

.playlist-item.active .playlist-item__index {
    background: #4bb2d5;
    color: #fff;
}

.playlist-item__icon {
    width: 36px;
    height: 36px;
    background: #4bb2d5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.playlist-item__icon--audio {
    background: #3b779b;
}

.playlist-item__icon--stream {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    animation: streamPulse 2s ease-in-out infinite;
}

@keyframes streamPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.playlist-item__info {
    flex: 1;
    min-width: 0;
}

.playlist-item__name {
    font-weight: 500;
    color: #2f6e8d;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
}

.playlist-item__meta {
    font-size: 0.75rem;
    color: #6c757d;
    display: flex;
    gap: 10px;
    margin-top: 2px;
}

.playlist-item__now-playing {
    display: none;
    align-items: center;
    gap: 4px;
    color: #4bb2d5;
    font-size: 0.75rem;
    font-weight: 600;
}

.playlist-item__now-playing i {
    animation: pulse 1s ease-in-out infinite;
}

.playlist-item__duration {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
}

.playlist-item__remove {
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    padding: 5px;
    font-size: 1rem;
    transition: all 0.2s ease;
    opacity: 0;
}

.playlist-item:hover .playlist-item__remove {
    opacity: 1;
}

.playlist-item__remove:hover {
    color: #ce3527;
}

/* Playlist Controls */
.playlist-controls {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #e9ecef;
    justify-content: center;
}

.playlist-nav-btn {
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #495057;
}

.playlist-nav-btn:hover:not(:disabled) {
    background: #4bb2d5;
    border-color: #4bb2d5;
    color: #fff;
}

.playlist-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.playlist-nav-btn--play {
    background: #3b779b;
    border-color: #3b779b;
    color: #fff;
}

.playlist-nav-btn--play:hover:not(:disabled) {
    background: #2f6e8d;
    border-color: #2f6e8d;
}

/* Playlist Options */
.playlist-options {
    display: flex;
    gap: 15px;
    padding: 10px 16px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    align-items: center;
    justify-content: center;
}

.playlist-option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #495057;
    cursor: pointer;
}

.playlist-option input {
    cursor: pointer;
}

.playlist-option i {
    color: #4bb2d5;
}

/* Playlist Note */
.playlist-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff8e6;
    border-top: 1px solid #f0e6d2;
    font-size: 0.8rem;
    color: #856404;
}

.playlist-note i {
    color: #d4a017;
    flex-shrink: 0;
}

/* Add to Playlist Button */
.add-to-playlist-btn {
    background: linear-gradient(135deg, #3b779b 0%, #4bb2d5 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin: 0 auto;
}

.add-to-playlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(75, 178, 213, 0.3);
}

/* Video Playback Controls */
.playback-section {
    background: #e8f4f8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.playback-section__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2f6e8d;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.playback-section__title i {
    color: #4bb2d5;
}

.playback-toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #6c757d;
    font-size: 0.85rem;
}

.playback-section.collapsed .playback-toggle-icon {
    transform: rotate(-90deg);
}

.playback-section.collapsed .playback-controls {
    display: none;
}

.playback-section.collapsed .playback-section__title {
    margin-bottom: 0;
}

.playback-section.no-video {
    display: none;
}

.playback-section.no-video .playback-section__title .no-video-hint {
    font-size: 0.75rem;
    font-weight: 400;
    color: #6c757d;
    margin-left: 6px;
}

.playback-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.control-btn {
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #495057;
}

.control-btn:hover {
    background: #4bb2d5;
    border-color: #4bb2d5;
    color: #fff;
}

.control-btn--active {
    background: #4bb2d5;
    border-color: #4bb2d5;
    color: #fff;
}

.control-btn i {
    font-size: 1rem;
}

/* Speed Control */
.speed-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #dee2e6;
    padding: 6px 12px;
    border-radius: 6px;
}

.speed-control__label {
    font-size: 0.85rem;
    color: #6c757d;
}

.speed-control select {
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    padding: 4px;
}

/* Format Support Info */
.format-support {
    margin-top: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.format-support__header {
    background: linear-gradient(135deg, #e9f2f7 0%, #dae9f5 100%);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.format-support__header:hover {
    background: linear-gradient(135deg, #dae9f5 0%, #c5dff0 100%);
}

.format-support__header i {
    color: #4bb2d5;
    font-size: 1.2rem;
}

.format-support__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2f6e8d;
    margin: 0;
    flex: 1;
}

.format-support__toggle {
    color: #6c757d;
    transition: transform 0.3s ease;
}

.format-support__toggle.open {
    transform: rotate(180deg);
}

.format-support__content {
    display: none;
    padding: 24px;
}

.format-support__content.active {
    display: block;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.format-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
}

.format-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.format-card__header i {
    font-size: 1.3rem;
}

.format-card--video .format-card__header i {
    color: #4bb2d5;
}

.format-card--audio .format-card__header i {
    color: #3b779b;
}

.format-card__title {
    font-weight: 600;
    color: #2f6e8d;
    margin: 0;
}

.format-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.format-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
}

.format-item__name {
    font-weight: 500;
    color: #495057;
}

.format-item__status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
}

.format-item__status--full {
    background: #d4edda;
    color: #155724;
}

.format-item__status--partial {
    background: #fff3cd;
    color: #856404;
}

.format-item__status--limited {
    background: #f8d7da;
    color: #721c24;
}

/* Playlist Tip Box */
.playlist-tip {
    margin-top: 2rem;
    background: linear-gradient(135deg, #f0f8fc 0%, #e1f0f8 100%);
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(59, 119, 155, 0.08);
    border: 1px solid #c8e1ed;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.playlist-tip__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4bb2d5, #3b779b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(75, 178, 213, 0.25);
}

.playlist-tip__icon i {
    font-size: 1.2rem;
    color: #fff;
}

.playlist-tip__content {
    flex: 1;
}

.playlist-tip__title {
    font-size: 1rem;
    font-weight: 600;
    color: #2f6e8d;
    margin: 0 0 8px;
}

.playlist-tip__text {
    font-size: 0.88rem;
    color: #4a6d7f;
    line-height: 1.6;
    margin: 0;
}

.playlist-tip__text a {
    color: #3b779b;
    text-decoration: underline;
    text-decoration-color: rgba(59, 119, 155, 0.3);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.playlist-tip__text a:hover {
    color: #4bb2d5;
    text-decoration-color: #4bb2d5;
}

.playlist-tip__divider {
    height: 1px;
    background: linear-gradient(90deg, #c8e1ed, transparent);
    margin: 12px 0;
}

.playlist-tip__playlist-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.playlist-tip__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border-radius: 25px;
    font-size: 1rem;
    color: #fff;
}

.playlist-tip__pill i:first-child {
    font-size: 1.1rem;
}

.playlist-tip__pill > a {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    cursor: pointer;
}

.playlist-tip__pill > a:hover {
    text-decoration: underline !important;
}

.playlist-tip__pill-action {
    color: rgba(255,255,255,0.8) !important;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.playlist-tip__pill-action:hover {
    color: #fff !important;
}

.playlist-tip__pill--red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.25);
}

.playlist-tip__pill--pink {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.25);
}

.playlist-tip__text--muted {
    margin-top: 8px;
    font-size: 0.82rem;
    color: #8aa8b8;
}

/* Error State */
.error-message {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    display: none;
}

.error-message.active {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.error-message__icon {
    color: #c53030;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.error-message__content {
    flex: 1;
}

.error-message__title {
    font-weight: 600;
    color: #c53030;
    margin: 0 0 4px;
}

.error-message__text {
    color: #742a2a;
    font-size: 0.9rem;
    margin: 0;
}

.error-message__link {
    color: #4bb2d5;
    text-decoration: underline;
}

/* URL Input Section */
.url-section {
    margin: 30px;
    padding-top: 0;
}

.url-section__title {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
    text-align: center;
}

.url-input-wrapper {
    display: flex;
    gap: 10px;
}

.url-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.url-input:focus {
    outline: none;
    border-color: #4bb2d5;
}

.url-btn {
    background: #4bb2d5;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.url-btn:hover {
    background: #3b779b;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 30px;
    color: #adb5bd;
    font-size: 0.85rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dee2e6;
}

.divider span {
    padding: 0 15px;
}

/* Subtitle Controls */
.subtitle-section {
    background: #f0f4f8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.subtitle-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.subtitle-section__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2f6e8d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subtitle-section__title i {
    color: #4bb2d5;
}

.subtitle-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.subtitle-btn {
    background: #fff;
    border: 1px solid #4bb2d5;
    color: #4bb2d5;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.subtitle-btn:hover {
    background: #4bb2d5;
    color: #fff;
}

.subtitle-btn--active {
    background: #4bb2d5;
    color: #fff;
}

.subtitle-select {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #fff;
    min-width: 150px;
    cursor: pointer;
}

.subtitle-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.subtitle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.subtitle-track {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #1565c0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.subtitle-track__remove {
    background: none;
    border: none;
    color: #c62828;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.subtitle-track__remove:hover {
    opacity: 1;
}

/* Quality/Display Controls */
.quality-section {
    background: #f5f0fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.quality-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.quality-section__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #5e35b1;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quality-section__title i {
    color: #7e57c2;
}

.quality-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.quality-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quality-badge {
    background: linear-gradient(135deg, #7e57c2, #5e35b1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quality-badge i {
    font-size: 0.9rem;
}

.quality-detail {
    font-size: 0.85rem;
    color: #666;
}

.fit-mode-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fit-mode-control__label {
    font-size: 0.85rem;
    color: #5e35b1;
    font-weight: 500;
}

.fit-mode-select {
    padding: 8px 12px;
    border: 1px solid #ce93d8;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #fff;
    cursor: pointer;
    color: #5e35b1;
}

/* Video fit modes */
.media-wrapper video.fit-contain {
    object-fit: contain;
}

.media-wrapper video.fit-cover {
    object-fit: cover;
}

.media-wrapper video.fit-fill {
    object-fit: fill;
}

.media-wrapper video.fit-scale-down {
    object-fit: scale-down;
}

/* Hidden file input for subtitles */
.hidden-input {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .drop-zone {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .player-area {
        padding: 15px 20px 20px;
    }
    
    .file-info-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .file-info-bar__meta {
        justify-content: center;
    }
    
    .playback-controls {
        padding: 12px;
    }
    
    .control-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .url-input-wrapper {
        flex-direction: column;
    }
    
    .url-section {
        margin: 20px;
    }
    
    .format-grid {
        grid-template-columns: 1fr;
    }
    
    .playlist-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .playlist-header__actions {
        width: 100%;
        justify-content: center;
    }
    
    .playlist-controls {
        flex-wrap: wrap;
    }
    
    .playlist-options {
        flex-direction: column;
        gap: 10px;
    }
}

/* Theme Switcher UI */
.theme-switcher {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin-bottom: 1.25rem;
    border: 1px solid #dee2e6;
    flex-wrap: nowrap;
    overflow: hidden;
}

.theme-switcher__label {
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-switcher__label i {
    color: #4bb2d5;
}

.theme-switcher__options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    -webkit-mask-image: linear-gradient(to right, black 75%, transparent 98%);
    mask-image: linear-gradient(to right, black 75%, transparent 98%);
}
.theme-switcher.expanded .theme-switcher__options {
    -webkit-mask-image: none;
    mask-image: none;
}

.theme-switcher__btn {
    padding: 0.45rem 0.9rem;
    border: 2px solid #dee2e6;
    background: #fff;
    border-radius: 25px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #555;
    font-weight: 500;
}

.theme-switcher__btn:hover {
    border-color: #4bb2d5;
    color: #4bb2d5;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(75, 178, 213, 0.2);
}

.theme-switcher__btn.active {
    background: linear-gradient(135deg, #4bb2d5, #3b779b);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 3px 10px rgba(75, 178, 213, 0.3);
}

.theme-switcher__btn .color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.theme-switcher__btn.active .color-dot {
    border-color: rgba(255, 255, 255, 0.3);
}

.theme-switcher__btn i {
    font-size: 0.9rem;
}

/* see-more button styles defined below in the skin-pill block */
.theme-switcher.expanded {
    flex-wrap: wrap;
    overflow: visible;
}
.theme-switcher.expanded .theme-switcher__options {
    flex-wrap: wrap;
    overflow: visible;
    flex: none;
    width: 100%;
}

@media (max-width: 600px) {
    .theme-switcher {
        padding: 0.65rem 1rem;
    }
    .theme-switcher__btn {
        padding: 0.4rem 0.65rem;
    }
    .theme-switcher__btn .theme-name {
        display: none;
    }
}

/* Theme-specific switcher styling */
.theme-retro .theme-switcher {
    background: linear-gradient(180deg, #c5c5b8 0%, #b8b8a8 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.theme-retro .theme-switcher__label { color: #555; }
.theme-retro .theme-switcher__label i { color: #e8844d; }
.theme-retro .theme-switcher__btn {
    background: linear-gradient(180deg, #e8e8dc 0%, #d8d8cc 100%);
    border: none;
    box-shadow: 0 2px 0 #a0a090, 0 3px 6px rgba(0,0,0,0.1);
}
.theme-retro .theme-switcher__btn:hover {
    background: linear-gradient(180deg, #f0f0e4 0%, #e0e0d4 100%);
    color: #e8844d;
    transform: none;
    box-shadow: 0 2px 0 #a0a090, 0 3px 6px rgba(0,0,0,0.1);
}
.theme-retro .theme-switcher__btn.active {
    background: linear-gradient(180deg, #f08050 0%, #d05020 100%);
    box-shadow: 0 2px 0 #a03010, 0 4px 10px rgba(208,80,32,0.3);
}

.theme-dark .theme-switcher {
    background: #222;
    border-color: #333;
}
.theme-dark .theme-switcher__label { color: #ccc; }
.theme-dark .theme-switcher__btn {
    background: #333;
    border-color: #444;
    color: #ccc;
}
.theme-dark .theme-switcher__btn:hover {
    background: #444;
    border-color: #4bb2d5;
    color: #fff;
}
.theme-dark .theme-switcher__btn.active {
    background: #4bb2d5;
    border-color: #4bb2d5;
}

.theme-spotify .theme-switcher {
    background: #181818;
    border-color: #282828;
}
.theme-spotify .theme-switcher__label { color: #b3b3b3; }
.theme-spotify .theme-switcher__label i { color: #1DB954; }
.theme-spotify .theme-switcher__btn {
    background: #282828;
    border-color: #333;
    color: #b3b3b3;
}
.theme-spotify .theme-switcher__btn:hover {
    background: #333;
    border-color: #1DB954;
    color: #fff;
}
.theme-spotify .theme-switcher__btn.active {
    background: #1DB954;
    border-color: #1DB954;
    color: #000;
}

.theme-sunset .theme-switcher {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
    border-color: #f0d0c0;
}
.theme-sunset .theme-switcher__label i { color: #ff6b6b; }
.theme-sunset .theme-switcher__btn:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}
.theme-sunset .theme-switcher__btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
    border-color: transparent;
}

/* ==============================================
   SKIN: RETRO HARDWARE
   ============================================== */
.theme-retro .player-container {
    background: linear-gradient(180deg, #c5c5b8 0%, #b8b8a8 50%, #a8a898 100%);
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset, 0 2px 0 rgba(255,255,255,0.2) inset;
}
.theme-retro .hero-section {
    background: linear-gradient(180deg, #b5b5a5 0%, #a5a595 100%);
    border-radius: 12px;
    margin: 8px;
}
.theme-retro .hero-section::before { display: none; }
.theme-retro .hero-section__icon {
    background: linear-gradient(145deg, #e8844d 0%, #d96a35 50%, #c85a28 100%);
    box-shadow: 0 8px 20px rgba(200,90,40,0.5), 0 4px 8px rgba(0,0,0,0.3);
}
.theme-retro .hero-section__title { color: #444; text-shadow: 0 1px 0 rgba(255,255,255,0.5); }
.theme-retro .hero-section__subtitle { color: #666; }
.theme-retro .drop-zone {
    background: linear-gradient(180deg, #c8c8b8 0%, #b8b8a8 100%);
    border: 3px dashed #999;
}
.theme-retro .drop-zone:hover { border-color: #e8844d; background: linear-gradient(180deg, #d0d0c0 0%, #c0c0b0 100%); }
.theme-retro .drop-zone__icon { color: #e8844d; }
.theme-retro .drop-zone__title { color: #444; }
.theme-retro .drop-zone__format { background: rgba(255,255,255,0.6); border-color: #aaa; color: #555; }
.theme-retro .drop-zone__format--video { border-color: #e8844d; color: #c85a28; }
.theme-retro .drop-zone__format--audio { border-color: #7a9a5a; color: #5a7a3a; }
.theme-retro .url-section { background: linear-gradient(180deg, #b8b8a8 0%, #a8a898 100%); }
.theme-retro .url-input {
    background: #1a1a1a;
    border: 2px solid #333;
    color: #4ade80;
    font-family: 'Courier New', monospace;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) inset;
}
.theme-retro .url-input::placeholder { color: #555; }
.theme-retro .url-btn {
    background: linear-gradient(180deg, #e8e8dc 0%, #d8d8cc 50%, #c8c8bc 100%);
    color: #555;
    border: none;
    box-shadow: 0 4px 0 #a0a090, 0 6px 10px rgba(0,0,0,0.2), 0 1px 0 rgba(255,255,255,0.8) inset;
}
.theme-retro .url-btn:hover { background: linear-gradient(180deg, #f0f0e4 0%, #e0e0d4 50%, #d0d0c4 100%); color: #333; }
.theme-retro .url-btn:active { transform: translateY(3px); box-shadow: 0 1px 0 #a0a090; }
.theme-retro .divider span { background: linear-gradient(180deg, #c5c5b8 0%, #b8b8a8 100%); color: #666; }
.theme-retro .divider::before, .theme-retro .divider::after { background: #999; }
.theme-retro .player-area { background: linear-gradient(180deg, #b5b5a5 0%, #a8a898 100%); }
.theme-retro .file-info-bar {
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4) inset;
}
.theme-retro .file-info-bar__icon { background: #e8844d; }
.theme-retro .file-info-bar__name { color: #4ade80; text-shadow: 0 0 10px rgba(74,222,128,0.5); font-family: monospace; }
.theme-retro .file-info-bar__meta { color: #888; }
.theme-retro .file-info-bar__btn {
    background: linear-gradient(180deg, #e8e8dc 0%, #d8d8cc 50%, #c8c8bc 100%);
    border: none;
    color: #555;
    box-shadow: 0 2px 0 #a0a090;
}
.theme-retro .audio-container { background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%); }
.theme-retro .audio-visualizer { background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%); }
.theme-retro .audio-track-title { color: #e8844d; text-shadow: 0 0 15px rgba(232,132,77,0.5); }
.theme-retro .viz-top-btn { background: rgba(232,132,77,0.3); }
.theme-retro .viz-top-btn:hover { background: rgba(232,132,77,0.6); }
.theme-retro .viz-top-btn.active { background: #e8844d; }
.theme-retro .audio-controls {
    background: linear-gradient(180deg, #d0d0c0 0%, #c0c0b0 100%);
    box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset;
}
.theme-retro .audio-progress-bar {
    background: linear-gradient(180deg, #a09890 0%, #908880 100%);
    height: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2) inset;
}
.theme-retro .audio-progress-fill { background: linear-gradient(90deg, #e8844d, #f0a060); }
.theme-retro .audio-time { color: #555; }
.theme-retro .audio-btn {
    background: linear-gradient(180deg, #e8e8dc 0%, #d8d8cc 50%, #c8c8bc 100%);
    color: #555;
    box-shadow: 0 4px 0 #a0a090, 0 6px 10px rgba(0,0,0,0.2), 0 1px 0 rgba(255,255,255,0.8) inset;
    border: none;
}
.theme-retro .audio-btn:hover { background: linear-gradient(180deg, #f0f0e4 0%, #e0e0d4 50%, #d0d0c4 100%); transform: none; }
.theme-retro .audio-btn:active { transform: translateY(3px); box-shadow: 0 1px 0 #a0a090; }
.theme-retro .audio-btn--play {
    background: linear-gradient(180deg, #f08050 0%, #e06030 50%, #d05020 100%);
    color: #fff;
    box-shadow: 0 4px 0 #a03010, 0 6px 15px rgba(208,80,32,0.4), 0 1px 0 rgba(255,255,255,0.3) inset;
}
.theme-retro .audio-btn--play:hover { background: linear-gradient(180deg, #f89060 0%, #e87040 50%, #d86030 100%); }
.theme-retro .audio-btn.active { background: #e8844d; color: #fff; }
.theme-retro .audio-volume-slider { background: #a09890; }
.theme-retro .audio-volume-slider::-webkit-slider-thumb { background: #e8844d; }
.theme-retro .audio-volume i { color: #555; }
.theme-retro .audio-speed-btn {
    background: linear-gradient(180deg, #e8e8dc 0%, #d8d8cc 50%, #c8c8bc 100%);
    color: #555;
    box-shadow: 0 2px 0 #a0a090;
}
.theme-retro .audio-speed-menu { background: linear-gradient(180deg, #d0d0c0 0%, #c0c0b0 100%); border: 2px solid #a0a090; }
.theme-retro .audio-speed-option { color: #555; }
.theme-retro .audio-speed-option:hover { background: rgba(232,132,77,0.2); }
.theme-retro .audio-speed-option.active { color: #e8844d; }
.theme-retro .playlist-section {
    background: linear-gradient(180deg, #c5c5b8 0%, #b8b8a8 100%);
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.theme-retro .playlist-header {
    background: linear-gradient(180deg, #a0a090 0%, #909080 100%);
    border-bottom: none;
}
.theme-retro .playlist-header__title { color: #444; }
.theme-retro .playlist-header__title i { color: #e8844d; }
.theme-retro .playlist-header__count { background: #e8844d; color: #fff; }
.theme-retro .playlist-header__btn {
    background: linear-gradient(180deg, #e8e8dc 0%, #d8d8cc 50%, #c8c8bc 100%);
    border: none;
    color: #555;
    box-shadow: 0 2px 0 #a0a090;
}
.theme-retro .playlist-body { background: linear-gradient(180deg, #b5b5a5 0%, #a8a898 100%); }
.theme-retro .playlist-item {
    background: rgba(255,255,255,0.4);
    border-radius: 6px;
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.theme-retro .playlist-item:hover { background: rgba(255,255,255,0.6); }
.theme-retro .playlist-item.playing { background: rgba(232,132,77,0.25); box-shadow: 0 0 0 2px #e8844d; }
.theme-retro .playlist-item__icon { background: rgba(0,0,0,0.1); color: #666; }
.theme-retro .playlist-item.playing .playlist-item__icon { background: #e8844d; color: #fff; }
.theme-retro .playlist-item__title { color: #333; }
.theme-retro .playlist-item__meta { color: #777; }
.theme-retro .playlist-item__now-playing { color: #e8844d; }
.theme-retro .playlist-controls {
    background: linear-gradient(180deg, #c0c0b0 0%, #b0b0a0 100%);
    border-top: 1px solid rgba(255,255,255,0.3);
}
.theme-retro .playlist-nav-btn {
    background: linear-gradient(180deg, #e8e8dc 0%, #d8d8cc 50%, #c8c8bc 100%);
    border: none;
    color: #555;
    box-shadow: 0 3px 0 #a0a090;
}
.theme-retro .playlist-nav-btn--play {
    background: linear-gradient(180deg, #f08050 0%, #e06030 50%, #d05020 100%);
    color: #fff;
    box-shadow: 0 3px 0 #a03010;
}
.theme-retro .playlist-options { background: linear-gradient(180deg, #b0b0a0 0%, #a0a090 100%); }
.theme-retro .playlist-option { color: #555; }
.theme-retro .playlist-option i { color: #e8844d; }
.theme-retro .format-support {
    background: linear-gradient(180deg, #c5c5b8 0%, #b8b8a8 100%);
    border: none;
}
.theme-retro .format-support__header { background: linear-gradient(180deg, #b5b5a5 0%, #a5a595 100%); }
.theme-retro .format-support__header i { color: #e8844d; }
.theme-retro .format-support__title { color: #444; }
.theme-retro .format-card { background: rgba(255,255,255,0.4); }

/* ==============================================
   SKIN: DARK MODE
   ============================================== */
.theme-dark .player-container { background: #1a1a1a; border-color: #333; }
.theme-dark .hero-section { background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%); }
.theme-dark .hero-section__title { color: #fff; }
.theme-dark .hero-section__subtitle { color: rgba(255,255,255,0.6); }
.theme-dark .hero-section__icon { background: rgba(75,178,213,0.2); }
.theme-dark .drop-zone { background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%); border-color: #444; }
.theme-dark .drop-zone:hover { border-color: #4bb2d5; background: linear-gradient(135deg, #2f2f2f 0%, #252525 100%); }
.theme-dark .drop-zone__icon { color: #4bb2d5; }
.theme-dark .drop-zone__title { color: #fff; }
.theme-dark .drop-zone__subtitle { color: #888; }
.theme-dark .drop-zone__format { background: #333; border-color: #444; color: #ccc; }
.theme-dark .drop-zone__format--video { border-color: #4bb2d5; color: #4bb2d5; }
.theme-dark .drop-zone__format--audio { border-color: #3b779b; color: #3b779b; }
.theme-dark .url-section { background: #222; }
.theme-dark .url-input { background: #333; border-color: #444; color: #fff; }
.theme-dark .url-input::placeholder { color: #666; }
.theme-dark .url-btn { background: #4bb2d5; }
.theme-dark .divider span { background: #1a1a1a; color: #666; }
.theme-dark .divider::before, .theme-dark .divider::after { background: #333; }
.theme-dark .player-area { background: #1a1a1a; }
.theme-dark .file-info-bar { background: linear-gradient(135deg, #2a2a2a, #222); }
.theme-dark .file-info-bar__name { color: #4bb2d5; }
.theme-dark .file-info-bar__meta { color: #888; }
.theme-dark .file-info-bar__btn { background: #333; border-color: #444; color: #ccc; }
.theme-dark .file-info-bar__btn:hover { background: #4bb2d5; border-color: #4bb2d5; color: #fff; }
.theme-dark .audio-controls { background: linear-gradient(135deg, #252525 0%, #1f1f1f 100%); }
.theme-dark .audio-progress-bar { background: #404040; }
.theme-dark .audio-time { color: #888; }
.theme-dark .audio-btn { background: #333; color: #ccc; }
.theme-dark .audio-btn:hover { background: #444; color: #fff; }
.theme-dark .audio-btn--play { background: linear-gradient(135deg, #4bb2d5, #3b779b); color: #fff; }
.theme-dark .audio-btn.active { background: linear-gradient(135deg, #4bb2d5, #3b779b); color: #fff; }
.theme-dark .audio-volume-slider { background: #404040; }
.theme-dark .audio-volume i { color: #888; }
.theme-dark .audio-speed-btn { background: #333; color: #ccc; }
.theme-dark .audio-speed-menu { background: #2a2a2a; border: 1px solid #444; }
.theme-dark .audio-speed-option { color: #ccc; }
.theme-dark .audio-speed-option:hover { background: #333; color: #fff; }
.theme-dark .viz-top-btn { background: rgba(255,255,255,0.1); }
.theme-dark .viz-top-btn:hover { background: rgba(75,178,213,0.5); }
.theme-dark .playlist-section { background: #222; border-color: #333; }
.theme-dark .playlist-header { background: #2a2a2a; border-bottom-color: #333; }
.theme-dark .playlist-header__title { color: #fff; }
.theme-dark .playlist-header__btn { background: #333; border-color: #444; color: #ccc; }
.theme-dark .playlist-header__btn:hover { background: #4bb2d5; border-color: #4bb2d5; color: #fff; }
.theme-dark .playlist-body { background: #1f1f1f; }
.theme-dark .playlist-empty { color: #666; }
.theme-dark .playlist-item { background: #2a2a2a; border-bottom-color: #333; }
.theme-dark .playlist-item:hover { background: #333; }
.theme-dark .playlist-item.playing { background: rgba(75,178,213,0.15); }
.theme-dark .playlist-item__icon { background: #333; color: #888; }
.theme-dark .playlist-item.playing .playlist-item__icon { background: #4bb2d5; color: #fff; }
.theme-dark .playlist-item__title { color: #fff; }
.theme-dark .playlist-item__meta { color: #888; }
.theme-dark .playlist-item__now-playing { color: #4bb2d5; }
.theme-dark .playlist-controls { background: #2a2a2a; border-top-color: #333; }
.theme-dark .playlist-nav-btn { background: #333; border-color: #444; color: #ccc; }
.theme-dark .playlist-nav-btn:hover:not(:disabled) { background: #4bb2d5; border-color: #4bb2d5; color: #fff; }
.theme-dark .playlist-nav-btn--play { background: linear-gradient(135deg, #4bb2d5, #3b779b); border-color: transparent; color: #fff; }
.theme-dark .playlist-options { background: #252525; border-top-color: #333; }
.theme-dark .playlist-option { color: #ccc; }
.theme-dark .playlist-option i { color: #4bb2d5; }
.theme-dark .format-support { background: #222; border-color: #333; }
.theme-dark .format-support__header { background: #2a2a2a; }
.theme-dark .format-support__title { color: #fff; }
.theme-dark .format-card { background: #2a2a2a; }
.theme-dark .format-card__title { color: #fff; }
.theme-dark .format-item { background: #333; }
.theme-dark .format-item__name { color: #ccc; }

/* ==============================================
   SKIN: SPOTIFY GREEN
   ============================================== */
.theme-spotify .player-container { background: #121212; border: none; }
.theme-spotify .hero-section { background: linear-gradient(180deg, #1DB954 0%, #121212 100%); }
.theme-spotify .hero-section::before { display: none; }
.theme-spotify .hero-section__icon { background: rgba(255,255,255,0.1); }
.theme-spotify .hero-section__title { color: #fff; }
.theme-spotify .hero-section__subtitle { color: rgba(255,255,255,0.7); }
.theme-spotify .drop-zone { background: #181818; border-color: #282828; }
.theme-spotify .drop-zone:hover { border-color: #1DB954; background: #1a1a1a; }
.theme-spotify .drop-zone__icon { color: #1DB954; }
.theme-spotify .drop-zone__title { color: #fff; }
.theme-spotify .drop-zone__subtitle { color: #b3b3b3; }
.theme-spotify .drop-zone__format { background: #282828; border-color: #333; color: #b3b3b3; }
.theme-spotify .drop-zone__format--video, .theme-spotify .drop-zone__format--audio { border-color: #1DB954; color: #1DB954; }
.theme-spotify .url-section { background: #181818; }
.theme-spotify .url-input { background: #282828; border-color: #333; color: #fff; }
.theme-spotify .url-btn { background: #1DB954; color: #000; font-weight: 600; }
.theme-spotify .url-btn:hover { background: #1ed760; }
.theme-spotify .divider span { background: #121212; color: #b3b3b3; }
.theme-spotify .divider::before, .theme-spotify .divider::after { background: #282828; }
.theme-spotify .player-area { background: #121212; }
.theme-spotify .file-info-bar { background: #181818; }
.theme-spotify .file-info-bar__icon { background: #1DB954; color: #000; }
.theme-spotify .file-info-bar__name { color: #fff; }
.theme-spotify .file-info-bar__meta { color: #b3b3b3; }
.theme-spotify .file-info-bar__btn { background: transparent; border-color: #b3b3b3; color: #fff; }
.theme-spotify .file-info-bar__btn:hover { border-color: #fff; }
.theme-spotify .audio-container { background: #181818; }
.theme-spotify .audio-visualizer { background: linear-gradient(180deg, #181818 0%, #121212 100%); }
.theme-spotify .audio-track-title { color: #fff; }
.theme-spotify .viz-top-btn { background: rgba(255,255,255,0.1); }
.theme-spotify .viz-top-btn:hover { background: rgba(29,185,84,0.5); }
.theme-spotify .viz-top-btn.active { background: #1DB954; color: #000; }
.theme-spotify .audio-controls { background: #181818; }
.theme-spotify .audio-progress-bar { background: #404040; height: 4px; }
.theme-spotify .audio-progress-fill { background: #1DB954; }
.theme-spotify .audio-progress-bar:hover .audio-progress-fill { background: #1ed760; }
.theme-spotify .audio-time { color: #b3b3b3; }
.theme-spotify .audio-btn { background: transparent; color: #b3b3b3; }
.theme-spotify .audio-btn:hover { color: #fff; background: transparent; transform: scale(1.1); }
.theme-spotify .audio-btn--play { background: #fff; color: #000; }
.theme-spotify .audio-btn--play:hover { transform: scale(1.08); background: #fff; }
.theme-spotify .audio-btn.active { color: #1DB954; background: transparent; }
.theme-spotify .audio-volume-slider { background: #404040; }
.theme-spotify .audio-volume-slider::-webkit-slider-thumb { background: #fff; }
.theme-spotify .audio-volume i { color: #b3b3b3; }
.theme-spotify .audio-speed-btn { background: transparent; border: 1px solid #b3b3b3; color: #fff; }
.theme-spotify .audio-speed-btn.active { background: #1DB954; border-color: #1DB954; color: #000; }
.theme-spotify .audio-speed-menu { background: #282828; border: none; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.theme-spotify .audio-speed-option { color: #b3b3b3; }
.theme-spotify .audio-speed-option:hover { background: #333; color: #fff; }
.theme-spotify .audio-speed-option.active { color: #1DB954; }
.theme-spotify .playlist-section { background: #121212; border-color: #282828; }
.theme-spotify .playlist-header { background: #181818; border-bottom-color: #282828; }
.theme-spotify .playlist-header__title { color: #fff; }
.theme-spotify .playlist-header__title i { color: #1DB954; }
.theme-spotify .playlist-header__count { background: #1DB954; color: #000; }
.theme-spotify .playlist-header__btn { background: transparent; border-color: #b3b3b3; color: #fff; }
.theme-spotify .playlist-header__btn:hover { border-color: #fff; }
.theme-spotify .playlist-body { background: #121212; }
.theme-spotify .playlist-item { background: transparent; border-radius: 4px; border-bottom: none; }
.theme-spotify .playlist-item:hover { background: #282828; }
.theme-spotify .playlist-item.playing { background: #282828; }
.theme-spotify .playlist-item__icon { background: #282828; color: #b3b3b3; }
.theme-spotify .playlist-item.playing .playlist-item__icon { background: #1DB954; color: #000; }
.theme-spotify .playlist-item__title { color: #fff; }
.theme-spotify .playlist-item.playing .playlist-item__title { color: #1DB954; }
.theme-spotify .playlist-item__meta { color: #b3b3b3; }
.theme-spotify .playlist-item__now-playing { color: #1DB954; }
.theme-spotify .playlist-controls { background: #181818; border-top-color: #282828; }
.theme-spotify .playlist-nav-btn { background: transparent; border-color: #b3b3b3; color: #fff; }
.theme-spotify .playlist-nav-btn:hover:not(:disabled) { border-color: #fff; background: transparent; }
.theme-spotify .playlist-nav-btn--play { background: #1DB954; border-color: #1DB954; color: #000; }
.theme-spotify .playlist-nav-btn--play:hover:not(:disabled) { background: #1ed760; border-color: #1ed760; }
.theme-spotify .playlist-options { background: #181818; border-top-color: #282828; }
.theme-spotify .playlist-option { color: #b3b3b3; }
.theme-spotify .playlist-option i { color: #1DB954; }
.theme-spotify .format-support { background: #181818; border-color: #282828; }
.theme-spotify .format-support__header { background: #1a1a1a; }
.theme-spotify .format-support__header i { color: #1DB954; }
.theme-spotify .format-support__title { color: #fff; }
.theme-spotify .format-card { background: #282828; }
.theme-spotify .format-card__title { color: #fff; }
.theme-spotify .format-item { background: #333; }
.theme-spotify .format-item__name { color: #b3b3b3; }

/* ==============================================
   SKIN: SUNSET WARM
   ============================================== */
.theme-sunset .player-container { background: linear-gradient(180deg, #fff5f0 0%, #ffe8e0 100%); border-color: #f0d0c0; }
.theme-sunset .hero-section { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); }
.theme-sunset .hero-section__icon { background: rgba(255,255,255,0.2); }
.theme-sunset .drop-zone { background: linear-gradient(135deg, #fff8f5 0%, #fff0ea 100%); border-color: #ffc0a0; }
.theme-sunset .drop-zone:hover { border-color: #ff6b6b; }
.theme-sunset .drop-zone__icon { color: #ff6b6b; }
.theme-sunset .drop-zone__title { color: #d94040; }
.theme-sunset .drop-zone__format--video { border-color: #ff6b6b; color: #d94040; }
.theme-sunset .drop-zone__format--audio { border-color: #ffa500; color: #cc8400; }
.theme-sunset .url-section { background: linear-gradient(135deg, #ffe8e0 0%, #ffd8c8 100%); }
.theme-sunset .url-input { background: #fff; border-color: #f0c0a0; }
.theme-sunset .url-btn { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); }
.theme-sunset .url-btn:hover { background: linear-gradient(135deg, #ff5555 0%, #ff9500 100%); }
.theme-sunset .divider span { background: linear-gradient(180deg, #fff5f0 0%, #ffe8e0 100%); color: #c0a0a0; }
.theme-sunset .divider::before, .theme-sunset .divider::after { background: #f0c0a0; }
.theme-sunset .player-area { background: linear-gradient(180deg, #fff5f0 0%, #ffe8e0 100%); }
.theme-sunset .file-info-bar { background: linear-gradient(135deg, #ffe8e0 0%, #ffd8c8 100%); }
.theme-sunset .file-info-bar__icon { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); }
.theme-sunset .file-info-bar__name { color: #d94040; }
.theme-sunset .file-info-bar__meta { color: #a08080; }
.theme-sunset .file-info-bar__btn { background: #fff; border-color: #f0c0a0; color: #a08080; }
.theme-sunset .file-info-bar__btn:hover { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); border-color: transparent; color: #fff; }
.theme-sunset .audio-container { background: linear-gradient(180deg, #2a2020 0%, #201818 100%); }
.theme-sunset .audio-track-title { color: #ffa500; text-shadow: 0 0 15px rgba(255,165,0,0.5); }
.theme-sunset .viz-top-btn { background: rgba(255,107,107,0.3); }
.theme-sunset .viz-top-btn:hover { background: rgba(255,107,107,0.6); }
.theme-sunset .viz-top-btn.active { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); }
.theme-sunset .audio-controls { background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%); }
.theme-sunset .audio-progress-bar { background: #f0c0a0; }
.theme-sunset .audio-progress-fill { background: linear-gradient(90deg, #ff6b6b, #ffa500); }
.theme-sunset .audio-time { color: #a08080; }
.theme-sunset .audio-btn { background: #fff; color: #a08080; border: 1px solid #f0c0a0; }
.theme-sunset .audio-btn:hover { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); border-color: transparent; color: #fff; }
.theme-sunset .audio-btn--play { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); border: none; color: #fff; box-shadow: 0 4px 15px rgba(255,107,107,0.4); }
.theme-sunset .audio-btn.active { background: linear-gradient(135deg, #ff6b6b, #ffa500); border-color: transparent; color: #fff; }
.theme-sunset .audio-volume-slider { background: #f0c0a0; }
.theme-sunset .audio-volume-slider::-webkit-slider-thumb { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); }
.theme-sunset .audio-volume i { color: #a08080; }
.theme-sunset .audio-speed-btn { background: #fff; border: 1px solid #f0c0a0; color: #a08080; }
.theme-sunset .audio-speed-btn.active { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); border-color: transparent; color: #fff; }
.theme-sunset .audio-speed-menu { background: #fff; border: 1px solid #f0c0a0; }
.theme-sunset .audio-speed-option { color: #a08080; }
.theme-sunset .audio-speed-option:hover { background: rgba(255,107,107,0.1); color: #ff6b6b; }
.theme-sunset .playlist-section { background: #fff8f5; border-color: #f0d0c0; }
.theme-sunset .playlist-header { background: linear-gradient(90deg, #ffe8e0 0%, #fff0ea 100%); }
.theme-sunset .playlist-header__title { color: #d94040; }
.theme-sunset .playlist-header__title i { color: #ff6b6b; }
.theme-sunset .playlist-header__count { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); color: #fff; }
.theme-sunset .playlist-header__btn { background: #fff; border-color: #f0c0a0; color: #a08080; }
.theme-sunset .playlist-header__btn:hover { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); border-color: transparent; color: #fff; }
.theme-sunset .playlist-body { background: #fff5f0; }
.theme-sunset .playlist-empty { color: #c0a0a0; }
.theme-sunset .playlist-item { background: #fff; border-bottom-color: #f8e0d8; }
.theme-sunset .playlist-item:hover { background: #fff8f5; }
.theme-sunset .playlist-item.playing { background: linear-gradient(90deg, rgba(255,107,107,0.1), transparent); }
.theme-sunset .playlist-item__icon { background: #ffe8e0; color: #c0a0a0; }
.theme-sunset .playlist-item.playing .playlist-item__icon { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); color: #fff; }
.theme-sunset .playlist-item__title { color: #605050; }
.theme-sunset .playlist-item.playing .playlist-item__title { color: #d94040; }
.theme-sunset .playlist-item__meta { color: #c0a0a0; }
.theme-sunset .playlist-item__now-playing { color: #ff6b6b; }
.theme-sunset .playlist-controls { background: linear-gradient(90deg, #ffe8e0 0%, #fff0ea 100%); border-top-color: #f0c0a0; }
.theme-sunset .playlist-nav-btn { background: #fff; border-color: #f0c0a0; color: #a08080; }
.theme-sunset .playlist-nav-btn:hover:not(:disabled) { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); border-color: transparent; color: #fff; }
.theme-sunset .playlist-nav-btn--play { background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%); border-color: transparent; color: #fff; }
.theme-sunset .playlist-options { background: #fff0ea; border-top-color: #f0c0a0; }
.theme-sunset .playlist-option { color: #a08080; }
.theme-sunset .playlist-option i { color: #ff6b6b; }
.theme-sunset .format-support { background: #fff5f0; border-color: #f0d0c0; }
.theme-sunset .format-support__header { background: linear-gradient(90deg, #ffe8e0 0%, #fff0ea 100%); }
.theme-sunset .format-support__header i { color: #ff6b6b; }
.theme-sunset .format-support__title { color: #d94040; }
.theme-sunset .format-card { background: #fff; }
.theme-sunset .format-card--video .format-card__header i { color: #ff6b6b; }
.theme-sunset .format-card--audio .format-card__header i { color: #ffa500; }
.theme-sunset .format-item { background: #fff0ea; }
.theme-sunset .format-item__name { color: #a08080; }

/* Related Tools Grid */
.player-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e9ecef;
}
@media (max-width: 768px) {
    .player-tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .player-tools-grid { grid-template-columns: 1fr 1fr; }
}
.player-tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.1rem 0.75rem;
    background: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    gap: 6px;
}
.player-tool-card:hover {
    background: #f0f9fc;
    text-decoration: none;
}
.player-tool-card__icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #4bb2d5;
    margin-bottom: 2px;
}
.player-tool-card:hover .player-tool-card__icon {
    background: linear-gradient(135deg, #4bb2d5, #3b779b);
    color: #fff;
}
.player-tool-card__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2f6e8d;
    line-height: 1.2;
}
.player-tool-card__desc {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.3;
}

/* Info body (About sections) */
.player-info-body {
    padding: 1.25rem 1.5rem;
    color: #495057;
    line-height: 1.7;
    font-size: 0.95rem;
}
.player-info-body p {
    margin: 0 0 0.9rem;
}
.player-info-body p:last-child {
    margin-bottom: 0;
}
.player-info-body a {
    color: #4bb2d5;
    font-weight: 500;
    text-decoration: none;
}
.player-info-body a:hover {
    text-decoration: underline;
}

/* ---- Drag to reorder ---- */
.playlist-item.drag-over {
    border-top: 3px solid #4bb2d5;
    background: #e3f2fd;
}
.playlist-item[draggable="true"] {
    user-select: none;
}
.playlist-item__drag { cursor: grab; }
.playlist-item__drag:active { cursor: grabbing; }

/* ---- Favourite button ---- */
.playlist-item__fav {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    padding: 4px 6px;
    font-size: 1rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.playlist-item__fav:hover,
.playlist-item__fav.active { color: #f0a500; }
.playlist-item__fav.active i::before { content: "\f586"; }

/* ---- Favourites section ---- */
.favourites-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}
.favourites-header {
    background: linear-gradient(135deg, #f5a623 0%, #e8944d 100%);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}
.favourites-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.favourites-header__count {
    background: rgba(255,255,255,0.25);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
}
.favourites-body {
    max-height: 260px;
    overflow-y: auto;
}
.favourites-empty {
    padding: 24px 20px;
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
}
.fav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.15s ease;
}
.fav-item:last-child { border-bottom: none; }
.fav-item:hover { background: #fff8ee; }
.fav-item__icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, #f5a623, #e8944d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.fav-item__name {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2f6e8d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.fav-item__remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    padding: 4px;
    font-size: 0.85rem;
    opacity: 0;
    transition: all 0.15s;
}
.fav-item:hover .fav-item__remove { opacity: 1; }
.fav-item__remove:hover { color: #ce3527; }

/* ---- Scrobble section ---- */
.scrobble-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}
.scrobble-header {
    padding: 10px 16px;
    background: linear-gradient(135deg, #283040 0%, #1a2030 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    font-size: 0.9rem;
    font-weight: 600;
}
.scrobble-header i.bi-broadcast { color: #f5a623; }
.scrobble-header__toggle { margin-left: auto; font-size: 0.75rem; transition: transform 0.2s; }
.scrobble-header__status {
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}
.scrobble-header__status--off { background: rgba(255,255,255,0.1); color: #888; }
.scrobble-header__status--on  { background: rgba(245,166,35,0.3); color: #f5a623; }
.scrobble-body {
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 14px;
    background: #fafafa;
}
.scrobble-body.open { display: flex; }
.scrobble-service { display: flex; flex-direction: column; gap: 8px; }
.scrobble-service__title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}
.scrobble-service__title a { color: #4bb2d5; font-size: 0.75rem; font-weight: 400; }
.scrobble-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.scrobble-input {
    flex: 1;
    padding: 7px 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.82rem;
    font-family: monospace;
    color: #333;
    background: #fff;
}
.scrobble-input:focus { outline: none; border-color: #4bb2d5; }
.scrobble-btn {
    padding: 7px 14px;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.scrobble-btn--save { background: #4bb2d5; color: #fff; }
.scrobble-btn--save:hover { background: #3b99bb; }
.scrobble-btn--test { background: #e9ecef; color: #495057; }
.scrobble-btn--test:hover { background: #dee2e6; }
.scrobble-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #555;
}
.scrobble-toggle {
    position: relative;
    width: 38px;
    height: 20px;
    flex-shrink: 0;
}
.scrobble-toggle input { display: none; }
.scrobble-toggle__slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
}
.scrobble-toggle__slider::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 16px; height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}
.scrobble-toggle input:checked + .scrobble-toggle__slider { background: #f5a623; }
.scrobble-toggle input:checked + .scrobble-toggle__slider::after { transform: translateX(18px); }
.scrobble-note {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.4;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
}
.scrobble-note a { color: #4bb2d5; }
.scrobble-log {
    font-size: 0.75rem;
    color: #888;
    font-family: monospace;
    max-height: 60px;
    overflow-y: auto;
    background: #1a1a2a;
    color: #aaffaa;
    padding: 6px 10px;
    border-radius: 6px;
    display: none;
}
.scrobble-log.has-entries { display: block; }

/* ── See-all restyle: match skin pill buttons ─────────────────── */
.theme-switcher__see-more {
    padding: 0.45rem 0.75rem;
    border: 2px solid #dee2e6;
    background: #fff;
    border-radius: 25px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #555;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
}
.theme-switcher__see-more:hover {
    border-color: #4bb2d5;
    color: #4bb2d5;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(75,178,213,0.2);
}
.theme-switcher__see-more .see-more-arrow {
    transition: transform 0.2s ease;
    font-size: 0.75rem;
}
.theme-switcher.expanded .theme-switcher__see-more .see-more-arrow {
    transform: rotate(180deg);
}
.theme-switcher.expanded .theme-switcher__see-more .see-more-label::after {
    content: '';
}

/* ── Sleep Timer section ─────────────────────────────────────────── */
.sleep-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}
.sleep-header {
    padding: 10px 16px;
    background: linear-gradient(135deg, #2d1b4a 0%, #1e1230 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    font-size: 0.9rem;
    font-weight: 600;
}
.sleep-header i.bi-moon-stars-fill { color: #a78bfa; }
.sleep-header__toggle { margin-left: auto; font-size: 0.75rem; transition: transform 0.2s; }
.sleep-header__status {
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}
.sleep-header__status--off  { background: rgba(255,255,255,0.1); color: #999; }
.sleep-header__status--on   { background: rgba(167,139,250,0.3); color: #a78bfa; }
.sleep-body {
    padding: 14px 16px;
    display: none;
    flex-direction: column;
    gap: 12px;
    background: #fafafa;
}
.sleep-body.open { display: flex; }
.sleep-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sleep-preset-btn {
    padding: 6px 14px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
    font-weight: 500;
}
.sleep-preset-btn:hover { border-color: #a78bfa; color: #7c3aed; }
.sleep-preset-btn.active {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border-color: transparent;
    color: #fff;
}
.sleep-countdown-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1e1230, #2d1b4a);
    border-radius: 8px;
    padding: 10px 14px;
    display: none;
}
.sleep-countdown-row.active { display: flex; }
.sleep-countdown-label { color: #a78bfa; font-size: 0.82rem; display: flex; align-items: center; gap: 6px; }
.sleep-countdown-time  { color: #fff; font-size: 1.1rem; font-weight: 700; font-family: monospace; letter-spacing: 1px; }
.sleep-cancel-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}
.sleep-cancel-btn:hover { background: rgba(167,139,250,0.3); }
.sleep-note {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.4;
}

/* ── Mini Player ─────────────────────────────────────────────────── */
#miniPlayer {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0d1f2d 0%, #163045 100%);
    border-top: 2px solid #4bb2d5;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 64px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}
#miniPlayer.visible { bottom: 0; }

.mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4bb2d5, #3b779b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(59,119,155,0.4);
}

.mini-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mini-title {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.mini-progress-wrap {
    height: 3px;
    background: rgba(255,255,255,0.12);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.mini-progress-wrap:hover { height: 5px; margin-top: -1px; }

.mini-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4bb2d5, #5bc8e8);
    border-radius: 2px;
    width: 0%;
    pointer-events: none;
}

/* Stream pulse: full-width bar that breathes */
@keyframes miniStreamPulse {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}
.mini-progress-wrap.is-stream .mini-progress-fill {
    animation: miniStreamPulse 2s ease-in-out infinite;
}

.mini-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.mini-btn {
    background: rgba(255,255,255,0.07);
    border: none;
    color: rgba(255,255,255,0.75);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}
.mini-btn:hover  { background: rgba(255,255,255,0.15); color: #fff; }
.mini-btn:active { transform: scale(0.92); }

.mini-btn--play {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #4bb2d5, #3b779b);
    color: #fff;
    font-size: 1.05rem;
    box-shadow: 0 3px 10px rgba(59,119,155,0.4);
}
.mini-btn--play:hover {
    background: linear-gradient(135deg, #5bc0e0, #4b90bf);
    box-shadow: 0 4px 14px rgba(59,119,155,0.55);
    color: #fff;
}

.mini-btn--close {
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
}
.mini-btn--close:hover {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
}

@media (max-width: 500px) {
    .mini-btn--prev, .mini-btn--next { display: none; }
    #miniPlayer { gap: 8px; padding: 0 12px; }
    .mini-title { font-size: 0.78rem; }
}

/* ── Playlist-tip: Retro theme ── */
.theme-retro .playlist-tip {
    background: linear-gradient(135deg, #d8d5cc 0%, #ccc9bc 100%);
    border-color: #b0a898;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.theme-retro .playlist-tip__icon { background: linear-gradient(135deg, #e8844d, #d06030); }
.theme-retro .playlist-tip__title { color: #3a2a18; }
.theme-retro .playlist-tip__text { color: #5a4a38; }
.theme-retro .playlist-tip__text a { color: #c85a28; }
.theme-retro .playlist-tip__divider { background: linear-gradient(90deg, #b0a080, transparent); }
.theme-retro .playlist-tip__text--muted { color: #8a7a68; }

/* ── Playlist-tip: Dark theme ── */
.theme-dark .playlist-tip {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    border-color: #333;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.theme-dark .playlist-tip__icon { background: linear-gradient(135deg, #4bb2d5, #3b779b); }
.theme-dark .playlist-tip__title { color: #e0e0e0; }
.theme-dark .playlist-tip__text { color: #aaa; }
.theme-dark .playlist-tip__text a { color: #4bb2d5; }
.theme-dark .playlist-tip__divider { background: linear-gradient(90deg, #444, transparent); }
.theme-dark .playlist-tip__text--muted { color: #666; }

/* ── Playlist-tip: Spotify theme ── */
.theme-spotify .playlist-tip {
    background: linear-gradient(135deg, #181818 0%, #1e1e1e 100%);
    border-color: #282828;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.theme-spotify .playlist-tip__icon { background: #1DB954; box-shadow: 0 2px 8px rgba(29,185,84,0.3); }
.theme-spotify .playlist-tip__title { color: #fff; }
.theme-spotify .playlist-tip__text { color: #b3b3b3; }
.theme-spotify .playlist-tip__text a { color: #1DB954; }
.theme-spotify .playlist-tip__divider { background: linear-gradient(90deg, #333, transparent); }
.theme-spotify .playlist-tip__text--muted { color: #666; }
.theme-spotify .playlist-tip__pill--red { background: linear-gradient(135deg, #1DB954, #17a348); box-shadow: 0 2px 8px rgba(29,185,84,0.3); }
.theme-spotify .playlist-tip__pill--pink { background: linear-gradient(135deg, #1ed760, #17a348); box-shadow: 0 2px 8px rgba(30,215,96,0.3); }

/* ── Playlist-tip: Sunset theme ── */
.theme-sunset .playlist-tip {
    background: linear-gradient(135deg, #fff8f5 0%, #fff0ea 100%);
    border-color: #f0c0a0;
    box-shadow: 0 2px 12px rgba(255,107,107,0.1);
}
.theme-sunset .playlist-tip__icon { background: linear-gradient(135deg, #ff6b6b, #ffa500); box-shadow: 0 2px 8px rgba(255,107,107,0.3); }
.theme-sunset .playlist-tip__title { color: #d94040; }
.theme-sunset .playlist-tip__text { color: #a08080; }
.theme-sunset .playlist-tip__text a { color: #d94040; }
.theme-sunset .playlist-tip__divider { background: linear-gradient(90deg, #f0c0a0, transparent); }
.theme-sunset .playlist-tip__text--muted { color: #c0a0a0; }
.theme-sunset .playlist-tip__pill--red { background: linear-gradient(135deg, #ff6b6b, #ff4444); }
.theme-sunset .playlist-tip__pill--pink { background: linear-gradient(135deg, #ffa500, #ff6b6b); }


/* ==========================================================
   SKIN: APPLE ARCADE  — deep crimson, vibrant red
   ========================================================== */
.theme-arcade .player-container { background: #4a0000; border-color: #6d0000; }
.theme-arcade .hero-section { background: linear-gradient(135deg, #c0392b 0%, #8b0000 100%); }
.theme-arcade .drop-zone { background: linear-gradient(135deg, #3a0000, #2a0000); border-color: #7a1010; }
.theme-arcade .drop-zone:hover { border-color: #ff4444; background: linear-gradient(135deg, #3d0505, #2d0202); }
.theme-arcade .drop-zone__icon { color: #ff6666; }
.theme-arcade .drop-zone__title { color: #ffaaaa; }
.theme-arcade .drop-zone__subtitle { color: #cc8888; }
.theme-arcade .drop-zone__format { background: #3a0000; border-color: #7a1010; color: #cc8888; }
.theme-arcade .drop-zone__format--video { border-color: #ff4444; color: #ff8888; }
.theme-arcade .drop-zone__format--audio { border-color: #ff6666; color: #ffaaaa; }
.theme-arcade .url-section { background: #3a0000; }
.theme-arcade .url-input { background: #2a0000; border-color: #7a1010; color: #ffcccc; }
.theme-arcade .url-btn { background: linear-gradient(135deg, #c0392b, #8b0000); }
.theme-arcade .url-btn:hover { background: linear-gradient(135deg, #d04030, #a01010); }
.theme-arcade .divider span { background: #3a0000; color: #cc8888; }
.theme-arcade .divider::before, .theme-arcade .divider::after { background: #7a1010; }
.theme-arcade .file-info-bar { background: linear-gradient(135deg, #3a0808, #2a0000); }
.theme-arcade .file-info-bar__name { color: #ffaaaa; }
.theme-arcade .file-info-bar__meta { color: #cc8888; }
.theme-arcade .file-info-bar__icon { background: linear-gradient(135deg, #c0392b, #8b0000); }
.theme-arcade .file-info-bar__btn { background: transparent; border-color: #cc4444; color: #ff8888; }
.theme-arcade .file-info-bar__btn:hover { background: #c0392b; border-color: transparent; color: #fff; }
.theme-arcade .audio-container { background: linear-gradient(180deg, #1a0000, #100000); }
.theme-arcade .audio-visualizer { background: linear-gradient(180deg, #100000, #080000); }


.theme-arcade .viz-top-btn { background: rgba(192,57,43,0.3); }
.theme-arcade .viz-top-btn:hover { background: rgba(192,57,43,0.6); }
.theme-arcade .viz-top-btn.active { background: linear-gradient(135deg, #c0392b, #8b0000); }
.theme-arcade .audio-controls { background: linear-gradient(135deg, #1a0505, #120000); }
.theme-arcade .audio-progress-bar { background: rgba(255,100,100,0.2); }
.theme-arcade .audio-progress-fill { background: linear-gradient(90deg, #c0392b, #ff4444); }
.theme-arcade .audio-btn { background: rgba(192,57,43,0.2); color: #ff9999; }
.theme-arcade .audio-btn:hover { background: rgba(192,57,43,0.4); color: #fff; }
.theme-arcade .audio-btn--play { background: linear-gradient(135deg, #c0392b, #8b0000); color: #fff; box-shadow: 0 4px 15px rgba(192,57,43,0.5); }
.theme-arcade .audio-btn--play:hover { background: linear-gradient(135deg, #d04030, #a01010); }
.theme-arcade .audio-btn.active { background: linear-gradient(135deg, #c0392b, #8b0000); color: #fff; }
.theme-arcade .audio-volume-slider { background: rgba(255,100,100,0.2); }
.theme-arcade .audio-volume-slider::-webkit-slider-thumb { background: #ff4444; }
.theme-arcade .audio-time { color: rgba(255,150,150,0.6); }
.theme-arcade .audio-speed-btn { background: rgba(192,57,43,0.2); border: 1px solid rgba(255,100,100,0.3); color: #ff9999; }
.theme-arcade .audio-speed-btn.active { background: linear-gradient(135deg, #c0392b, #8b0000); border-color: transparent; color: #fff; }
.theme-arcade .audio-speed-menu { background: #1a0505; }
.theme-arcade .audio-speed-option { color: #cc8888; }
.theme-arcade .audio-speed-option:hover { background: rgba(192,57,43,0.2); color: #fff; }
.theme-arcade .audio-speed-option.active { color: #ff4444; }
.theme-arcade .playlist-section { background: #1a0000; border-color: #4a0808; }
.theme-arcade .playlist-header { background: linear-gradient(135deg, #c0392b 0%, #8b0000 100%); }
.theme-arcade .playlist-header__btn { background: rgba(255,255,255,0.1); border: none; color: #fff; }
.theme-arcade .playlist-header__btn:hover { background: rgba(255,255,255,0.2); }
.theme-arcade .playlist-header__btn--danger:hover { background: rgba(0,0,0,0.3); }
.theme-arcade .playlist-body { background: #120000; }
.theme-arcade .playlist-item { background: #1a0000; border-bottom-color: #3a0808; }
.theme-arcade .playlist-item:hover { background: #220000; }
.theme-arcade .playlist-item.active { background: rgba(192,57,43,0.2); border-left-color: #c0392b; }
.theme-arcade .playlist-item__name { color: #ffaaaa; }
.theme-arcade .playlist-item__meta { color: #884444; }
.theme-arcade .playlist-item__now-playing { color: #ff4444; }
.theme-arcade .playlist-nav-btn { background: #1a0000; border-color: #4a0808; color: #ff9999; }
.theme-arcade .playlist-nav-btn:hover:not(:disabled) { background: #c0392b; border-color: #c0392b; color: #fff; }
.theme-arcade .playlist-nav-btn--play { background: #c0392b; border-color: #c0392b; color: #fff; }
.theme-arcade .playlist-option { color: #cc8888; }
.theme-arcade .playlist-option i { color: #ff4444; }
.theme-arcade .format-support { background: #1a0000; border-color: #4a0808; }
.theme-arcade .format-support__header { background: #220000; }
.theme-arcade .format-support__title { color: #ff9999; }
.theme-arcade .format-card { background: #1a0000; }
.theme-arcade .format-card__title { color: #ffcccc; }
.theme-arcade .format-item { background: #220000; }
.theme-arcade .format-item__name { color: #cc8888; }
.theme-arcade .playlist-tip { background: linear-gradient(135deg, #220000, #1a0000); border-color: #4a0808; }
.theme-arcade .playlist-tip__icon { background: linear-gradient(135deg, #c0392b, #8b0000); }
.theme-arcade .playlist-tip__title { color: #ffaaaa; }
.theme-arcade .playlist-tip__text { color: #cc8888; }
.theme-arcade .playlist-tip__text a { color: #ff6666; }
.theme-arcade .playlist-tip__divider { background: linear-gradient(90deg, #4a0808, transparent); }
.theme-arcade .theme-switcher { background: linear-gradient(135deg, #1a0000, #120000); border-color: #4a0808; }
.theme-arcade .theme-switcher__label { color: #ff9999; }
.theme-arcade .theme-switcher__btn { background: #220000; border-color: #4a0808; color: #cc8888; }
.theme-arcade .theme-switcher__btn:hover { border-color: #ff4444; color: #ff8888; }
.theme-arcade .theme-switcher__btn.active { background: linear-gradient(135deg, #c0392b, #8b0000); border-color: transparent; color: #fff; }
.theme-arcade .theme-switcher__see-more { background: #220000; border-color: #ff4444; color: #ff8888; }
.theme-arcade .theme-switcher__see-more:hover { background: #c0392b; color: #fff; }

/* ==========================================================
   SKIN: DARK VINYL  — deep black, pink/coral accents
   ========================================================== */
.theme-vinyl .player-container { background: #0a0a0a; border-color: #1a1a1a; }
.theme-vinyl .hero-section { background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%); }
.theme-vinyl .drop-zone { background: #111; border-color: #222; }
.theme-vinyl .drop-zone:hover { border-color: #ff6b9d; background: #141414; }
.theme-vinyl .drop-zone__icon { color: #ff6b9d; }
.theme-vinyl .drop-zone__title { color: #fff; }
.theme-vinyl .drop-zone__subtitle { color: #888; }
.theme-vinyl .drop-zone__format { background: #1a1a1a; border-color: #333; color: #888; }
.theme-vinyl .drop-zone__format--video, .theme-vinyl .drop-zone__format--audio { border-color: #ff6b9d; color: #ff6b9d; }
.theme-vinyl .url-section { background: #111; }
.theme-vinyl .url-input { background: #0d0d0d; border-color: #222; color: #fff; }
.theme-vinyl .url-btn { background: #ff6b9d; color: #000; font-weight: 700; }
.theme-vinyl .url-btn:hover { background: #ff85ad; }
.theme-vinyl .divider span { background: #111; color: #555; }
.theme-vinyl .divider::before, .theme-vinyl .divider::after { background: #222; }
.theme-vinyl .file-info-bar { background: #111; }
.theme-vinyl .file-info-bar__name { color: #fff; }
.theme-vinyl .file-info-bar__meta { color: #888; }
.theme-vinyl .file-info-bar__icon { background: #ff6b9d; color: #000; }
.theme-vinyl .file-info-bar__btn { background: transparent; border-color: #444; color: #aaa; }
.theme-vinyl .file-info-bar__btn:hover { border-color: #ff6b9d; color: #ff6b9d; }
.theme-vinyl .audio-container { background: #0d0d0d; }
.theme-vinyl .audio-visualizer { background: #080808; }

.theme-vinyl .audio-track-artist { color: #ff85ad; }
.theme-vinyl .viz-top-btn { background: rgba(255,107,157,0.15); }
.theme-vinyl .viz-top-btn:hover { background: rgba(255,107,157,0.4); }
.theme-vinyl .viz-top-btn.active { background: #ff6b9d; color: #000; }
.theme-vinyl .audio-controls { background: #0d0d0d; }
.theme-vinyl .audio-progress-bar { background: rgba(255,255,255,0.1); }
.theme-vinyl .audio-progress-fill { background: #ff6b9d; }
.theme-vinyl .audio-btn { background: transparent; color: rgba(255,255,255,0.4); }
.theme-vinyl .audio-btn:hover { background: transparent; color: #fff; transform: scale(1.12); }
.theme-vinyl .audio-btn--play { background: #fff; color: #0a0a0a; box-shadow: 0 4px 20px rgba(255,107,157,0.4); }
.theme-vinyl .audio-btn--play:hover { background: #ff6b9d; color: #000; }
.theme-vinyl .audio-btn.active { color: #ff6b9d; }
.theme-vinyl .audio-volume-slider { background: #333; }
.theme-vinyl .audio-time { color: rgba(255,255,255,0.3); }
.theme-vinyl .audio-speed-btn { background: transparent; border: 1px solid #333; color: #aaa; }
.theme-vinyl .audio-speed-btn.active { background: #ff6b9d; border-color: #ff6b9d; color: #000; }
.theme-vinyl .audio-speed-menu { background: #111; }
.theme-vinyl .audio-speed-option { color: #aaa; }
.theme-vinyl .audio-speed-option:hover { background: #1a1a1a; color: #fff; }
.theme-vinyl .audio-speed-option.active { color: #ff6b9d; }
.theme-vinyl .playlist-section { background: #0a0a0a; border-color: #1a1a1a; }
.theme-vinyl .playlist-header { background: #111; border-bottom: 1px solid #222; }
.theme-vinyl .playlist-header__title { color: #fff; }
.theme-vinyl .playlist-header__title i { color: #ff6b9d; }
.theme-vinyl .playlist-header__count { background: #ff6b9d; color: #000; }
.theme-vinyl .playlist-header__btn { background: transparent; border-color: #333; color: #aaa; }
.theme-vinyl .playlist-header__btn:hover { border-color: #ff6b9d; color: #ff6b9d; }
.theme-vinyl .playlist-body { background: #0a0a0a; }
.theme-vinyl .playlist-item { background: transparent; border-bottom-color: #1a1a1a; }
.theme-vinyl .playlist-item:hover { background: #111; }
.theme-vinyl .playlist-item.active { background: rgba(255,107,157,0.1); border-left-color: #ff6b9d; }
.theme-vinyl .playlist-item__name { color: #ddd; }
.theme-vinyl .playlist-item.active .playlist-item__name { color: #fff; }
.theme-vinyl .playlist-item__meta { color: #555; }
.theme-vinyl .playlist-item__now-playing { color: #ff6b9d; }
.theme-vinyl .playlist-item__icon { background: #1a1a1a; color: #888; }
.theme-vinyl .playlist-item.active .playlist-item__icon { background: #ff6b9d; color: #000; }
.theme-vinyl .playlist-nav-btn { background: transparent; border-color: #333; color: #aaa; }
.theme-vinyl .playlist-nav-btn:hover:not(:disabled) { border-color: #ff6b9d; color: #ff6b9d; background: transparent; }
.theme-vinyl .playlist-nav-btn--play { background: #ff6b9d; border-color: #ff6b9d; color: #000; }
.theme-vinyl .playlist-nav-btn--play:hover:not(:disabled) { background: #ff85ad; }
.theme-vinyl .playlist-option { color: #888; }
.theme-vinyl .playlist-option i { color: #ff6b9d; }
.theme-vinyl .format-support { background: #0a0a0a; border-color: #1a1a1a; }
.theme-vinyl .format-support__header { background: #111; }
.theme-vinyl .format-support__title { color: #fff; }
.theme-vinyl .format-card { background: #111; }
.theme-vinyl .format-card__title { color: #fff; }
.theme-vinyl .format-item { background: #1a1a1a; }
.theme-vinyl .format-item__name { color: #888; }
.theme-vinyl .playlist-tip { background: linear-gradient(135deg, #111, #0d0d0d); border-color: #222; }
.theme-vinyl .playlist-tip__icon { background: #ff6b9d; box-shadow: 0 2px 8px rgba(255,107,157,0.3); }
.theme-vinyl .playlist-tip__title { color: #fff; }
.theme-vinyl .playlist-tip__text { color: #888; }
.theme-vinyl .playlist-tip__text a { color: #ff6b9d; }
.theme-vinyl .playlist-tip__divider { background: linear-gradient(90deg, #333, transparent); }
.theme-vinyl .playlist-tip__text--muted { color: #555; }
.theme-vinyl .theme-switcher { background: #111; border-color: #222; }
.theme-vinyl .theme-switcher__label { color: #aaa; }
.theme-vinyl .theme-switcher__btn { background: #1a1a1a; border-color: #333; color: #888; }
.theme-vinyl .theme-switcher__btn:hover { border-color: #ff6b9d; color: #ff6b9d; }
.theme-vinyl .theme-switcher__btn.active { background: #ff6b9d; border-color: transparent; color: #000; }
.theme-vinyl .theme-switcher__see-more { background: #1a1a1a; border-color: #ff6b9d; color: #ff6b9d; }

/* ==========================================================
   SKIN: LCD MASTERFADE  — dark charcoal, teal LCD neon
   ========================================================== */
.theme-lcd .player-container { background: #1c1c1c; border-color: #2a2a2a; }
.theme-lcd .hero-section { background: linear-gradient(180deg, #252525, #1c1c1c); border-bottom: 1px solid #333; }
.theme-lcd .hero-section__title { color: #00e5cc; font-family: 'Courier New', monospace; letter-spacing: 2px; text-shadow: 0 0 10px rgba(0,229,204,0.5); }
.theme-lcd .hero-section__subtitle { color: rgba(0,229,204,0.6); }
.theme-lcd .hero-section__icon { background: #333; border: 1px solid #444; }
.theme-lcd .drop-zone { background: #111; border-color: #2a2a2a; }
.theme-lcd .drop-zone:hover { border-color: #00e5cc; background: #141414; }
.theme-lcd .drop-zone__icon { color: #00e5cc; }
.theme-lcd .drop-zone__title { color: #00e5cc; font-family: 'Courier New', monospace; }
.theme-lcd .drop-zone__subtitle { color: #555; }
.theme-lcd .drop-zone__format { background: #222; border-color: #333; color: #00e5cc; }
.theme-lcd .url-section { background: #111; }
.theme-lcd .url-input { background: #0a0a0a; border-color: #2a2a2a; color: #00e5cc; font-family: 'Courier New', monospace; }
.theme-lcd .url-input::placeholder { color: #444; }
.theme-lcd .url-btn { background: #1c1c1c; border: 1px solid #00e5cc; color: #00e5cc; }
.theme-lcd .url-btn:hover { background: rgba(0,229,204,0.15); }
.theme-lcd .divider span { background: #111; color: #444; }
.theme-lcd .divider::before, .theme-lcd .divider::after { background: #2a2a2a; }
.theme-lcd .file-info-bar { background: #1a1a1a; }
.theme-lcd .file-info-bar__icon { background: #1c1c1c; border: 1px solid #00e5cc; color: #00e5cc; }
.theme-lcd .file-info-bar__name { color: #00e5cc; font-family: 'Courier New', monospace; }
.theme-lcd .file-info-bar__meta { color: #555; }
.theme-lcd .file-info-bar__btn { background: transparent; border-color: #00e5cc; color: #00e5cc; }
.theme-lcd .audio-container { background: #111; }
.theme-lcd .audio-visualizer { background: #080808; }
.theme-lcd .audio-track-title { color: #00e5cc; text-shadow: 0 0 8px rgba(0,229,204,0.5); font-family: 'Courier New', monospace; }
.theme-lcd .audio-track-artist { color: #00e5cc; }
.theme-lcd .viz-top-btn { background: rgba(0,229,204,0.1); color: #00e5cc; }
.theme-lcd .viz-top-btn:hover { background: rgba(0,229,204,0.25); }
.theme-lcd .viz-top-btn.active { background: #00e5cc; color: #000; }
.theme-lcd .audio-controls { background: #1c1c1c; border-top: 1px solid #2a2a2a; }
.theme-lcd .audio-progress-bar { background: #2a2a2a; }
.theme-lcd .audio-progress-fill { background: #00e5cc; box-shadow: 0 0 6px rgba(0,229,204,0.5); }
.theme-lcd .audio-btn { background: #2a2a2a; color: #777; border: 1px solid #333; border-radius: 4px; }
.theme-lcd .audio-btn:hover { background: #333; color: #00e5cc; transform: none; }
.theme-lcd .audio-btn--play { background: linear-gradient(180deg, #333, #222); color: #00e5cc; border-radius: 4px; box-shadow: 0 2px 0 #111, 0 4px 10px rgba(0,229,204,0.2); }
.theme-lcd .audio-btn.active { background: #2a2a2a; color: #00e5cc; border-color: #00e5cc; }
.theme-lcd .audio-volume-slider { background: #2a2a2a; }
.theme-lcd .audio-volume-slider::-webkit-slider-thumb { background: #00e5cc; }
.theme-lcd .audio-time { color: #00e5cc; font-family: 'Courier New', monospace; opacity: 0.8; }
.theme-lcd .audio-speed-btn { background: #2a2a2a; border: 1px solid #333; color: #00e5cc; font-family: 'Courier New', monospace; }
.theme-lcd .audio-speed-btn.active { background: #00e5cc; border-color: #00e5cc; color: #000; }
.theme-lcd .audio-speed-menu { background: #1a1a1a; border: 1px solid #333; }
.theme-lcd .audio-speed-option { color: #555; font-family: 'Courier New', monospace; }
.theme-lcd .audio-speed-option:hover { background: #2a2a2a; color: #00e5cc; }
.theme-lcd .audio-speed-option.active { color: #00e5cc; }
.theme-lcd .playlist-section { background: #1c1c1c; border-color: #2a2a2a; }
.theme-lcd .playlist-header { background: #252525; }
.theme-lcd .playlist-header__title { color: #00e5cc; font-family: 'Courier New', monospace; }
.theme-lcd .playlist-header__count { background: rgba(0,229,204,0.15); color: #00e5cc; }
.theme-lcd .playlist-header__btn { background: #1c1c1c; border: 1px solid #333; color: #00e5cc; }
.theme-lcd .playlist-header__btn:hover { background: rgba(0,229,204,0.15); }
.theme-lcd .playlist-body { background: #1c1c1c; }
.theme-lcd .playlist-item { background: #1c1c1c; border-bottom-color: #252525; }
.theme-lcd .playlist-item:hover { background: #222; }
.theme-lcd .playlist-item.active { background: rgba(0,229,204,0.08); border-left-color: #00e5cc; }
.theme-lcd .playlist-item__name { color: #aaa; font-family: 'Courier New', monospace; font-size: 0.82rem; }
.theme-lcd .playlist-item.active .playlist-item__name { color: #00e5cc; text-shadow: 0 0 6px rgba(0,229,204,0.4); }
.theme-lcd .playlist-item__meta { color: #444; }
.theme-lcd .playlist-item__now-playing { color: #00e5cc; }
.theme-lcd .playlist-item__icon { background: #2a2a2a; color: #555; border-radius: 4px; }
.theme-lcd .playlist-item.active .playlist-item__icon { background: #00e5cc; color: #000; }
.theme-lcd .playlist-nav-btn { background: #2a2a2a; border-color: #333; color: #777; border-radius: 4px; }
.theme-lcd .playlist-nav-btn:hover:not(:disabled) { background: rgba(0,229,204,0.15); border-color: #00e5cc; color: #00e5cc; }
.theme-lcd .playlist-nav-btn--play { background: #00e5cc; border-color: #00e5cc; color: #000; border-radius: 4px; }
.theme-lcd .playlist-option { color: #555; }
.theme-lcd .playlist-option i { color: #00e5cc; }
.theme-lcd .format-support { background: #1c1c1c; border-color: #2a2a2a; }
.theme-lcd .format-support__header { background: #252525; }
.theme-lcd .format-support__title { color: #00e5cc; font-family: 'Courier New', monospace; }
.theme-lcd .format-card { background: #222; }
.theme-lcd .format-card__title { color: #00e5cc; }
.theme-lcd .format-item { background: #2a2a2a; }
.theme-lcd .format-item__name { color: #555; }
.theme-lcd .playlist-tip { background: #1c1c1c; border-color: #2a2a2a; }
.theme-lcd .playlist-tip__icon { background: #00e5cc; box-shadow: 0 2px 8px rgba(0,229,204,0.3); }
.theme-lcd .playlist-tip__icon i { color: #000; }
.theme-lcd .playlist-tip__title { color: #00e5cc; font-family: 'Courier New', monospace; }
.theme-lcd .playlist-tip__text { color: #555; }
.theme-lcd .playlist-tip__text a { color: #00e5cc; }
.theme-lcd .playlist-tip__divider { background: linear-gradient(90deg, #2a2a2a, transparent); }
.theme-lcd .playlist-tip__text--muted { color: #444; }
.theme-lcd .theme-switcher { background: #1c1c1c; border-color: #2a2a2a; }
.theme-lcd .theme-switcher__label { color: #00e5cc; font-family: 'Courier New', monospace; }
.theme-lcd .theme-switcher__btn { background: #222; border-color: #333; color: #555; border-radius: 4px; }
.theme-lcd .theme-switcher__btn:hover { border-color: #00e5cc; color: #00e5cc; }
.theme-lcd .theme-switcher__btn.active { background: #00e5cc; border-color: transparent; color: #000; }
.theme-lcd .theme-switcher__see-more { background: #222; border-color: #00e5cc; color: #00e5cc; border-radius: 4px; }

/* ==========================================================
   SKIN: WINAMP CLASSIC  — silver/pearl, blue LCD screen
   ========================================================== */
.theme-winamp .player-container { background: linear-gradient(180deg, #c8d4e8, #b0bfd8); border-color: #8898b8; }
.theme-winamp .hero-section { background: #000; }
.theme-winamp .hero-section__title { color: #88aadd; font-family: 'Courier New', monospace; letter-spacing: 1px; font-size: 1rem; }
.theme-winamp .hero-section__subtitle { color: #446688; }
.theme-winamp .hero-section__icon { background: transparent; color: #88aadd; }
.theme-winamp .drop-zone { background: #000; border-color: #225588; }
.theme-winamp .drop-zone:hover { border-color: #4488cc; background: #0a0a14; }
.theme-winamp .drop-zone__icon { color: #88aadd; }
.theme-winamp .drop-zone__title { color: #88aadd; font-family: 'Courier New', monospace; }
.theme-winamp .drop-zone__subtitle { color: #446688; }
.theme-winamp .drop-zone__format { background: #111; border-color: #225588; color: #88aadd; }
.theme-winamp .url-section { background: #0a0a14; }
.theme-winamp .url-input { background: #000; border-color: #225588; color: #88aadd; font-family: 'Courier New', monospace; }
.theme-winamp .url-btn { background: linear-gradient(180deg, #b0c0d8, #8898b8); color: #000; font-weight: 700; border: 1px solid #6678a0; }
.theme-winamp .url-btn:hover { background: linear-gradient(180deg, #c0d0e8, #9aa8c8); }
.theme-winamp .divider span { background: #0a0a14; color: #446688; }
.theme-winamp .divider::before, .theme-winamp .divider::after { background: #225588; }
.theme-winamp .file-info-bar { background: linear-gradient(180deg, #000, #0a0a14); }
.theme-winamp .file-info-bar__icon { background: transparent; color: #88aadd; border: 1px solid #225588; }
.theme-winamp .file-info-bar__name { color: #88aadd; font-family: 'Courier New', monospace; }
.theme-winamp .file-info-bar__meta { color: #446688; }
.theme-winamp .file-info-bar__btn { background: linear-gradient(180deg, #b0c0d8, #8898b8); border-color: #6678a0; color: #000; }
.theme-winamp .audio-container { background: #000; }
.theme-winamp .audio-visualizer { background: #000; }
.theme-winamp .audio-track-title { color: #88aadd; font-family: 'Courier New', monospace; }
.theme-winamp .audio-track-artist { color: #6699cc; font-family: 'Courier New', monospace; }
.theme-winamp .viz-top-btn { background: rgba(68,136,204,0.2); color: #88aadd; }
.theme-winamp .viz-top-btn.active { background: #4488cc; color: #fff; }
.theme-winamp .audio-controls { background: linear-gradient(180deg, #c8d4e8, #b8c8e0); border-top: 2px solid #fff; }
.theme-winamp .audio-progress-bar { background: #7a8aaa; border-radius: 0; }
.theme-winamp .audio-progress-fill { background: linear-gradient(90deg, #4488cc, #88aaff); border-radius: 0; }
.theme-winamp .audio-btn { background: linear-gradient(180deg, #d8e4f4, #b8c8e0); color: #1a2a4c; border: 1px solid #8898b8; border-radius: 3px; box-shadow: 0 2px 0 #6a7a9a; }
.theme-winamp .audio-btn:hover { background: linear-gradient(180deg, #e4f0ff, #c8d8f0); transform: none; box-shadow: 0 1px 0 #6a7a9a; }
.theme-winamp .audio-btn--play { background: linear-gradient(180deg, #e0ecfc, #c0d4ec); box-shadow: 0 3px 0 #5a6a8a; }
.theme-winamp .audio-btn.active { background: linear-gradient(180deg, #4488cc, #2266aa); color: #fff; border-color: #1a5599; }
.theme-winamp .audio-volume-slider { background: #7a8aaa; }
.theme-winamp .audio-volume-slider::-webkit-slider-thumb { background: linear-gradient(180deg, #d8e4f4, #b8c8e0); border: 1px solid #8898b8; }
.theme-winamp .audio-time { color: #1a2a4c; font-family: 'Courier New', monospace; }
.theme-winamp .audio-speed-btn { background: linear-gradient(180deg, #c8d4e8, #b0c0d8); border: 1px solid #8898b8; color: #1a2a4c; border-radius: 3px; }
.theme-winamp .audio-speed-btn.active { background: linear-gradient(180deg, #4488cc, #2266aa); border-color: #1a5599; color: #fff; }
.theme-winamp .audio-speed-menu { background: #0a0a14; border: 1px solid #225588; }
.theme-winamp .audio-speed-option { color: #88aadd; font-family: 'Courier New', monospace; }
.theme-winamp .audio-speed-option:hover { background: #111; color: #aaccff; }
.theme-winamp .audio-speed-option.active { color: #4488cc; }
.theme-winamp .playlist-section { background: linear-gradient(180deg, #c8d4e8, #b0bfd8); border-color: #8898b8; }
.theme-winamp .playlist-header { background: linear-gradient(180deg, #b0c0d8, #8898b8); }
.theme-winamp .playlist-header__title { color: #fff; font-family: 'Courier New', monospace; font-size: 0.85rem; letter-spacing: 1px; }
.theme-winamp .playlist-header__count { background: rgba(0,0,0,0.2); }
.theme-winamp .playlist-body { background: #0a0a14; }
.theme-winamp .playlist-item { background: #0a0a14; border-bottom-color: #1a2a40; }
.theme-winamp .playlist-item:hover { background: #111420; }
.theme-winamp .playlist-item.active { background: rgba(68,136,204,0.15); border-left-color: #4488cc; }
.theme-winamp .playlist-item__name { color: #88aadd; font-family: 'Courier New', monospace; font-size: 0.82rem; }
.theme-winamp .playlist-item.active .playlist-item__name { color: #aaccff; }
.theme-winamp .playlist-item__meta { color: #336688; }
.theme-winamp .playlist-item__now-playing { color: #4488cc; }
.theme-winamp .playlist-item__icon { background: #111420; color: #4488cc; border-radius: 3px; }
.theme-winamp .playlist-nav-btn { background: linear-gradient(180deg, #c8d4e8, #b0bfd8); border-color: #8898b8; color: #1a2a4c; border-radius: 3px; box-shadow: 0 2px 0 #6a7a9a; }
.theme-winamp .playlist-nav-btn:hover:not(:disabled) { background: linear-gradient(180deg, #d8e4f4, #c0d0e8); }
.theme-winamp .playlist-nav-btn--play { background: linear-gradient(180deg, #4488cc, #2266aa); border-color: #1a5599; color: #fff; box-shadow: 0 2px 0 #1a4488; }
.theme-winamp .playlist-option { color: #1a2a4c; }
.theme-winamp .playlist-option i { color: #4488cc; }
.theme-winamp .format-support { background: #0a0a14; border-color: #225588; }
.theme-winamp .format-support__header { background: #111420; }
.theme-winamp .format-support__title { color: #88aadd; font-family: 'Courier New', monospace; }
.theme-winamp .format-card { background: #111420; }
.theme-winamp .format-card__title { color: #88aadd; }
.theme-winamp .format-item { background: #1a2030; }
.theme-winamp .format-item__name { color: #446688; }
.theme-winamp .playlist-tip { background: linear-gradient(180deg, #c8d4e8, #b8c8e0); border-color: #8898b8; }
.theme-winamp .playlist-tip__icon { background: linear-gradient(180deg, #4488cc, #2266aa); }
.theme-winamp .playlist-tip__title { color: #1a2a4c; font-family: 'Courier New', monospace; }
.theme-winamp .playlist-tip__text { color: #2a3a5c; }
.theme-winamp .playlist-tip__text a { color: #2266aa; }
.theme-winamp .playlist-tip__divider { background: linear-gradient(90deg, #8898b8, transparent); }
.theme-winamp .theme-switcher { background: linear-gradient(180deg, #c8d4e8, #b8c8e0); border-color: #8898b8; }
.theme-winamp .theme-switcher__label { color: #1a2a4c; }
.theme-winamp .theme-switcher__btn { background: linear-gradient(180deg, #d8e4f4, #b8c8e0); border-color: #8898b8; color: #1a2a4c; border-radius: 3px; box-shadow: 0 2px 0 #8898b8; }
.theme-winamp .theme-switcher__btn:hover { border-color: #4488cc; color: #2266aa; transform: none; box-shadow: 0 1px 0 #8898b8; }
.theme-winamp .theme-switcher__btn.active { background: linear-gradient(180deg, #4488cc, #2266aa); border-color: transparent; color: #fff; box-shadow: 0 2px 0 #1a4488; }
.theme-winamp .theme-switcher__see-more { background: linear-gradient(180deg, #c8d4e8, #b0bfd8); border-color: #8898b8; color: #1a2a4c; border-radius: 3px; }

/* ==========================================================
   SKIN: SPACE MISSION  — deep navy, mission-blue glow
   ========================================================== */
.theme-space .player-container { background: #070d1a; border-color: #0d1525; }
.theme-space .hero-section { background: radial-gradient(ellipse at top, #1a2a4a 0%, #070d1a 70%); }
.theme-space .hero-section__title { color: #fff; letter-spacing: 2px; text-transform: uppercase; font-size: 1rem; }
.theme-space .hero-section__subtitle { color: rgba(100,153,255,0.7); }
.theme-space .hero-section__icon { background: rgba(100,153,255,0.1); border: 1px solid rgba(100,153,255,0.2); }
.theme-space .drop-zone { background: #0a1020; border-color: #1a2840; }
.theme-space .drop-zone:hover { border-color: #6699ff; background: #0d1428; }
.theme-space .drop-zone__icon { color: #6699ff; }
.theme-space .drop-zone__title { color: #aabbff; letter-spacing: 1px; text-transform: uppercase; }
.theme-space .drop-zone__subtitle { color: #445588; }
.theme-space .drop-zone__format { background: #0d1525; border-color: #1a2840; color: #6699ff; }
.theme-space .url-section { background: #0a1020; }
.theme-space .url-input { background: #060c18; border-color: #1a2840; color: #aabbff; }
.theme-space .url-btn { background: linear-gradient(135deg, #3355aa, #2244aa); color: #fff; }
.theme-space .url-btn:hover { background: linear-gradient(135deg, #4466bb, #3355bb); }
.theme-space .divider span { background: #0a1020; color: #334466; }
.theme-space .divider::before, .theme-space .divider::after { background: #1a2840; }
.theme-space .file-info-bar { background: #0d1525; }
.theme-space .file-info-bar__icon { background: rgba(100,153,255,0.15); color: #6699ff; border: 1px solid rgba(100,153,255,0.3); }
.theme-space .file-info-bar__name { color: #aabbff; }
.theme-space .file-info-bar__meta { color: #445588; }
.theme-space .file-info-bar__btn { background: transparent; border-color: rgba(100,153,255,0.3); color: #6699ff; }
.theme-space .audio-container { background: #040810; }
.theme-space .audio-visualizer { background: linear-gradient(180deg, #070d1a, #040810); }
.theme-space .audio-track-title { color: #aabbff; }
.theme-space .audio-track-artist { color: #8899cc; }
.theme-space .viz-top-btn { background: rgba(100,153,255,0.1); color: #6699ff; }
.theme-space .viz-top-btn:hover { background: rgba(100,153,255,0.25); }
.theme-space .viz-top-btn.active { background: linear-gradient(135deg, #3355aa, #2244aa); color: #fff; }
.theme-space .audio-controls { background: #0d1525; border-top: 1px solid #1a2840; }
.theme-space .audio-progress-bar { background: rgba(100,153,255,0.12); }
.theme-space .audio-progress-fill { background: linear-gradient(90deg, #3355aa, #6699ff); }
.theme-space .audio-btn { background: rgba(100,153,255,0.08); color: #6699ff; border: 1px solid rgba(100,153,255,0.15); }
.theme-space .audio-btn:hover { background: rgba(100,153,255,0.2); color: #fff; transform: scale(1.08); }
.theme-space .audio-btn--play { background: linear-gradient(135deg, #3355aa, #2244aa); color: #fff; border: none; box-shadow: 0 4px 15px rgba(50,85,170,0.5); }
.theme-space .audio-btn--play:hover { background: linear-gradient(135deg, #4466bb, #3355bb); }
.theme-space .audio-btn.active { background: linear-gradient(135deg, #3355aa, #2244aa); color: #fff; border-color: transparent; }
.theme-space .audio-volume-slider { background: rgba(100,153,255,0.15); }
.theme-space .audio-volume-slider::-webkit-slider-thumb { background: #6699ff; }
.theme-space .audio-time { color: rgba(100,153,255,0.5); font-family: 'Courier New', monospace; }
.theme-space .audio-speed-btn { background: rgba(100,153,255,0.08); border: 1px solid rgba(100,153,255,0.2); color: #6699ff; }
.theme-space .audio-speed-btn.active { background: linear-gradient(135deg, #3355aa, #2244aa); border-color: transparent; color: #fff; }
.theme-space .audio-speed-menu { background: #0a1020; border: 1px solid #1a2840; }
.theme-space .audio-speed-option { color: #445588; }
.theme-space .audio-speed-option:hover { background: #0d1525; color: #aabbff; }
.theme-space .audio-speed-option.active { color: #6699ff; }
.theme-space .playlist-section { background: #070d1a; border-color: #0d1525; }
.theme-space .playlist-header { background: linear-gradient(135deg, #0d1525, #1a2840); }
.theme-space .playlist-header__title { color: #aabbff; letter-spacing: 1px; }
.theme-space .playlist-header__count { background: rgba(100,153,255,0.15); color: #6699ff; }
.theme-space .playlist-header__btn { background: rgba(100,153,255,0.08); border: 1px solid rgba(100,153,255,0.2); color: #6699ff; }
.theme-space .playlist-header__btn:hover { background: rgba(100,153,255,0.2); }
.theme-space .playlist-body { background: #070d1a; }
.theme-space .playlist-item { background: transparent; border-bottom-color: #0d1525; }
.theme-space .playlist-item:hover { background: rgba(100,153,255,0.05); }
.theme-space .playlist-item.active { background: rgba(50,85,170,0.15); border-left-color: #6699ff; }
.theme-space .playlist-item__name { color: #889aaa; }
.theme-space .playlist-item.active .playlist-item__name { color: #aabbff; }
.theme-space .playlist-item__meta { color: #334466; }
.theme-space .playlist-item__now-playing { color: #6699ff; }
.theme-space .playlist-item__icon { background: #0d1525; color: #445588; }
.theme-space .playlist-item.active .playlist-item__icon { background: #3355aa; color: #fff; }
.theme-space .playlist-nav-btn { background: #0d1525; border-color: #1a2840; color: #6699ff; }
.theme-space .playlist-nav-btn:hover:not(:disabled) { background: rgba(100,153,255,0.15); border-color: #6699ff; }
.theme-space .playlist-nav-btn--play { background: linear-gradient(135deg, #3355aa, #2244aa); border-color: transparent; color: #fff; }
.theme-space .playlist-option { color: #445588; }
.theme-space .playlist-option i { color: #6699ff; }
.theme-space .format-support { background: #070d1a; border-color: #0d1525; }
.theme-space .format-support__header { background: #0d1525; }
.theme-space .format-support__title { color: #aabbff; }
.theme-space .format-card { background: #0d1525; }
.theme-space .format-card__title { color: #aabbff; }
.theme-space .format-item { background: #1a2840; }
.theme-space .format-item__name { color: #445588; }
.theme-space .playlist-tip { background: linear-gradient(135deg, #0d1525, #070d1a); border-color: #1a2840; }
.theme-space .playlist-tip__icon { background: linear-gradient(135deg, #3355aa, #2244aa); }
.theme-space .playlist-tip__title { color: #aabbff; }
.theme-space .playlist-tip__text { color: #445588; }
.theme-space .playlist-tip__text a { color: #6699ff; }
.theme-space .playlist-tip__divider { background: linear-gradient(90deg, #1a2840, transparent); }
.theme-space .theme-switcher { background: #0d1525; border-color: #1a2840; }
.theme-space .theme-switcher__label { color: #6699ff; }
.theme-space .theme-switcher__btn { background: #070d1a; border-color: #1a2840; color: #445588; }
.theme-space .theme-switcher__btn:hover { border-color: #6699ff; color: #aabbff; }
.theme-space .theme-switcher__btn.active { background: linear-gradient(135deg, #3355aa, #2244aa); border-color: transparent; color: #fff; }
.theme-space .theme-switcher__see-more { background: #0d1525; border-color: #6699ff; color: #6699ff; }

/* ==========================================================
   SKIN: NEON CIRCUIT  — black, electric lime
   ========================================================== */
.theme-neon .player-container { background: #050a05; border: 1px solid rgba(170,255,0,0.15); }
.theme-neon .hero-section { background: #060c06; border-bottom: 1px solid rgba(170,255,0,0.2); }
.theme-neon .hero-section__title { color: #aaff00; letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 0 12px rgba(170,255,0,0.6); }
.theme-neon .hero-section__subtitle { color: rgba(170,255,0,0.5); }
.theme-neon .hero-section__icon { background: rgba(170,255,0,0.08); border: 1px solid rgba(170,255,0,0.2); box-shadow: 0 0 12px rgba(170,255,0,0.1); }
.theme-neon .drop-zone { background: #030803; border-color: rgba(170,255,0,0.15); }
.theme-neon .drop-zone:hover { border-color: #aaff00; background: #050a05; box-shadow: 0 0 20px rgba(170,255,0,0.08) inset; }
.theme-neon .drop-zone__icon { color: #aaff00; }
.theme-neon .drop-zone__title { color: #aaff00; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 8px rgba(170,255,0,0.4); }
.theme-neon .drop-zone__subtitle { color: rgba(170,255,0,0.4); }
.theme-neon .drop-zone__format { background: rgba(170,255,0,0.05); border-color: rgba(170,255,0,0.2); color: #aaff00; }
.theme-neon .url-section { background: #030803; }
.theme-neon .url-input { background: #010401; border-color: rgba(170,255,0,0.2); color: #aaff00; }
.theme-neon .url-input::placeholder { color: rgba(170,255,0,0.3); }
.theme-neon .url-btn { background: #aaff00; color: #050a05; font-weight: 700; }
.theme-neon .url-btn:hover { background: #bbff33; box-shadow: 0 0 15px rgba(170,255,0,0.4); }
.theme-neon .divider span { background: #030803; color: rgba(170,255,0,0.3); }
.theme-neon .divider::before, .theme-neon .divider::after { background: rgba(170,255,0,0.15); }
.theme-neon .file-info-bar { background: #060c06; }
.theme-neon .file-info-bar__icon { background: rgba(170,255,0,0.1); color: #aaff00; border: 1px solid rgba(170,255,0,0.3); }
.theme-neon .file-info-bar__name { color: #aaff00; text-shadow: 0 0 6px rgba(170,255,0,0.3); }
.theme-neon .file-info-bar__meta { color: rgba(170,255,0,0.4); }
.theme-neon .file-info-bar__btn { background: transparent; border-color: rgba(170,255,0,0.3); color: #aaff00; }
.theme-neon .audio-container { background: #010401; }
.theme-neon .audio-visualizer { background: #010401; }
.theme-neon .audio-track-title { color: #aaff00; text-shadow: 0 0 8px rgba(170,255,0,0.4); }
.theme-neon .audio-track-artist { color: rgba(170,255,0,0.7); }
.theme-neon .viz-top-btn { background: rgba(170,255,0,0.08); color: #aaff00; }
.theme-neon .viz-top-btn:hover { background: rgba(170,255,0,0.2); box-shadow: 0 0 10px rgba(170,255,0,0.2); }
.theme-neon .viz-top-btn.active { background: #aaff00; color: #050a05; }
.theme-neon .audio-controls { background: #060c06; border-top: 1px solid rgba(170,255,0,0.1); }
.theme-neon .audio-progress-bar { background: rgba(170,255,0,0.1); }
.theme-neon .audio-progress-fill { background: #aaff00; box-shadow: 0 0 8px rgba(170,255,0,0.5); }
.theme-neon .audio-btn { background: rgba(170,255,0,0.06); color: rgba(170,255,0,0.5); border: 1px solid rgba(170,255,0,0.12); border-radius: 4px; }
.theme-neon .audio-btn:hover { background: rgba(170,255,0,0.15); color: #aaff00; transform: none; }
.theme-neon .audio-btn--play { background: #aaff00; color: #050a05; border: none; font-weight: 900; box-shadow: 0 0 20px rgba(170,255,0,0.4), 0 4px 12px rgba(0,0,0,0.3); border-radius: 50%; }
.theme-neon .audio-btn--play:hover { background: #bbff33; box-shadow: 0 0 25px rgba(170,255,0,0.6); }
.theme-neon .audio-btn.active { background: rgba(170,255,0,0.15); color: #aaff00; border-color: rgba(170,255,0,0.4); }
.theme-neon .audio-volume-slider { background: rgba(170,255,0,0.12); }
.theme-neon .audio-volume-slider::-webkit-slider-thumb { background: #aaff00; box-shadow: 0 0 6px rgba(170,255,0,0.5); }
.theme-neon .audio-time { color: rgba(170,255,0,0.4); font-family: 'Courier New', monospace; }
.theme-neon .audio-speed-btn { background: rgba(170,255,0,0.06); border: 1px solid rgba(170,255,0,0.2); color: rgba(170,255,0,0.7); }
.theme-neon .audio-speed-btn.active { background: #aaff00; border-color: #aaff00; color: #050a05; }
.theme-neon .audio-speed-menu { background: #010401; border: 1px solid rgba(170,255,0,0.15); }
.theme-neon .audio-speed-option { color: rgba(170,255,0,0.4); }
.theme-neon .audio-speed-option:hover { background: rgba(170,255,0,0.08); color: #aaff00; }
.theme-neon .audio-speed-option.active { color: #aaff00; }
.theme-neon .playlist-section { background: #050a05; border-color: rgba(170,255,0,0.12); }
.theme-neon .playlist-header { background: #060c06; border-bottom: 1px solid rgba(170,255,0,0.15); }
.theme-neon .playlist-header__title { color: #aaff00; text-shadow: 0 0 8px rgba(170,255,0,0.3); }
.theme-neon .playlist-header__count { background: rgba(170,255,0,0.1); color: #aaff00; }
.theme-neon .playlist-header__btn { background: rgba(170,255,0,0.06); border: 1px solid rgba(170,255,0,0.2); color: #aaff00; }
.theme-neon .playlist-header__btn:hover { background: rgba(170,255,0,0.15); }
.theme-neon .playlist-body { background: #050a05; }
.theme-neon .playlist-item { background: transparent; border-bottom-color: rgba(170,255,0,0.06); }
.theme-neon .playlist-item:hover { background: rgba(170,255,0,0.04); }
.theme-neon .playlist-item.active { background: rgba(170,255,0,0.08); border-left-color: #aaff00; }
.theme-neon .playlist-item__name { color: rgba(170,255,0,0.6); }
.theme-neon .playlist-item.active .playlist-item__name { color: #aaff00; text-shadow: 0 0 6px rgba(170,255,0,0.3); }
.theme-neon .playlist-item__meta { color: rgba(170,255,0,0.25); }
.theme-neon .playlist-item__now-playing { color: #aaff00; }
.theme-neon .playlist-item__icon { background: rgba(170,255,0,0.06); color: rgba(170,255,0,0.4); border-radius: 4px; }
.theme-neon .playlist-item.active .playlist-item__icon { background: #aaff00; color: #050a05; }
.theme-neon .playlist-nav-btn { background: rgba(170,255,0,0.06); border-color: rgba(170,255,0,0.2); color: rgba(170,255,0,0.7); border-radius: 4px; }
.theme-neon .playlist-nav-btn:hover:not(:disabled) { background: rgba(170,255,0,0.15); border-color: #aaff00; color: #aaff00; }
.theme-neon .playlist-nav-btn--play { background: #aaff00; border-color: #aaff00; color: #050a05; font-weight: 700; }
.theme-neon .playlist-option { color: rgba(170,255,0,0.4); }
.theme-neon .playlist-option i { color: #aaff00; }
.theme-neon .format-support { background: #050a05; border-color: rgba(170,255,0,0.12); }
.theme-neon .format-support__header { background: #060c06; }
.theme-neon .format-support__title { color: #aaff00; }
.theme-neon .format-card { background: #060c06; }
.theme-neon .format-card__title { color: #aaff00; }
.theme-neon .format-item { background: rgba(170,255,0,0.05); }
.theme-neon .format-item__name { color: rgba(170,255,0,0.4); }
.theme-neon .playlist-tip { background: #060c06; border-color: rgba(170,255,0,0.15); }
.theme-neon .playlist-tip__icon { background: #aaff00; box-shadow: 0 2px 8px rgba(170,255,0,0.3); }
.theme-neon .playlist-tip__icon i { color: #050a05; }
.theme-neon .playlist-tip__title { color: #aaff00; }
.theme-neon .playlist-tip__text { color: rgba(170,255,0,0.4); }
.theme-neon .playlist-tip__text a { color: #aaff00; }
.theme-neon .playlist-tip__divider { background: linear-gradient(90deg, rgba(170,255,0,0.2), transparent); }
.theme-neon .theme-switcher { background: #060c06; border-color: rgba(170,255,0,0.15); }
.theme-neon .theme-switcher__label { color: rgba(170,255,0,0.7); }
.theme-neon .theme-switcher__btn { background: rgba(170,255,0,0.05); border-color: rgba(170,255,0,0.15); color: rgba(170,255,0,0.5); border-radius: 4px; }
.theme-neon .theme-switcher__btn:hover { border-color: #aaff00; color: #aaff00; transform: none; box-shadow: 0 0 8px rgba(170,255,0,0.2); }
.theme-neon .theme-switcher__btn.active { background: #aaff00; border-color: transparent; color: #050a05; }
.theme-neon .theme-switcher__see-more { background: rgba(170,255,0,0.05); border-color: rgba(170,255,0,0.4); color: #aaff00; border-radius: 4px; }

/* ==========================================================
   SKIN: MOONDUST  — dark steel blue, soft teal
   ========================================================== */
.theme-moondust .player-container { background: #1a2030; border-color: #222a3a; }
.theme-moondust .hero-section { background: linear-gradient(135deg, #243040, #1a2030); }
.theme-moondust .hero-section__title { color: #e0e8f0; font-weight: 300; }
.theme-moondust .hero-section__subtitle { color: rgba(112,200,216,0.6); }
.theme-moondust .hero-section__icon { background: rgba(112,200,216,0.1); }
.theme-moondust .drop-zone { background: #141c28; border-color: #2a3550; }
.theme-moondust .drop-zone:hover { border-color: #70c8d8; }
.theme-moondust .drop-zone__icon { color: #70c8d8; }
.theme-moondust .drop-zone__title { color: #c0d8e0; }
.theme-moondust .drop-zone__subtitle { color: #4a6070; }
.theme-moondust .drop-zone__format { background: #1a2438; border-color: #2a3550; color: #70c8d8; }
.theme-moondust .url-section { background: #141c28; }
.theme-moondust .url-input { background: #0e1622; border-color: #2a3550; color: #c0d8e0; }
.theme-moondust .url-btn { background: linear-gradient(135deg, #3a8a9a, #2a7080); color: #fff; }
.theme-moondust .url-btn:hover { background: linear-gradient(135deg, #4a9aaa, #3a8090); }
.theme-moondust .divider span { background: #141c28; color: #3a5060; }
.theme-moondust .divider::before, .theme-moondust .divider::after { background: #2a3550; }
.theme-moondust .file-info-bar { background: #1a2438; }
.theme-moondust .file-info-bar__icon { background: rgba(112,200,216,0.15); color: #70c8d8; }
.theme-moondust .file-info-bar__name { color: #c0d8e0; }
.theme-moondust .file-info-bar__meta { color: #4a6070; }
.theme-moondust .file-info-bar__btn { background: transparent; border-color: rgba(112,200,216,0.3); color: #70c8d8; }
.theme-moondust .audio-container { background: #101820; }
.theme-moondust .audio-visualizer { background: linear-gradient(180deg, #0e1620, #0a1018); }
.theme-moondust .audio-track-title { color: #c0d8e0; }
.theme-moondust .audio-track-artist { color: #70c8d8; }
.theme-moondust .viz-top-btn { background: rgba(112,200,216,0.1); color: #70c8d8; }
.theme-moondust .viz-top-btn:hover { background: rgba(112,200,216,0.25); }
.theme-moondust .viz-top-btn.active { background: linear-gradient(135deg, #3a8a9a, #2a7080); color: #fff; }
.theme-moondust .audio-controls { background: #1a2030; border-top: 1px solid #283040; }
.theme-moondust .audio-progress-bar { background: rgba(112,200,216,0.12); }
.theme-moondust .audio-progress-fill { background: linear-gradient(90deg, #3a8a9a, #70c8d8); }
.theme-moondust .audio-btn { background: rgba(112,200,216,0.08); color: rgba(112,200,216,0.6); border: 1px solid rgba(112,200,216,0.12); }
.theme-moondust .audio-btn:hover { background: rgba(112,200,216,0.18); color: #70c8d8; transform: scale(1.08); }
.theme-moondust .audio-btn--play { background: linear-gradient(135deg, #3a8a9a, #2a7080); color: #fff; border: none; box-shadow: 0 4px 15px rgba(58,138,154,0.4); }
.theme-moondust .audio-btn.active { background: rgba(112,200,216,0.2); color: #70c8d8; border-color: rgba(112,200,216,0.3); }
.theme-moondust .audio-volume-slider { background: rgba(112,200,216,0.15); }
.theme-moondust .audio-volume-slider::-webkit-slider-thumb { background: #70c8d8; }
.theme-moondust .audio-time { color: rgba(112,200,216,0.45); }
.theme-moondust .audio-speed-btn { background: rgba(112,200,216,0.08); border: 1px solid rgba(112,200,216,0.2); color: rgba(112,200,216,0.7); }
.theme-moondust .audio-speed-btn.active { background: linear-gradient(135deg, #3a8a9a, #2a7080); border-color: transparent; color: #fff; }
.theme-moondust .audio-speed-menu { background: #141c28; border: 1px solid #2a3550; }
.theme-moondust .audio-speed-option { color: #4a6070; }
.theme-moondust .audio-speed-option:hover { background: #1a2438; color: #70c8d8; }
.theme-moondust .audio-speed-option.active { color: #70c8d8; }
.theme-moondust .playlist-section { background: #1a2030; border-color: #222a3a; }
.theme-moondust .playlist-header { background: linear-gradient(135deg, #1e2838, #283848); }
.theme-moondust .playlist-header__title { color: #c0d8e0; }
.theme-moondust .playlist-header__count { background: rgba(112,200,216,0.15); color: #70c8d8; }
.theme-moondust .playlist-header__btn { background: rgba(112,200,216,0.08); border: 1px solid rgba(112,200,216,0.2); color: #70c8d8; }
.theme-moondust .playlist-body { background: #161e2c; }
.theme-moondust .playlist-item { background: transparent; border-bottom-color: #1e2838; }
.theme-moondust .playlist-item:hover { background: rgba(112,200,216,0.05); }
.theme-moondust .playlist-item.active { background: rgba(58,138,154,0.12); border-left-color: #70c8d8; }
.theme-moondust .playlist-item__name { color: #7a9aaa; }
.theme-moondust .playlist-item.active .playlist-item__name { color: #c0d8e0; }
.theme-moondust .playlist-item__meta { color: #3a5060; }
.theme-moondust .playlist-item__now-playing { color: #70c8d8; }
.theme-moondust .playlist-item__icon { background: #1e2838; color: #3a5060; }
.theme-moondust .playlist-item.active .playlist-item__icon { background: #3a8a9a; color: #fff; }
.theme-moondust .playlist-nav-btn { background: #1e2838; border-color: #2a3550; color: #70c8d8; }
.theme-moondust .playlist-nav-btn:hover:not(:disabled) { background: rgba(112,200,216,0.15); border-color: #70c8d8; }
.theme-moondust .playlist-nav-btn--play { background: linear-gradient(135deg, #3a8a9a, #2a7080); border-color: transparent; color: #fff; }
.theme-moondust .playlist-option { color: #4a6070; }
.theme-moondust .playlist-option i { color: #70c8d8; }
.theme-moondust .format-support { background: #1a2030; border-color: #222a3a; }
.theme-moondust .format-support__header { background: #1e2838; }
.theme-moondust .format-support__title { color: #c0d8e0; }
.theme-moondust .format-card { background: #1e2838; }
.theme-moondust .format-card__title { color: #c0d8e0; }
.theme-moondust .format-item { background: #283848; }
.theme-moondust .format-item__name { color: #4a6070; }
.theme-moondust .playlist-tip { background: linear-gradient(135deg, #1e2838, #1a2030); border-color: #2a3550; }
.theme-moondust .playlist-tip__icon { background: linear-gradient(135deg, #3a8a9a, #2a7080); }
.theme-moondust .playlist-tip__title { color: #c0d8e0; }
.theme-moondust .playlist-tip__text { color: #4a6070; }
.theme-moondust .playlist-tip__text a { color: #70c8d8; }
.theme-moondust .playlist-tip__divider { background: linear-gradient(90deg, #2a3550, transparent); }
.theme-moondust .theme-switcher { background: #1e2838; border-color: #2a3550; }
.theme-moondust .theme-switcher__label { color: #70c8d8; }
.theme-moondust .theme-switcher__btn { background: #1a2030; border-color: #2a3550; color: #4a6070; }
.theme-moondust .theme-switcher__btn:hover { border-color: #70c8d8; color: #c0d8e0; }
.theme-moondust .theme-switcher__btn.active { background: linear-gradient(135deg, #3a8a9a, #2a7080); border-color: transparent; color: #fff; }
.theme-moondust .theme-switcher__see-more { background: #1a2030; border-color: #70c8d8; color: #70c8d8; }

/* ==========================================================
   SKIN: OCEAN WAVE  — sky blue, clean white, deep navy viz
   ========================================================== */
.theme-ocean .player-container { background: #f0f8ff; border-color: #c0d8f0; }
.theme-ocean .hero-section { background: linear-gradient(135deg, #1a6090, #1a90c0); }
.theme-ocean .drop-zone { background: linear-gradient(135deg, #f0f8ff, #e0f0f8); border-color: #a0c8e0; }
.theme-ocean .drop-zone:hover { border-color: #1a90c0; background: #e8f4fc; }
.theme-ocean .drop-zone__icon { color: #1a6090; }
.theme-ocean .drop-zone__title { color: #1a4060; }
.theme-ocean .drop-zone__subtitle { color: #5090b0; }
.theme-ocean .drop-zone__format { background: #fff; border-color: #a0c8e0; color: #1a6090; }
.theme-ocean .drop-zone__format--video, .theme-ocean .drop-zone__format--audio { border-color: #1a6090; }
.theme-ocean .url-section { background: linear-gradient(135deg, #e0f0f8, #d0e8f0); }
.theme-ocean .url-input { background: #fff; border-color: #a0c8e0; color: #1a4060; }
.theme-ocean .url-btn { background: linear-gradient(135deg, #1a6090, #1a90c0); color: #fff; }
.theme-ocean .url-btn:hover { background: linear-gradient(135deg, #2070a0, #1a9ccc); }
.theme-ocean .divider span { background: linear-gradient(135deg, #e0f0f8, #d0e8f0); color: #70a0b8; }
.theme-ocean .divider::before, .theme-ocean .divider::after { background: #a0c8e0; }
.theme-ocean .file-info-bar { background: linear-gradient(135deg, #ddeeff, #d0e8f8); }
.theme-ocean .file-info-bar__icon { background: linear-gradient(135deg, #1a6090, #1a90c0); }
.theme-ocean .file-info-bar__name { color: #1a4060; }
.theme-ocean .file-info-bar__meta { color: #5090b0; }
.theme-ocean .file-info-bar__btn { background: #fff; border-color: #a0c8e0; color: #1a6090; }
.theme-ocean .file-info-bar__btn:hover { background: linear-gradient(135deg, #1a6090, #1a90c0); color: #fff; border-color: transparent; }
.theme-ocean .audio-container { background: linear-gradient(180deg, #001830, #002440); }
.theme-ocean .audio-visualizer { background: linear-gradient(180deg, #001830, #001020); }
.theme-ocean .audio-track-title { color: #fff; }
.theme-ocean .audio-track-artist { color: #88c8e8; }
.theme-ocean .viz-top-btn { background: rgba(26,144,192,0.2); color: #88c8e8; }
.theme-ocean .viz-top-btn:hover { background: rgba(26,144,192,0.4); }
.theme-ocean .viz-top-btn.active { background: linear-gradient(135deg, #1a6090, #1a90c0); color: #fff; }
.theme-ocean .audio-controls { background: #f0f8ff; border-top: 1px solid #c0d8f0; }
.theme-ocean .audio-progress-bar { background: #b0d0e8; }
.theme-ocean .audio-progress-fill { background: linear-gradient(90deg, #1a6090, #1a90c0); }
.theme-ocean .audio-btn { background: #fff; color: #1a6090; border: 1px solid #b0d0e8; box-shadow: 0 2px 4px rgba(0,0,0,0.06); }
.theme-ocean .audio-btn:hover { background: #e0f0f8; color: #1a4060; transform: scale(1.08); }
.theme-ocean .audio-btn--play { background: linear-gradient(135deg, #1a6090, #1a90c0); color: #fff; border: none; box-shadow: 0 4px 12px rgba(26,96,144,0.35); }
.theme-ocean .audio-btn--play:hover { background: linear-gradient(135deg, #2070a0, #1a9ccc); }
.theme-ocean .audio-btn.active { background: linear-gradient(135deg, #1a6090, #1a90c0); color: #fff; border-color: transparent; }
.theme-ocean .audio-volume-slider { background: #b0d0e8; }
.theme-ocean .audio-volume-slider::-webkit-slider-thumb { background: linear-gradient(135deg, #1a6090, #1a90c0); }
.theme-ocean .audio-time { color: #5090b0; }
.theme-ocean .audio-speed-btn { background: #fff; border: 1px solid #b0d0e8; color: #1a6090; }
.theme-ocean .audio-speed-btn.active { background: linear-gradient(135deg, #1a6090, #1a90c0); border-color: transparent; color: #fff; }
.theme-ocean .audio-speed-menu { background: #fff; border: 1px solid #b0d0e8; box-shadow: 0 4px 15px rgba(26,96,144,0.15); }
.theme-ocean .audio-speed-option { color: #5090b0; }
.theme-ocean .audio-speed-option:hover { background: #e0f0f8; color: #1a4060; }
.theme-ocean .audio-speed-option.active { color: #1a6090; }
.theme-ocean .playlist-section { background: #f0f8ff; border-color: #c0d8f0; }
.theme-ocean .playlist-header { background: linear-gradient(135deg, #1a6090, #1a90c0); }
.theme-ocean .playlist-body { background: #f8fcff; }
.theme-ocean .playlist-item { background: #fff; border-bottom-color: #e0f0f8; }
.theme-ocean .playlist-item:hover { background: #e8f4fc; }
.theme-ocean .playlist-item.active { background: linear-gradient(90deg, #d0e8f8, #e8f4fc); border-left-color: #1a90c0; }
.theme-ocean .playlist-item__name { color: #1a4060; }
.theme-ocean .playlist-item.active .playlist-item__name { color: #1a6090; }
.theme-ocean .playlist-item__meta { color: #70a0b8; }
.theme-ocean .playlist-item__now-playing { color: #1a6090; }
.theme-ocean .playlist-item__icon { background: #d0e8f8; color: #5090b0; }
.theme-ocean .playlist-item.active .playlist-item__icon { background: linear-gradient(135deg, #1a6090, #1a90c0); color: #fff; }
.theme-ocean .playlist-nav-btn { background: #fff; border-color: #b0d0e8; color: #1a6090; box-shadow: 0 1px 3px rgba(26,96,144,0.1); }
.theme-ocean .playlist-nav-btn:hover:not(:disabled) { background: linear-gradient(135deg, #1a6090, #1a90c0); color: #fff; border-color: transparent; }
.theme-ocean .playlist-nav-btn--play { background: linear-gradient(135deg, #1a6090, #1a90c0); border-color: transparent; color: #fff; }
.theme-ocean .playlist-option { color: #5090b0; }
.theme-ocean .playlist-option i { color: #1a90c0; }
.theme-ocean .format-support { background: #f0f8ff; border-color: #c0d8f0; }
.theme-ocean .format-support__header { background: #e0f0f8; }
.theme-ocean .format-support__title { color: #1a4060; }
.theme-ocean .format-card { background: #fff; }
.theme-ocean .format-card__title { color: #1a4060; }
.theme-ocean .format-item { background: #e0f0f8; }
.theme-ocean .format-item__name { color: #5090b0; }
.theme-ocean .playlist-tip { background: linear-gradient(135deg, #e0f0f8, #d8ecf8); border-color: #a0c8e0; }
.theme-ocean .playlist-tip__icon { background: linear-gradient(135deg, #1a6090, #1a90c0); }
.theme-ocean .playlist-tip__title { color: #1a4060; }
.theme-ocean .playlist-tip__text { color: #4a7090; }
.theme-ocean .playlist-tip__text a { color: #1a6090; }
.theme-ocean .playlist-tip__divider { background: linear-gradient(90deg, #a0c8e0, transparent); }
.theme-ocean .theme-switcher { background: linear-gradient(135deg, #e8f4fc, #d8eef8); border-color: #a0c8e0; }
.theme-ocean .theme-switcher__label { color: #1a4060; }
.theme-ocean .theme-switcher__btn { background: #fff; border-color: #b0d0e8; color: #1a6090; box-shadow: 0 1px 3px rgba(26,96,144,0.1); }
.theme-ocean .theme-switcher__btn:hover { border-color: #1a90c0; color: #1a4060; box-shadow: 0 2px 6px rgba(26,96,144,0.15); }
.theme-ocean .theme-switcher__btn.active { background: linear-gradient(135deg, #1a6090, #1a90c0); border-color: transparent; color: #fff; }
.theme-ocean .theme-switcher__see-more { background: #fff; border-color: #1a90c0; color: #1a6090; }

/* VU Meter, Game Handheld — concise overrides (accent colours only) */
/* ==========================================================
   SKIN: VU METER ANALOG  — warm amber, brushed aluminium controls
   ========================================================== */
.theme-vu .player-container { background: #2a1f14; border-color: #4a3020; }
.theme-vu .hero-section { background: linear-gradient(180deg, #3a2d20, #2a1f14); border-bottom: 2px solid #6a4a2a; }
.theme-vu .hero-section__title { color: #e8c87a; font-family: 'Courier New', monospace; text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; text-shadow: 0 0 8px rgba(232,200,122,0.4); }
.theme-vu .hero-section__subtitle { color: rgba(232,132,77,0.6); font-family: 'Courier New', monospace; }
.theme-vu .hero-section__icon { background: #4a3020; border: 1px solid #6a4a2a; }
.theme-vu .drop-zone { background: #1a1008; border-color: #3a2a18; }
.theme-vu .drop-zone:hover { border-color: #e8844d; }
.theme-vu .drop-zone__icon { color: #e8844d; }
.theme-vu .drop-zone__title { color: #e8c87a; font-family: 'Courier New', monospace; }
.theme-vu .drop-zone__subtitle { color: #6a5040; }
.theme-vu .drop-zone__format { background: #2a1a08; border-color: #4a3020; color: #e8844d; }
.theme-vu .url-section { background: #1a1008; }
.theme-vu .url-input { background: #100a04; border-color: #3a2a18; color: #e8c87a; font-family: 'Courier New', monospace; }
.theme-vu .url-btn { background: linear-gradient(180deg, #f08050, #d06030); color: #fff; border: 1px solid #b04020; }
.theme-vu .divider span { background: #1a1008; color: #6a5040; }
.theme-vu .divider::before, .theme-vu .divider::after { background: #3a2a18; }
.theme-vu .file-info-bar { background: linear-gradient(135deg, #3a2d20, #2a1f14); }
.theme-vu .file-info-bar__icon { background: linear-gradient(135deg, #e8844d, #c85a28); }
.theme-vu .file-info-bar__name { color: #e8c87a; font-family: 'Courier New', monospace; }
.theme-vu .file-info-bar__meta { color: #6a5040; }
.theme-vu .audio-container { background: linear-gradient(180deg, #1a1008, #0a0804); }
.theme-vu .audio-visualizer { background: linear-gradient(180deg, #0a0804, #060402); }
.theme-vu .audio-track-title { color: #e8c87a; font-family: 'Courier New', monospace; text-shadow: 0 0 6px rgba(232,200,122,0.3); }
.theme-vu .audio-track-artist { color: #e8844d; }
.theme-vu .viz-top-btn { background: rgba(232,132,77,0.15); color: #e8844d; }
.theme-vu .viz-top-btn.active { background: linear-gradient(135deg, #e8844d, #c85a28); color: #fff; }
.theme-vu .audio-controls { background: linear-gradient(180deg, #c5b8a0, #b0a090); border-top: 3px solid #d8c8a8; }
.theme-vu .audio-progress-bar { background: #8a7a60; border-radius: 0; }
.theme-vu .audio-progress-fill { background: linear-gradient(90deg, #e8844d, #f0a060); border-radius: 0; box-shadow: 0 0 4px rgba(232,132,77,0.4); }
.theme-vu .audio-btn { background: linear-gradient(180deg, #e0d8c8, #c8c0b0); color: #3a2a18; border: 1px solid #9a8a70; border-radius: 3px; box-shadow: 0 2px 0 #7a6a50; }
.theme-vu .audio-btn:hover { background: linear-gradient(180deg, #ece4d4, #d4ccbc); transform: none; box-shadow: 0 1px 0 #7a6a50; }
.theme-vu .audio-btn--play { background: linear-gradient(180deg, #f08050, #d06030); color: #fff; border-radius: 3px; box-shadow: 0 3px 0 #a03010; }
.theme-vu .audio-btn--play:hover { background: linear-gradient(180deg, #f89060, #e07040); }
.theme-vu .audio-btn.active { background: linear-gradient(180deg, #f08050, #d06030); color: #fff; border-color: transparent; }
.theme-vu .audio-volume-slider { background: #8a7a60; }
.theme-vu .audio-volume-slider::-webkit-slider-thumb { background: linear-gradient(180deg, #e0d8c8, #c8c0b0); border: 1px solid #9a8a70; }
.theme-vu .audio-time { color: #4a3a28; font-family: 'Courier New', monospace; }
.theme-vu .audio-speed-btn { background: linear-gradient(180deg, #c8c0b0, #b8b0a0); border: 1px solid #9a8a70; color: #3a2a18; border-radius: 3px; }
.theme-vu .audio-speed-btn.active { background: linear-gradient(180deg, #f08050, #d06030); border-color: transparent; color: #fff; }
.theme-vu .audio-speed-menu { background: #2a1f14; border: 1px solid #4a3020; }
.theme-vu .audio-speed-option { color: #8a6a50; }
.theme-vu .audio-speed-option:hover { background: #3a2a18; color: #e8c87a; }
.theme-vu .audio-speed-option.active { color: #e8844d; }
.theme-vu .playlist-section { background: #2a1f14; border-color: #4a3020; }
.theme-vu .playlist-header { background: linear-gradient(135deg, #4a3020, #3a2010); }
.theme-vu .playlist-header__title { color: #e8c87a; font-family: 'Courier New', monospace; }
.theme-vu .playlist-header__count { background: rgba(232,132,77,0.2); color: #e8844d; }
.theme-vu .playlist-body { background: #1e1608; }
.theme-vu .playlist-item { background: transparent; border-bottom-color: #3a2818; }
.theme-vu .playlist-item:hover { background: rgba(232,132,77,0.06); }
.theme-vu .playlist-item.active { background: rgba(232,132,77,0.12); border-left-color: #e8844d; }
.theme-vu .playlist-item__name { color: #a08060; font-family: 'Courier New', monospace; font-size: 0.82rem; }
.theme-vu .playlist-item.active .playlist-item__name { color: #e8c87a; }
.theme-vu .playlist-item__meta { color: #5a4030; }
.theme-vu .playlist-item__now-playing { color: #e8844d; }
.theme-vu .playlist-item__icon { background: #3a2818; color: #7a5a40; border-radius: 3px; }
.theme-vu .playlist-item.active .playlist-item__icon { background: linear-gradient(135deg, #e8844d, #c85a28); color: #fff; }
.theme-vu .playlist-nav-btn { background: linear-gradient(180deg, #c8c0b0, #b0a890); border-color: #9a8a70; color: #3a2a18; border-radius: 3px; box-shadow: 0 2px 0 #8a7a60; }
.theme-vu .playlist-nav-btn:hover:not(:disabled) { background: linear-gradient(180deg, #d4ccbc, #c0b8a8); }
.theme-vu .playlist-nav-btn--play { background: linear-gradient(180deg, #f08050, #d06030); border-color: transparent; color: #fff; box-shadow: 0 2px 0 #a03010; }
.theme-vu .playlist-option { color: #7a5a40; }
.theme-vu .playlist-option i { color: #e8844d; }
.theme-vu .format-support { background: #2a1f14; border-color: #4a3020; }
.theme-vu .format-support__header { background: #3a2a18; }
.theme-vu .format-support__title { color: #e8c87a; font-family: 'Courier New', monospace; }
.theme-vu .format-card { background: #2a2010; }
.theme-vu .format-card__title { color: #e8c87a; }
.theme-vu .format-item { background: #3a2818; }
.theme-vu .format-item__name { color: #6a5040; }
.theme-vu .playlist-tip { background: linear-gradient(135deg, #3a2d20, #2a1f14); border-color: #4a3020; }
.theme-vu .playlist-tip__icon { background: linear-gradient(135deg, #e8844d, #c85a28); }
.theme-vu .playlist-tip__title { color: #e8c87a; font-family: 'Courier New', monospace; }
.theme-vu .playlist-tip__text { color: #8a6a50; }
.theme-vu .playlist-tip__text a { color: #e8844d; }
.theme-vu .playlist-tip__divider { background: linear-gradient(90deg, #4a3020, transparent); }
.theme-vu .theme-switcher { background: linear-gradient(180deg, #c8c0b0, #b8b0a0); border-color: #9a8a70; }
.theme-vu .theme-switcher__label { color: #3a2a18; font-family: 'Courier New', monospace; }
.theme-vu .theme-switcher__btn { background: linear-gradient(180deg, #d8d0c0, #c0b8a8); border-color: #9a8a70; color: #3a2a18; border-radius: 3px; box-shadow: 0 2px 0 #8a7a60; }
.theme-vu .theme-switcher__btn:hover { border-color: #e8844d; color: #c85a28; transform: none; }
.theme-vu .theme-switcher__btn.active { background: linear-gradient(180deg, #f08050, #d06030); border-color: transparent; color: #fff; box-shadow: 0 2px 0 #a03010; }
.theme-vu .theme-switcher__see-more { background: linear-gradient(180deg, #c8c0b0, #b0a890); border-color: #e8844d; color: #3a2a18; border-radius: 3px; }

/* ==========================================================
   SKIN: GAME HANDHELD  — light grey/beige, LCD green screen
   ========================================================== */
.theme-handheld .player-container { background: #c8c5bc; border-color: #a8a5a0; }
.theme-handheld .hero-section { background: linear-gradient(180deg, #d8d5cc, #c8c5bc); border-bottom: 2px solid #a8a5a0; }
.theme-handheld .hero-section__title { color: #2a2828; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.theme-handheld .hero-section__subtitle { color: #666; font-size: 0.75rem; }
.theme-handheld .hero-section__icon { background: linear-gradient(180deg, #e8e5dc, #d0cdc4); border: 2px solid #b0ada8; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.theme-handheld .hero-section__icon i { color: #4a4848; }
.theme-handheld .drop-zone { background: linear-gradient(135deg, #d8d5cc, #c8c5bc); border-color: #a8a5a0; }
.theme-handheld .drop-zone:hover { border-color: #6a6868; }
.theme-handheld .drop-zone__icon { color: #4a4848; }
.theme-handheld .drop-zone__title { color: #2a2828; }
.theme-handheld .drop-zone__subtitle { color: #7a7878; }
.theme-handheld .drop-zone__format { background: rgba(255,255,255,0.6); border-color: #a0a09c; color: #4a4848; }
.theme-handheld .url-section { background: linear-gradient(180deg, #c8c5bc, #b8b5ac); }
.theme-handheld .url-input { background: #1a1818; border: 2px solid #0a0808; color: #44aa44; font-family: 'Courier New', monospace; }
.theme-handheld .url-input::placeholder { color: #336633; }
.theme-handheld .url-btn { background: linear-gradient(180deg, #cc4444, #aa2222); color: #fff; border-radius: 50%; box-shadow: 0 3px 0 #881818; }
.theme-handheld .divider span { background: linear-gradient(180deg, #c8c5bc, #b8b5ac); color: #7a7878; }
.theme-handheld .divider::before, .theme-handheld .divider::after { background: #a0a09c; }
.theme-handheld .file-info-bar { background: #1a1818; }
.theme-handheld .file-info-bar__icon { background: #0a0808; color: #44aa44; border: 1px solid #336633; border-radius: 3px; }
.theme-handheld .file-info-bar__name { color: #44aa44; font-family: 'Courier New', monospace; }
.theme-handheld .file-info-bar__meta { color: #336633; }
.theme-handheld .file-info-bar__btn { background: linear-gradient(180deg, #d8d5cc, #b8b5ac); color: #3a3838; border: 1px solid #a0a09c; border-radius: 3px; box-shadow: 0 2px 0 #888580; }
.theme-handheld .audio-container { background: #1a1818; }
.theme-handheld .audio-visualizer { background: #0a0a08; border: 3px solid #060606; }
.theme-handheld .audio-track-title { color: #44aa44; font-family: 'Courier New', monospace; text-shadow: 0 0 6px rgba(68,170,68,0.3); }
.theme-handheld .audio-track-artist { color: #33aa33; font-family: 'Courier New', monospace; }
.theme-handheld .viz-top-btn { background: rgba(68,170,68,0.1); color: #44aa44; }
.theme-handheld .viz-top-btn.active { background: #44aa44; color: #050505; }
.theme-handheld .audio-controls { background: linear-gradient(180deg, #c8c5bc, #b8b5ac); border-top: 2px solid #d8d5cc; }
.theme-handheld .audio-progress-bar { background: #8a8a86; border-radius: 0; }
.theme-handheld .audio-progress-fill { background: #4488cc; border-radius: 0; }
.theme-handheld .audio-btn { background: linear-gradient(180deg, #d8d5cc, #b8b5ac); color: #3a3838; border: 1px solid #a0a09c; border-radius: 50%; box-shadow: 0 3px 0 #888580; }
.theme-handheld .audio-btn:hover { background: linear-gradient(180deg, #e4e1d8, #c8c5bc); transform: none; box-shadow: 0 1px 0 #888580; }
.theme-handheld .audio-btn--play { background: linear-gradient(180deg, #cc4444, #aa2222); color: #fff; box-shadow: 0 3px 0 #881818; }
.theme-handheld .audio-btn--play:hover { background: linear-gradient(180deg, #dd5555, #bb3333); }
.theme-handheld .audio-btn.active { background: linear-gradient(180deg, #4488cc, #2266aa); color: #fff; border-color: transparent; box-shadow: 0 1px 0 #1a4488; }
.theme-handheld .audio-volume-slider { background: #a0a09c; }
.theme-handheld .audio-volume-slider::-webkit-slider-thumb { background: linear-gradient(180deg, #d8d5cc, #b8b5ac); border: 1px solid #a0a09c; }
.theme-handheld .audio-time { color: #5a5858; font-family: 'Courier New', monospace; font-size: 0.7rem; }
.theme-handheld .audio-speed-btn { background: linear-gradient(180deg, #c8c5bc, #b0ada8); border: 1px solid #a0a09c; color: #3a3838; border-radius: 3px; box-shadow: 0 2px 0 #888580; }
.theme-handheld .audio-speed-btn.active { background: linear-gradient(180deg, #4488cc, #2266aa); border-color: transparent; color: #fff; }
.theme-handheld .audio-speed-menu { background: #1a1818; border: 2px solid #0a0808; }
.theme-handheld .audio-speed-option { color: #44aa44; font-family: 'Courier New', monospace; }
.theme-handheld .audio-speed-option:hover { background: #111; color: #66cc66; }
.theme-handheld .audio-speed-option.active { color: #88ee88; }
.theme-handheld .playlist-section { background: #c8c5bc; border-color: #a8a5a0; }
.theme-handheld .playlist-header { background: linear-gradient(180deg, #6a6868, #5a5858); }
.theme-handheld .playlist-body { background: #1a1818; }
.theme-handheld .playlist-item { background: #111; border-bottom-color: #222; }
.theme-handheld .playlist-item:hover { background: #1a1a18; }
.theme-handheld .playlist-item.active { background: rgba(68,136,204,0.15); border-left-color: #4488cc; }
.theme-handheld .playlist-item__name { color: #44aa44; font-family: 'Courier New', monospace; font-size: 0.8rem; }
.theme-handheld .playlist-item.active .playlist-item__name { color: #88ee88; }
.theme-handheld .playlist-item__meta { color: #336633; }
.theme-handheld .playlist-item__now-playing { color: #4488cc; }
.theme-handheld .playlist-item__icon { background: #0a0808; color: #44aa44; border-radius: 3px; }
.theme-handheld .playlist-nav-btn { background: linear-gradient(180deg, #d8d5cc, #b8b5ac); border-color: #a0a09c; color: #3a3838; border-radius: 3px; box-shadow: 0 2px 0 #888580; }
.theme-handheld .playlist-nav-btn:hover:not(:disabled) { background: linear-gradient(180deg, #e0ddd4, #c8c5bc); }
.theme-handheld .playlist-nav-btn--play { background: linear-gradient(180deg, #cc4444, #aa2222); border-color: transparent; color: #fff; box-shadow: 0 2px 0 #881818; }
.theme-handheld .playlist-option { color: #5a5858; }
.theme-handheld .playlist-option i { color: #4488cc; }
.theme-handheld .format-support { background: #c8c5bc; border-color: #a8a5a0; }
.theme-handheld .format-support__header { background: #b8b5ac; }
.theme-handheld .format-support__title { color: #2a2828; }
.theme-handheld .format-card { background: #1a1818; }
.theme-handheld .format-card__title { color: #44aa44; font-family: 'Courier New', monospace; }
.theme-handheld .format-item { background: #111; }
.theme-handheld .format-item__name { color: #336633; }
.theme-handheld .playlist-tip { background: linear-gradient(180deg, #d8d5cc, #c8c5bc); border-color: #a8a5a0; }
.theme-handheld .playlist-tip__icon { background: linear-gradient(180deg, #6a6868, #5a5858); }
.theme-handheld .playlist-tip__title { color: #2a2828; }
.theme-handheld .playlist-tip__text { color: #5a5858; }
.theme-handheld .playlist-tip__text a { color: #4488cc; }
.theme-handheld .playlist-tip__divider { background: linear-gradient(90deg, #a0a09c, transparent); }
.theme-handheld .theme-switcher { background: linear-gradient(180deg, #c8c5bc, #b8b5ac); border-color: #a8a5a0; }
.theme-handheld .theme-switcher__label { color: #3a3838; }
.theme-handheld .theme-switcher__btn { background: linear-gradient(180deg, #d8d5cc, #b8b5ac); border-color: #a0a09c; color: #3a3838; border-radius: 3px; box-shadow: 0 2px 0 #888580; }
.theme-handheld .theme-switcher__btn:hover { border-color: #4488cc; color: #2266aa; transform: none; }
.theme-handheld .theme-switcher__btn.active { background: linear-gradient(180deg, #cc4444, #aa2222); border-color: transparent; color: #fff; box-shadow: 0 2px 0 #881818; }
.theme-handheld .theme-switcher__see-more { background: linear-gradient(180deg, #c8c5bc, #b0ada8); border-color: #6a6868; color: #3a3838; border-radius: 3px; box-shadow: 0 2px 0 #888580; }

/* =====================================================================
   SUPPLEMENTAL: playlist-item__index, __icon, __drag etc for new skins
   ===================================================================== */

/* ARCADE */
.theme-arcade .playlist-item__index { background: #4a0808; color: #cc8888; }
.theme-arcade .playlist-item.active .playlist-item__index { background: #c0392b; color: #fff; }
.theme-arcade .playlist-item__icon { background: #3a0808; color: #cc6666; }
.theme-arcade .playlist-item.active .playlist-item__icon { background: #c0392b; color: #fff; }
.theme-arcade .playlist-item__duration { color: #884444; }
.theme-arcade .playlist-item__drag { color: #664444; }
.theme-arcade .playlist-item__fav { color: #664444; }
.theme-arcade .playlist-item__remove { color: #664444; }
.theme-arcade .playlist-controls { background: #1a0000; border-top-color: #4a0808; }
.theme-arcade .playlist-options { background: #160000; border-top-color: #3a0808; }
.theme-arcade .playlist-note { background: #1e0808; border-top-color: #3a0808; color: #884444; }
.theme-arcade .playlist-empty { color: #884444; }
.theme-arcade .playlist-empty__icon { color: #4a0808; }

/* VINYL */
.theme-vinyl .playlist-item__index { background: #222; color: #666; }
.theme-vinyl .playlist-item.active .playlist-item__index { background: #ff6b9d; color: #000; }
.theme-vinyl .playlist-item__duration { color: #555; }
.theme-vinyl .playlist-item__drag { color: #444; }
.theme-vinyl .playlist-item__fav { color: #444; }
.theme-vinyl .playlist-item__remove { color: #444; }
.theme-vinyl .playlist-controls { background: #0d0d0d; border-top-color: #1a1a1a; }
.theme-vinyl .playlist-options { background: #0a0a0a; border-top-color: #1a1a1a; }
.theme-vinyl .playlist-note { background: #111; border-top-color: #222; color: #555; }
.theme-vinyl .playlist-empty { color: #555; }
.theme-vinyl .playlist-empty__icon { color: #222; }

/* LCD */
.theme-lcd .playlist-item__index { background: #252525; color: #444; }
.theme-lcd .playlist-item.active .playlist-item__index { background: #00e5cc; color: #000; }
.theme-lcd .playlist-item__duration { color: #444; font-family: 'Courier New', monospace; }
.theme-lcd .playlist-item__drag { color: #333; }
.theme-lcd .playlist-item__fav { color: #333; }
.theme-lcd .playlist-item__remove { color: #333; }
.theme-lcd .playlist-controls { background: #1c1c1c; border-top-color: #2a2a2a; }
.theme-lcd .playlist-options { background: #191919; border-top-color: #252525; }
.theme-lcd .playlist-note { background: #1a1a1a; border-top-color: #2a2a2a; color: #444; }
.theme-lcd .playlist-empty { color: #444; font-family: 'Courier New', monospace; }
.theme-lcd .playlist-empty__icon { color: #333; }

/* WINAMP */
.theme-winamp .playlist-item__index { background: #1a2030; color: #446688; font-family: 'Courier New', monospace; }
.theme-winamp .playlist-item.active .playlist-item__index { background: #4488cc; color: #fff; }
.theme-winamp .playlist-item__duration { color: #446688; font-family: 'Courier New', monospace; }
.theme-winamp .playlist-item__drag { color: #334466; }
.theme-winamp .playlist-item__fav { color: #334466; }
.theme-winamp .playlist-item__remove { color: #334466; }
.theme-winamp .playlist-controls { background: linear-gradient(180deg, #c8d4e8, #b8c8e0); border-top-color: #8898b8; }
.theme-winamp .playlist-options { background: linear-gradient(180deg, #b8c8e0, #a8b8d0); border-top-color: #8898b8; }
.theme-winamp .playlist-note { background: #c0ccdc; border-top-color: #8898b8; color: #2a3a5c; }
.theme-winamp .playlist-empty { color: #446688; font-family: 'Courier New', monospace; }
.theme-winamp .playlist-empty__icon { color: #225588; }

/* SPACE */
.theme-space .playlist-item__index { background: #0d1525; color: #334466; }
.theme-space .playlist-item.active .playlist-item__index { background: #3355aa; color: #fff; }
.theme-space .playlist-item__duration { color: #334466; }
.theme-space .playlist-item__drag { color: #223355; }
.theme-space .playlist-item__fav { color: #223355; }
.theme-space .playlist-item__remove { color: #223355; }
.theme-space .playlist-controls { background: #0d1525; border-top-color: #1a2840; }
.theme-space .playlist-options { background: #0a1020; border-top-color: #1a2840; }
.theme-space .playlist-note { background: #0d1525; border-top-color: #1a2840; color: #334466; }
.theme-space .playlist-empty { color: #334466; }
.theme-space .playlist-empty__icon { color: #1a2840; }

/* VU */
.theme-vu .playlist-item__index { background: #3a2818; color: #7a5a40; font-family: 'Courier New', monospace; }
.theme-vu .playlist-item.active .playlist-item__index { background: #e8844d; color: #fff; }
.theme-vu .playlist-item__duration { color: #5a4030; font-family: 'Courier New', monospace; }
.theme-vu .playlist-item__drag { color: #4a3020; }
.theme-vu .playlist-item__fav { color: #4a3020; }
.theme-vu .playlist-item__remove { color: #4a3020; }
.theme-vu .playlist-controls { background: linear-gradient(180deg, #c5b8a0, #b0a090); border-top-color: #8a7a60; }
.theme-vu .playlist-options { background: linear-gradient(180deg, #bab0a0, #a8a090); border-top-color: #8a7a60; }
.theme-vu .playlist-note { background: #c0b0a0; border-top-color: #8a7a60; color: #4a3020; }
.theme-vu .playlist-empty { color: #6a5040; font-family: 'Courier New', monospace; }
.theme-vu .playlist-empty__icon { color: #4a3020; }

/* HANDHELD */
.theme-handheld .playlist-item__index { background: linear-gradient(180deg, #ddd9d0, #bdb9b0); color: #4a4848; border: 1px solid #a0a09c; box-shadow: 0 2px 0 #888580; }
.theme-handheld .playlist-item.active .playlist-item__index { background: linear-gradient(180deg, #4488cc, #2266aa); color: #fff; border-color: transparent; box-shadow: 0 1px 0 #1a4488; }
.theme-handheld .playlist-item__duration { color: #5a5858; font-family: 'Courier New', monospace; font-size: 0.72rem; }
.theme-handheld .playlist-item__drag { color: #888584; }
.theme-handheld .playlist-item__fav { color: #888584; }
.theme-handheld .playlist-item__remove { color: #888584; }
.theme-handheld .playlist-controls { background: linear-gradient(180deg, #c8c5bc, #b0ada8); border-top-color: #a0a09c; }
.theme-handheld .playlist-options { background: linear-gradient(180deg, #bab8b0, #a8a5a0); border-top-color: #a0a09c; }
.theme-handheld .playlist-note { background: #c0bdb4; border-top-color: #a0a09c; color: #4a4848; }
.theme-handheld .playlist-empty { color: #7a7878; }
.theme-handheld .playlist-empty__icon { color: #a0a09c; }

/* NEON */
.theme-neon .playlist-item__index { background: rgba(170,255,0,0.06); color: rgba(170,255,0,0.3); border-radius: 4px; }
.theme-neon .playlist-item.active .playlist-item__index { background: #aaff00; color: #050a05; }
.theme-neon .playlist-item__duration { color: rgba(170,255,0,0.3); font-family: 'Courier New', monospace; }
.theme-neon .playlist-item__drag { color: rgba(170,255,0,0.2); }
.theme-neon .playlist-item__fav { color: rgba(170,255,0,0.2); }
.theme-neon .playlist-item__fav.active { color: #aaff00; }
.theme-neon .playlist-item__remove { color: rgba(170,255,0,0.2); }
.theme-neon .playlist-controls { background: #060c06; border-top-color: rgba(170,255,0,0.1); }
.theme-neon .playlist-options { background: #050a05; border-top-color: rgba(170,255,0,0.1); }
.theme-neon .playlist-note { background: #060c06; border-top-color: rgba(170,255,0,0.1); color: rgba(170,255,0,0.3); }
.theme-neon .playlist-empty { color: rgba(170,255,0,0.3); }
.theme-neon .playlist-empty__icon { color: rgba(170,255,0,0.1); }

/* MOONDUST */
.theme-moondust .playlist-item__index { background: #1e2838; color: #3a5060; }
.theme-moondust .playlist-item.active .playlist-item__index { background: #3a8a9a; color: #fff; }
.theme-moondust .playlist-item__duration { color: #3a5060; }
.theme-moondust .playlist-item__drag { color: #2a3a50; }
.theme-moondust .playlist-item__fav { color: #2a3a50; }
.theme-moondust .playlist-item__remove { color: #2a3a50; }
.theme-moondust .playlist-controls { background: #1a2030; border-top-color: #283040; }
.theme-moondust .playlist-options { background: #161e2c; border-top-color: #283040; }
.theme-moondust .playlist-note { background: #1a2030; border-top-color: #283040; color: #3a5060; }
.theme-moondust .playlist-empty { color: #3a5060; }
.theme-moondust .playlist-empty__icon { color: #2a3550; }

/* OCEAN */
.theme-ocean .playlist-item__index { background: #d0e8f8; color: #5090b0; box-shadow: 0 1px 3px rgba(26,96,144,0.15); }
.theme-ocean .playlist-item.active .playlist-item__index { background: linear-gradient(135deg, #1a6090, #1a90c0); color: #fff; box-shadow: 0 2px 6px rgba(26,96,144,0.3); }
.theme-ocean .playlist-item__duration { color: #70a0b8; }
.theme-ocean .playlist-item__drag { color: #a0c8e0; }
.theme-ocean .playlist-item__fav { color: #a0c8e0; }
.theme-ocean .playlist-item__remove { color: #a0c8e0; }
.theme-ocean .playlist-controls { background: linear-gradient(135deg, #e0f0f8, #d0e8f0); border-top-color: #b0d0e8; }
.theme-ocean .playlist-options { background: linear-gradient(135deg, #dceef8, #cce4f0); border-top-color: #b0d0e8; }
.theme-ocean .playlist-note { background: #e4f0f8; border-top-color: #b0d0e8; color: #5090b0; }
.theme-ocean .playlist-empty { color: #5090b0; }
.theme-ocean .playlist-empty__icon { color: #a0c8e0; }

/* Track title colours for new themes (gradient overlay, no pill) */
.theme-lcd .audio-track-title { color: #00e5cc; font-family: 'Courier New', monospace; text-shadow: 0 0 8px rgba(0,229,204,0.5); }
.theme-lcd .audio-track-artist { color: rgba(0,229,204,0.75); font-family: 'Courier New', monospace; }
.theme-lcd .audio-track-info { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%); }
.theme-winamp .audio-track-title { color: #88aadd; font-family: 'Courier New', monospace; }
.theme-winamp .audio-track-artist { color: rgba(136,170,221,0.7); font-family: 'Courier New', monospace; }
.theme-winamp .audio-track-info { background: linear-gradient(to top, rgba(0,0,10,0.95) 0%, transparent 100%); }
.theme-neon .audio-track-title { color: #aaff00; text-shadow: 0 0 10px rgba(170,255,0,0.5); }
.theme-neon .audio-track-artist { color: rgba(170,255,0,0.65); }
.theme-neon .audio-track-info { background: linear-gradient(to top, rgba(0,5,0,0.97) 0%, transparent 100%); }
.theme-space .audio-track-title { color: #aabbff; }
.theme-space .audio-track-artist { color: rgba(100,153,255,0.7); }
.theme-vu .audio-track-title { color: #e8c87a; font-family: 'Courier New', monospace; text-shadow: 0 0 6px rgba(232,200,122,0.3); }
.theme-vu .audio-track-artist { color: rgba(232,132,77,0.8); font-family: 'Courier New', monospace; }
.theme-vu .audio-track-info { background: linear-gradient(to top, rgba(5,3,0,0.97) 0%, transparent 100%); }
.theme-handheld .audio-track-title { color: #44aa44; font-family: 'Courier New', monospace; text-shadow: 0 0 6px rgba(68,170,68,0.3); }
.theme-handheld .audio-track-artist { color: rgba(68,170,68,0.7); font-family: 'Courier New', monospace; }
.theme-handheld .audio-track-info { background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, transparent 100%); }
.theme-moondust .audio-track-title { color: #c0d8e0; }
.theme-moondust .audio-track-artist { color: rgba(112,200,216,0.75); }
.theme-arcade .audio-track-title { color: #ffcccc; text-shadow: 0 1px 4px rgba(0,0,0,0.7); }
.theme-arcade .audio-track-artist { color: rgba(255,150,150,0.8); }
.theme-arcade .audio-track-info { background: linear-gradient(to top, rgba(20,0,0,0.95) 0%, transparent 100%); }
.theme-vinyl .audio-track-title { color: #fff; }
.theme-vinyl .audio-track-artist { color: rgba(255,107,157,0.85); }
.theme-vinyl .audio-track-info { background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, transparent 100%); }
.theme-ocean .audio-track-info { background: linear-gradient(to top, rgba(0,18,32,0.95) 0%, transparent 100%); }

