html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("../IMG/bck.png");
    background-size: cover;              /* couvre tout l'écran */
    background-repeat: no-repeat;
    background-position: center center;  /* centré horizontalement et verticalement */
    background-attachment: fixed;        /* reste fixe au scroll */
    font-family: Arial, sans-serif;
	
	 /* Ombre sur le contour de la page */
    box-shadow: 0 0 40px 10px rgba(0, 0, 0, 1) inset;
}


.audio-logo {
    margin-top: 20px;
    text-align: center;
}

.audio-logo img {
    width: 33%;                /* environ 3x plus petit que le conteneur */
    height: auto;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
    border-radius: 8px;
}

.audio-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 1;
    position: relative;
}

.audio-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(46, 46, 46, 0.6); /* plus transparent */
    backdrop-filter: blur(10px);      /* flou derrière */
    -webkit-backdrop-filter: blur(10px); /* support Safari */
    padding: 25px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* bordure légère en transparence */
    width: 320px;
    max-width: 90vw;
}

.audio-title {
    color: #ccc;
    font-size: 17px;
    font-weight: 300;
    font-family: "Segoe UI", sans-serif;
    text-align: center;
    margin-bottom: 15px;
}

.buttons-row {
    display: flex;
    gap: 10px; /* espacement réduit */
    align-items: center;
}

.audio-controls button {
    background: #444;
    border: none;
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 16px;
    padding: 6px 20px;        /* ↓ hauteur réduite, largeur conservée */
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    min-width: 60px;          /* pour largeur uniforme */
    text-align: center;
}



.audio-controls button:hover {
    background: #666;
}

#audioPlayer {
    display: none;
}

#volumeControl {
    width: 100px;
    accent-color: #888;
    cursor: pointer;
    background: transparent;
}
