body {
    background-image: url('background_.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Georgia', serif;
    color: #333;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin: 0;
}

.container { 
    width: 600px; 
    text-align: center; 
    /*background-color: rgba(244, 239, 231, 0.85);  Fond crème avec légère transparence */
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; font-weight: bold; }
.btn-nav { background: #b91c33; color: white; padding: 5px 15px; text-decoration: none; border-radius: 5px; }

.title { font-size: 60px; color: #b91c33; margin: 0; line-height: 0.9; }
.subtitle { font-style: italic; margin-bottom: 30px; }

.player-container {
    background: #b91c33;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

#actual-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#controls-section button {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
}

#listen-now-btn {
    background: white;
    color: #b91c33;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}
#listen-now-btn:hover { transform: scale(1.05); }

#now-playing { margin-bottom: 15px; font-weight: bold; font-size: 16px; }

.tracklist { display: flex; text-align: left; gap: 40px; margin-top: 20px; }
.tracklist ol { list-style: none; padding: 0; width: 100%; }
.track-item { cursor: pointer; padding: 8px 0; border-bottom: 1px solid rgba(51, 51, 51, 0.2); font-size: 14px; transition: color 0.3s ease, padding-left 0.3s ease; }
.track-item:hover { color: #b91c33; padding-left: 5px; }
.track-item span { font-weight: bold; margin-right: 10px; }

.footer { margin-top: 40px; border-top: 1px solid #333; padding-top: 20px; }
.motto { font-size: 20px; font-weight: bold; color: #b91c33; }
.icons { font-size: 24px; margin: 10px 0; }
