        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            min-height: 100%; /* Important : permet au body de s'étirer */
            overflow-x: hidden; /* Empêche le scroll horizontal */
            overflow-y: auto;   /* Autorise le scroll vertical si nécessaire */
            display: block;      /* On retire le flex qui centre tout verticalement */
            font-family: 'Courier New', sans-serif;
            color: white;
        }

        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-color: #000; /* Couleur de secours */
            overflow: hidden;
        }

        .breathing-image {
            width: 100%;
            height: 100%;
            background-image: url('../img/IMG_20250922_193857.jpg');
            background-size: cover;
            background-position: center;
            animation: breathe 8s ease-in-out infinite;
        }

        @keyframes breathe {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.03); /* Zoom léger */
                opacity: 0.85;            /* Plus net */
            }
            100% {
                transform: scale(1);
                opacity: 0.7;
            }
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Création du dégradé : transparent au centre, noir sur les bords */
            background: radial-gradient(circle, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
            pointer-events: none; /* Permet de cliquer sur les éléments dessous si besoin */
        }

        .content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 100px 20px; /* Marges pour ne pas coller en haut/bas */
            min-height: 100vh;   /* Force le contenu à faire au moins la taille de l'écran */
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-sizing: border-box;
            gap: 30px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .content ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 30px;
            color: #fff;
            padding-left: 0;
            margin: auto;
        }

        .content ul a {
            color: inherit;
            font-size: 5vh;
        }

        @media screen and (max-width: 640px) {

            .content ul {
                flex-wrap: wrap;
                gap: 20px;
            }

        }

        .footer-player {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.6); /* Fond sombre semi-transparent */
            backdrop-filter: blur(5px);    /* Flou artistique derrière le lecteur */
            padding: 10px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }