/* =========================
   LIGHT / WHITE THEME PLAYER CSS
========================= */

.neon-player-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.player-top-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.player-mini-cover {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.player-meta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.player-song-title {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
}

.player-song-artist {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.player-song-album {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.neon-progress-block {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 15px;
}

.neon-time {
    color: #6b7280;
    font-size: 11px;
    font-weight: 600;
    min-width: 32px;
}

.range-slider-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Seek Bar Styling (Supports JS Dynamic Fill Gradient) */
.neon-seek-bar {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #e5e7eb; /* Default unfilled track */
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

/* Chrome, Safari, Edge Thumb */
.neon-seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #7c3aed;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(124, 58, 237, 0.4);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.neon-seek-bar::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

/* Firefox Thumb */
.neon-seek-bar::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #7c3aed;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(124, 58, 237, 0.4);
    cursor: pointer;
}

.neon-controls-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.neon-play-btn {
    background: #7c3aed;
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.neon-play-btn:hover {
    background: #6d28d9;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

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