.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.player-card {
    transition: all 0.3s ease;
    border-radius: 6px;
    overflow: hidden;
}

.player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.player-card.is-playing {
    /*border-left: 4px solid #3273dc;*/
    background: linear-gradient(to bottom,
    #ff7e5f 0%,     /* Coral pink */
    #feb47b 50%,    /* Peach */
    #86a8e7 100%    /* Soft purple-blue */
    );
    transform: scale(1.02);
    color: #090a0c;
}

.song-artwork {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.play-button.is-playing {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(232,67,147,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(232,67,147,0); }
    100% { box-shadow: 0 0 0 0 rgba(232,67,147,0); }
}

.progress-container {
    position: relative;
    height: 6px;
    background: #dbdbdb;
    /*border-radius: 3px;*/
    cursor: pointer;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00cec9, #3273dc);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.volume-control {
    width: 100px;
}

.status-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.time-display {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

/*.song-title.is-playing {*/
/*    color: #090a0c;*/
/*}*/

.song-artist {
    font-size: 0.875rem;
}
