* {
    -webkit-user-select: none;
    /* iOS Safari */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Standard */
    -webkit-touch-callout: none;
    /* Désactive le menu contextuel iOS */
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    position: relative;
    background: #fff;
    color: #000;
    font-family: 'Gotham Book', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    overflow: hidden;
    overscroll-behavior: none;
    /* empêche l'effet sur certains navigateurs */
}

a,
a:hover {
    color: #000;
    text-decoration: none;
}

.text-center {
    text-align: center;
}

/* SVG centré */
svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

/* Cercle de base (trait fin) */
#base {
    fill: none;
    stroke: #000;
    stroke-width: 1;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

/* Cercle animé (trait épais) */
#circle {
    fill: none;
    stroke: #000;
    stroke-width: 5;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

#press {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    z-index: 1000000;
}

#hold {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 1;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    -webkit-user-select: none;
    /* Safari, Chrome */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    user-select: none;
    /* Standard */
    pointer-events: none;
}

#path {
    z-index: 1;
}

canvas {
    position: absolute;
    top: 0;
    opacity: 1;
    display: block;
    height: 100dvh;
    width: 100%;
    object-fit: cover;
}


.lang {
    display: none;
    position: absolute;
    z-index: 100;
    bottom: 9%;
    margin: auto;
    right: 0;
    left: 0;
    display: none;
    text-align: center;

}

#enter span {
    margin: 0 20px;
    color: #000;
    -webkit-user-select: none;
    /* Safari, Chrome */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    user-select: none;
    /* Standard */
}

#path {
    -webkit-user-select: none;
    /* Safari, Chrome */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    user-select: none;
    /* Standard */
    pointer-events: none;
}

#preloader {
    opacity: 1;
    position: absolute;
    width: 100%;
    height: 100dvh;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    background-color: #000;
    z-index: 1000;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}



.img_1_pre {
    opacity: 0.2;
    margin: auto;
    width: 190px;
    height: auto;
}

.img_2_pre {
    opacity: 0.2;
    margin: auto;
    width: 30px;
    height: 30px;
}




.desktop {
    display: block;
}

.mobile {
    display: none
}

@media only screen and (max-width: 991px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block
    }
}