body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Neon', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

/* Conteneur des boutons */
#splash-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 3vw; /* Espacement adaptatif */
    align-items: center;
}

/* Bouton Play */
#play-video {
    background: rgba(255, 255, 255, 0.8);
    border: 0.2vw solid white;
    border-radius: 50%;
    width: 10vw;
    height: 10vw;
    min-width: 60px; /* Taille minimale */
    min-height: 60px;
    max-width: 120px; /* Taille maximale */
    max-height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 1.5vw rgba(255, 255, 255, 0.3);
}

#play-video:hover {
    background: rgb(255, 255, 255);
    transform: scale(1.1);
    box-shadow: 0px 0px 2vw rgba(255, 255, 255, 0.5);
}

/* Icône Play */
#play-video svg {
    width: 50%;
    height: 50%;
    fill: white;
    transition: transform 0.2s ease-in-out;
}

#play-video:hover svg {
    transform: scale(1.2);
}

/* Bouton Skip */
#skip-video {
    background: none;
    color: white;
    border: 0.2vw solid white;
    padding: 1vh 2vw;
    font-size: 2vh;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    min-width: 100px;
}

#skip-video:hover {
    background: white;
    color: black;
}

/* Responsive Mobile */
@media (max-width: 600px) {
    #splash-buttons {
        flex-direction: column; /* Empiler les boutons en vertical */
        gap: 2vh;
    }

    #play-video {
        width: 15vw;
        height: 15vw;
    }

    #skip-video {
        font-size: 2.5vh;
        padding: 1vh 3vw;
    }
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    text-align: center;
    padding: 20px 0;
}

h1, h2 {
    font-size: 2em;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff, 0 0 50px #0ff, 0 0 60px #0ff, 0 0 70px #0ff;
}

section {
    margin-bottom: 40px;
}

p, ul {
    font-size: 1.1em;
    line-height: 1.6;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

.ig-link {
    color: #ff00ff;
    text-decoration: none;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff;
    transition: all 0.3s ease;
}

.ig-link:hover {
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    color: #ff69b4;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    h1, h2 {
        font-size: 1.5em;
    }
    
    p, ul {
        font-size: 1em;
    }
}