body {
    font-family: "Orbitron", sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    background-color: #212529;
    height: 100vh;
}

.top-container {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, #1e1b1b 100%), url('../image/background_image.png') no-repeat center center/cover;
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content {
    padding: 100px;
    background-color: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.beta-container {
    background-color: #7C1086;
}

.m-0 {
    margin: 0;
}

h1 {
    font-size: 100px;  /* Taille par défaut */
    font-weight: bold;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 5px black;
    margin: 0;
    white-space: nowrap; /* Empêche le retour à la ligne par défaut */
}

/* Media Query pour petits écrans */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 60px;  /* Réduit la taille sur petit écran */
        -webkit-text-stroke: 3px black;
    }

    .sphere {
        display: block; /* Passe "Sphere" en dessous de "Player" */
    }

    .content {
        padding: 5px; /* Réduit l'espacement intérieur */
    }

    .real-content {
        margin: 0; /* Supprime l'espacement latéral */
    }
}

.player {
    color: white;
}

.sphere {
    color: #a000ff;
    font-weight: bold;
}

.logo {
    max-width: 150px;
    margin: 20px 0;
}

.slogan {
    font-size: 25px;
    font-style: italic;
}

.highlight {
    font-weight: bold;
}

.font-orbitron {
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.bi-arrow-down {
    position: fixed;  /* Fixe la flèche à un endroit précis */
    bottom: 5vh;     /* La place à 20px du bas de l'écran */
    left: 50%;        /* La centre horizontalement */
    transform: translateX(-50%); /* Centre précis avec transform */
    opacity: 1;       /* Visible par défaut */
    transition: opacity 0.2s ease-in-out;
}

.hidden {
    opacity: 0;       /* Cache la flèche en douceur */
}

.real-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
    margin: 0 75px;
}

.description {
    display: flex;
    flex-direction: row; /* Par défaut : affichage en ligne (côte à côte) */
    align-items: center;
    justify-content: center;
}

.youtube-iframe {
    max-width: 500px;
    width: 100%; 
    height: 260px;
}

/* Media Query pour écrans mobiles */
@media screen and (max-width: 768px) {
    .description {
        flex-direction: column; /* Passe en colonne sur petit écran */
    }

    .content {
        padding: 15px 5px; /* Réduit l'espacement intérieur */
    }

    .real-content {
        margin: 0; /* Supprime l'espacement latéral */
        padding: 15px 10px; /* Réduit l'espacement intérieur */
        max-width: 500px;
        width: 100%;
    }

    .logo {
        max-width: 100px; /* Réduit la taille du logo */
    }
}


.button-inscription {
    color: white;
    background-color: #6D0986;
    border: 1px solid black;
    border-radius: 8px;
    margin-top: 15px;
    padding: 10px;
    font-size: larger;

    &:hover {
        cursor: pointer;
    }
}

.button-inscription:hover {
    background-color: #4D0D4E;
}

.button-inscription:active {
    background-color: #3B0D3C;
}

.logo-footer {
    max-width: 40px;
}

.text-body-secondary {
    --bs-text-opacity: 1;
    color: rgba(222, 226, 230, 0.75) !important;
}