.neon-player-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #edf0f5;
}

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

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

.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: #9ca3af;
    font-size: 11px;
    font-weight: 600;
    min-width: 32px;
}

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

.neon-seek-bar {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: #374151;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.neon-seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #375691;
    border-radius: 50%;
    transition: transform 0.1s ease;
}

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

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

.neon-play-btn {
    background: #375691;
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.neon-play-btn:hover {
    background: #30559b;
    transform: scale(1.08);
}

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