/* Song Page Styles */
.song-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.song-hero {
    text-align: center;
    margin-bottom: 40px;
}

.song-hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.album-link {
    font-size: 1.2em;
    color: #777;
}

.album-link a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.album-link a:hover {
    text-decoration: underline;
}

.song-container {
    max-width: 800px;
    margin: 0 auto;
}

.song-artwork {
    margin-bottom: 30px;
    text-align: center;
}

.song-artwork img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.song-player {
    margin: 30px 0;
    width: 100%;
}

audio {
    width: 100%;
    height: 50px;
}

.song-info h3 {
    font-size: 1.5em;
    margin-top: 30px;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.lyrics {
    white-space: pre-line;
    line-height: 1.8;
    font-size: 1.1em;
    color: #555;
}

@media (max-width: 600px) {
    .song-hero h2 {
        font-size: 2em;
    }
    
    .lyrics {
        font-size: 1em;
    }
}



/* Custom audio player */
audio {
    width: 100%;
    background: #f1f3f4;
    border-radius: 50px;
    padding: 10px;
}

audio::-webkit-media-controls-panel {
    background: #f1f3f4;
    border-radius: 50px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
    background-color: #4CAF50;
    border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    font-family: Arial, sans-serif;
}


/* Song Download */
.download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
}

.download-btn:hover {
    background: #45a049;
}