/* ====================================================
   CUSTOM AUDIO PLAYER (Matches Light Theme)
   ==================================================== */
.neon-player-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin: 15px 0;
    font-family: 'Poppins', sans-serif;
}

/* Top Section: Cover & Text */
.player-top-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

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

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

.player-song-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.player-song-artist {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.player-song-album {
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Progress Bar Section */
.neon-progress-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.neon-time {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    min-width: 35px;
    text-align: center;
}

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

/* Custom Range Slider Styling */
.neon-seek-bar {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--hover-bg);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.neon-seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(79, 70, 229, 0.4);
    transition: transform 0.1s;
}

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

/* Controls Section */
.neon-controls-row {
    display: flex;
    justify-content: center;
}

.neon-play-btn {
    background: var(--primary-gradient);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neon-play-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

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