.neon-player {
    --neon-color: #ff2a75;
    background: #0a0a12;
    color: #ffffff;
    padding: 30px;
    max-width: 100%;
    margin: 0 auto;
    border: none !important;
    border-radius: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    box-shadow: none !important;
}

.player-header { margin-bottom: 30px; }
.header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.brand { font-size: 10px; letter-spacing: 4px; color: rgba(255, 255, 255, 0.7); font-weight: 500; }
.track-counter { font-size: 10px; letter-spacing: 2px; color: var(--neon-color); font-weight: 600; }
.player-title {
    font-size: 36px; font-weight: 700; letter-spacing: -0.5px; margin: 0 0 2px 0; color: #fff;
    background: linear-gradient(90deg, var(--neon-color), #fff 30%, var(--neon-color) 60%);
    background-size: 300% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer { 0% { background-position: -300% 0; } 100% { background-position: 300% 0; } }
.subtitle { font-size: 12px; letter-spacing: 5px; color: rgba(255, 255, 255, 0.8); font-weight: 500; text-transform: uppercase; }
.divider-line { width: 35px; height: 1px; background: var(--neon-color); margin: 14px 0 12px 0; opacity: 0.5; }
.frequency-label { font-size: 9px; letter-spacing: 5px; color: var(--neon-color); font-weight: 600; opacity: 0.9; }

.song-list { margin-bottom: 25px; }
.song-item {
    display: flex; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer; transition: all 0.2s ease; gap: 14px;
}
.song-item:last-child { border-bottom: none; }
.song-item:hover { opacity: 0.9; }
.song-item.active {
    background: rgba(255, 42, 117, 0.08); border-radius: 6px; padding: 14px 12px; margin: 0 -12px;
    border-bottom-color: rgba(255, 42, 117, 0.3);
}

.song-number { font-size: 11px; color: rgba(255, 255, 255, 0.5); font-weight: 500; min-width: 28px; padding-top: 1px; font-variant-numeric: tabular-nums; }
.song-item.active .song-number { color: var(--neon-color); font-weight: 700; }

.song-content { flex: 1; min-width: 0; }
.song-title { font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.95); margin-bottom: 4px; transition: color 0.3s; }
.song-item.active .song-title { color: var(--neon-color); }

.song-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; color: rgba(255, 255, 255, 0.75); font-weight: 500; letter-spacing: 0.5px; }
.song-genre { text-transform: uppercase; letter-spacing: 1px; }
.song-bpm { color: var(--neon-color); opacity: 0.9; font-weight: 600; }

.song-description { font-size: 12px; color: rgba(255, 255, 255, 0.7); margin: 6px 0 0 0; line-height: 1.4; font-weight: 400; }
.song-item.active .song-description { color: rgba(255, 255, 255, 0.8); }

.spectrum-analyzer {
    display: flex; align-items: flex-end; gap: 2px; height: 16px; margin-right: 8px; opacity: 0; transition: opacity 0.3s;
}
.song-item.active .spectrum-analyzer { opacity: 1; }
.spectrum-bar {
    width: 3px; background: var(--neon-color); border-radius: 2px;
    box-shadow: 0 0 8px var(--neon-color);
    animation: spectrum-bounce 0.8s ease-in-out infinite alternate;
    animation-play-state: paused;
}
.song-item.active.is-playing .spectrum-bar { animation-play-state: running; }
.spectrum-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.spectrum-bar:nth-child(2) { height: 70%; animation-delay: 0.3s; }
.spectrum-bar:nth-child(3) { height: 50%; animation-delay: 0.5s; }
.spectrum-bar:nth-child(4) { height: 80%; animation-delay: 0.2s; }
.spectrum-bar:nth-child(5) { height: 60%; animation-delay: 0.4s; }

@keyframes spectrum-bounce {
    0% { transform: scaleY(0.3); opacity: 0.6; }
    100% { transform: scaleY(1); opacity: 1; }
}

.song-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; padding-top: 1px; }
.view-more { color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.3s; display: flex; align-items: center; }
.view-more:hover { color: var(--neon-color); }
.song-item.active .view-more { color: rgba(255, 255, 255, 0.7); }
.song-item.active .view-more:hover { color: var(--neon-color); }

.play-btn {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent; color: rgba(255, 255, 255, 0.7); cursor: pointer; transition: all 0.2s ease;
    display: flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; padding: 0;
}
.play-btn:hover { border-color: var(--neon-color); color: var(--neon-color); }
.song-item.active .play-btn { border-color: var(--neon-color); color: var(--neon-color); background: rgba(255, 42, 117, 0.15); }
.song-item.active .play-btn:hover { background: var(--neon-color); color: #fff; box-shadow: 0 0 25px rgba(255, 42, 117, 0.5); }

.player-controls { background: rgba(255, 255, 255, 0.04); border-radius: 6px; padding: 16px 18px; border: 1px solid rgba(255, 255, 255, 0.08); margin-bottom: 20px; }
.progress-container { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.time { font-size: 11px; color: rgba(255, 255, 255, 0.7); font-variant-numeric: tabular-nums; font-weight: 500; min-width: 34px; }
.progress-bar { flex: 1; height: 3px; background: rgba(255, 255, 255, 0.15); border-radius: 2px; cursor: pointer; position: relative; }
.progress-bar:hover { height: 4px; }
.progress-fill { height: 100%; background: var(--neon-color); border-radius: 2px; width: 0%; transition: width 0.1s linear; box-shadow: 0 0 12px rgba(255, 42, 117, 0.6); }

.controls-bottom { display: flex; justify-content: space-between; align-items: center; }
.volume-control { display: flex; align-items: center; gap: 10px; flex: 1; max-width: 220px; }
.volume-btn { background: none; border: none; color: rgba(255, 255, 255, 0.7); cursor: pointer; font-size: 14px; padding: 0; transition: color 0.2s; line-height: 1; }
.volume-btn:hover { color: var(--neon-color); }
.volume-slider { -webkit-appearance: none; appearance: none; flex: 1; height: 3px; background: rgba(255, 255, 255, 0.15); border-radius: 2px; outline: none; }
.volume-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 12px; height: 12px; border-radius: 50%; background: var(--neon-color); cursor: pointer; box-shadow: 0 0 12px rgba(255, 42, 117, 0.6); }
.volume-slider::-moz-range-thumb { width: 12px; height: 12px; border-radius: 50%; background: var(--neon-color); cursor: pointer; border: none; }
.volume-value { font-size: 11px; color: rgba(255, 255, 255, 0.7); min-width: 28px; font-variant-numeric: tabular-nums; font-weight: 500; }

.status { display: flex; align-items: center; gap: 8px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transition: all 0.3s; }
.status-dot.playing { background: var(--neon-color); box-shadow: 0 0 12px rgba(255, 42, 117, 0.7); animation: pulse-dot 1.5s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.status-text { font-size: 10px; color: rgba(255, 255, 255, 0.7); letter-spacing: 1px; font-weight: 500; }

.player-footer { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.player-footer span { font-size: 9px; letter-spacing: 4px; color: rgba(255, 255, 255, 0.6); font-weight: 500; transition: color 0.2s; cursor: default; }
.player-footer span:hover { color: var(--neon-color); }

@media (max-width: 768px) {
    .neon-player { padding: 20px; }
    .player-title { font-size: 28px; }
    .song-item { padding: 12px 0; flex-wrap: wrap; }
    .song-item.active { padding: 12px; margin: 0 -12px; }
    .song-actions { margin-left: auto; }
    .controls-bottom { flex-direction: column; align-items: stretch; gap: 10px; }
    .volume-control { max-width: 100%; }
    .status { justify-content: center; }
    .player-footer { flex-direction: column; align-items: center; gap: 4px; }
}
@media (max-width: 480px) {
    .neon-player { padding: 16px; }
    .player-title { font-size: 24px; }
    .song-title { font-size: 14px; }
    .play-btn { width: 28px; height: 28px; font-size: 8px; }
    .progress-container { gap: 8px; }
    .time { font-size: 10px; min-width: 30px; }
}