.waveplayer-container.cyberpunk {
    display: flex;
    align-items: center;
    background: rgba(20,20,30,0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 234, 255, 0.4);
    border-radius: 12px;
    padding: 12px 16px;
    margin: 16px 0;
    box-shadow: 0 0 20px rgba(157,0,255,0.4);
    animation: pulse-glow 4s infinite;
}

.waveplayer-play {
    background: none;
    border: 2px solid #00eaff;
    box-shadow: 0 0 8px #00eaff, inset 0 0 8px #00eaff;
    color: #00eaff;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 14px;
    transition: all 0.3s ease;
    animation: pulse-button 3s infinite;
}

.waveplayer-play:hover {
    box-shadow: 0 0 15px #ff00d4, inset 0 0 12px #ff00d4;
    border-color: #ff00d4;
    color: #ff00d4;
}

.waveplayer-main {
    flex-grow: 1;
}

.waveform {
    width: 100%;
}

.waveplayer-meta {
    display: flex;
    justify-content: space-between;
    font-family: "Share Tech Mono", monospace;
    color: #00eaff;
    font-size: 13px;
    margin-top: 6px;
    text-shadow: 0 0 5px #00eaff;
}

.waveplayer-meta .track-title {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(157,0,255,0.4); }
    50% { box-shadow: 0 0 35px rgba(0,234,255,0.7); }
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 0 8px #00eaff, inset 0 0 8px #00eaff;
        border-color: #00eaff;
        color: #00eaff;
    }
    50% {
        box-shadow: 0 0 16px #ff00d4, inset 0 0 12px #ff00d4;
        border-color: #ff00d4;
        color: #ff00d4;
    }
}

@media (max-width: 600px) {
    .waveplayer-container.cyberpunk {
        flex-direction: column;
        align-items: stretch;
    }
    .waveplayer-play {
        margin: 0 auto 10px auto;
    }
}
