/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Rubik';
    src: url('../Rubik Font/static/Rubik-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Rubik;
    background-color: black; /* Couleur de fond */
}

/* Conteneur principal */
.container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Pour s'assurer que la vidéo couvre tout l'espace */
    z-index: 1; /* Assurer que la vidéo est en arrière-plan */
}

.logo-section {
    position: fixed;
    top: 50px; /* Position du logo */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.dragon-logo {
    width: auto;
    height: 600px; /* Ajustez cette hauteur si nécessaire */
}

.title1 {
    position: fixed;
    top: 600px; /* Ajustez pour aligner avec le logo */
    left: 500px; /* Aligner avec le logo */
    transform: translateX(-50%); /* Centre horizontalement par rapport au logo */
    color: #1d2c39;
    font-size: 55px;
    font-weight: bold;
    text-align: center;
    margin: 10px;
}

.title2 {
    position: fixed;
    top: 650px; /* Ajustez pour aligner avec le logo */
    left: 500px; /* Aligner avec le logo */
    transform: translateX(-50%); /* Centre horizontalement par rapport au logo */
    color: #ff6a00;
    font-size: 110px;
    font-weight: bold;
    text-align: center;
    margin: 10px;
}

.title3 {
    position: fixed;
    top: 760px; /* Ajustez pour aligner avec le logo */
    left: 500px; /* Aligner avec le logo */
    transform: translateX(-50%); /* Centre horizontalement par rapport au logo */
    color: #1d2c39;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    margin: 10px;
}

.divider-left {
    position: fixed;
    top: 800px;
    left: 250px;
    background-color: #ff6a00;
    width: 90px;
    height: 12px;
    font-size: 18px;
    color: white;
    text-align: left;
    display: flex;
    align-items: center;
    padding-left: 10px;
    border-radius: 0 0 0 40px;
}

.divider-right {
        position: fixed;
        top: 800px;
        left: 680px;
        background-color: #ff6a00;
        width: 90px;
        height: 12px;
        font-size: 18px;
        color: white;
        text-align: left;
        display: flex;
        align-items: center;
        padding-left: 10px;
        border-radius: 0 0 40px 0;
    }

.live-stream {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    width: 610px;
    height: 150px;
    background-color: transparent;
    color: white;
    font-size: 60px;
    font-weight: bold;
    z-index: 2;
    display: flex;              /* Utiliser flexbox */
    align-items: center;        /* Centre verticalement */
    justify-content: center;    /* Centre horizontalement */
    text-align: center;         /* Aligne le texte au centre */
}

.stage {
    position: fixed;
    top: 750px;
    right: 345px;
    width: 425px;
    height: 125px;
    background-color: #ffffff;
    color: #1d2c39;
    font-size: 70px;
    font-weight: bold;
    z-index: 2;
    display: flex;              /* Utiliser flexbox */
    align-items: center;        /* Centre verticalement */
    justify-content: center;    /* Centre horizontalement */
    text-align: center;         /* Aligne le texte au centre */
}