    body {
        margin: 0;
        min-height: 100vh;
        background: #000;
        font-family: "Comic Sans MS", ComicSans, sans-serif;
        color: #FFF;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

h1 {
text-align: center;
font-size: 0.1em;
color: #000;
}

    .video-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .video-container a {
        margin-bottom: 20px;
    }

    video {
        max-width: 90%;
        max-height: 70vh;
        width: 100%;
        height: auto;
        display: block;
    }

    a {
        color: #FF8400;
        text-decoration: none;
        font-size: 1.2em;
        margin-top: 20px;
    }
    a:hover,
    a:visited {
        color: #FF8400; /* toujours visible après clic */
    }

    #pied {
        background-color: #000;
        font-size: 0.5em;
        text-align: center;
        font-weight: bold;
        color: #FF8400;
        margin-top: auto;
        padding: 5px 0;
        position: absolute;
        bottom: 0;
        width: 100%;
    }
    #pied .logo {
        display: block;
        margin: 5px auto 0;
        max-height: 40px;
    }
	
	#soundBtn {
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid #FF8400; /* bordure orange */
    border-radius: 12px;
    background: linear-gradient(45deg, #000000, #111111);
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    font-family: "Comic Sans MS", ComicSans, sans-serif;
    cursor: pointer;
    text-shadow: 0 0 8px #FF8400, 0 0 12px #FF8400;
    box-shadow: 0 0 10px #FF8400, 0 0 20px #FF8400 inset;
    transition: all 0.2s ease-in-out;
    }

    #soundBtn:hover {
    color: #fff;
    background: linear-gradient(45deg, #222222, #000000);
    border-color: #FF9A33;
    text-shadow: 0 0 12px #FF9A33, 0 0 20px #FF9A33;
    box-shadow: 0 0 15px #FF9A33, 0 0 25px #FF9A33 inset;
    transform: scale(1.05);
    }
	
/* Bouton Passer l'intro */
#skipBtn {
    margin-top: 15px;
    padding: 10px 25px;
    border: 2px solid #FF8400;
    border-radius: 12px;
    background: linear-gradient(45deg, #000000, #111111);
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    font-family: "Comic Sans MS", ComicSans, sans-serif;
    cursor: pointer;
    text-shadow: 0 0 8px #FF8400, 0 0 12px #FF8400;
    box-shadow: 0 0 10px #FF8400, 0 0 20px #FF8400 inset;
    transition: all 0.2s ease-in-out;
    animation: pulse 1.5s infinite;
    text-decoration: none;
    display: inline-block;
}

#skipBtn:hover {
    color: #fff;
    background: linear-gradient(45deg, #222222, #000000);
    border-color: #FF9A33;
    text-shadow: 0 0 12px #FF9A33, 0 0 20px #FF9A33;
    box-shadow: 0 0 15px #FF9A33, 0 0 25px #FF9A33 inset;
    transform: scale(1.05);
}

/* Animation pulsante */
@keyframes pulse {
    0% { box-shadow: 0 0 10px #FF8400, 0 0 20px #FF8400 inset; }
    50% { box-shadow: 0 0 18px #FF9A33, 0 0 30px #FF9A33 inset; }
    100% { box-shadow: 0 0 10px #FF8400, 0 0 20px #FF8400 inset; }
}

/* Div cliquable pour la vidéo */
#videoWrapper {
    cursor: pointer;           /* indique que c'est cliquable */
    display: flex;             /* mode flex pour centrer facilement */
    justify-content: center;   /* centre horizontalement */
    align-items: center;       /* centre verticalement si besoin */
    width: 100%;               /* prend toute la largeur du parent */
}

/* Si tu veux ajouter un effet hover néon */
#videoWrapper:hover {
    outline: 2px solid #FF8400;
    box-shadow: 0 0 15px #FF8400;
}

video {
    max-width: 100%;
    height: auto;
}