:root{
    --primary-color: #cfff24;
    --secondary-color: #0D0D0D;
    --white: #FFFFFF;
    --font-inter: 'Inter', sans-serif;
    --font-solve: 'Solve', sans-serif;
    --color-text: #d8d8d8;
    --border-color: #272629;
    --header-height: 120px;
    --header-background: #1a191b;
    --bg-linear: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-color) 0.01%, var(--secondary-color) 100%, var(--secondary-color) 100%);
    --bg-button: linear-gradient(94deg, #0C2150 2.67%, var(--primary-color) 160.3%);
}

*{
    color: var(--color-text);
}

h1, h2, h3, h4, h5{
    padding: 0;
    margin: 0;
    font-family: var(--font-inter);
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: var(--secondary-color);
    overflow: auto;
    background-image: url('/static/images/test4.png');
    background-size: 100%;
    background-size: contain;
    background-position: center;
    background-position: center top;
    transition: background-position 0.1s ease-out;
}

body, p{
    font-family: var(--font-inter);
    margin: 0;
    padding: 0;
}

img, p, h1, h2, h3, h4, button, a{
    user-select: none;
}

img{
    pointer-events: none;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-fit-content {
    width: fit-content !important;
}

.h-fit-content {
    height: fit-content !important;
}

.fw-extrabold {
    font-weight: 800;
}

@keyframes rotateInfinite {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

a{
    text-decoration: none;
    color: var(--color-text);
    cursor: pointer;
}

#burger-menu{
    cursor: pointer;
    width: 40px;
}

.hover-effect{
    transition: 0.3s transform ease-in-out;
}

.hover-effect:hover{
    transform: translateX(6px);
}

.no-hover-effect:hover{
    transform: none;
}

.user-select{
    user-select: none;
}

.container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 20rem 16px;
}

.hide-on-pc{
    display: none !important;
}

.z-index-1{
    z-index: 1;
}

.transition{
    transition: 0.3s ease-in-out;
}

.fit-content{
    width: fit-content;
}

.section{
    margin-top: 8rem;
}

input, select, textarea{
    padding: 0.9rem 1.75rem;
    color: var(--color-button);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: #D8D8D8;
    outline: none;
    min-height: 55px;
}

*::placeholder{
    font-family: var(--font-gilroy);
    font-weight: 400 !important;
    color: #505050 !important;
}

input:focus, select:focus, textarea:focus{
    
    box-shadow: none !important;
}

.title{
    color: var(--color-text);
    font-size: 56px;
    line-height: 66px;
    font-weight: 300;
}

.subtitle{
    color: var(--color-brown);
    font-size: 26px;
    font-weight: 600;
}

.text, p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.text-primary{
    color: var(--primary-color) !important;
}

.text-dark{
    color: #9b9b9b !important;
}

/* Header */

.header{
    height: var(--header-height);
    z-index: 100;
}

.header-menu{
    background-color: #ffffff0e;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 4px 38px;
    gap: 4rem;
}

.header-menu-item{
    font-size: 16px;
}

.header-menu-item:hover{
    color: var(--primary-color);
}

.header-menu-rubiks{
    color: white;
    font-size: 26px;
}

.header.background .header-menu{
    background-color: var(--header-background);
    background-image: blur(12.5px);
}

.header-logo{
    height: 30px;
    margin: 4px;
}

@keyframes pointplayers {
    0% {
        box-shadow: 0px 0px 8px #70C600;
    }

    50% {
        box-shadow: 0px 0px 0px #70C600;
    }

    100% {
        box-shadow: 0px 0px 8px #70C600;
    }
}

/* Footer */

footer{
    background-image: url('/static/images/background-footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    height: 60vh;
    margin-top: 10rem;
}

.footer{
    grid-template-columns: 3fr 2fr 3fr;
    gap: 10rem;
    margin-bottom: 6rem;
}

.footer-social-item{
    border: 2px solid var(--border-color);
    border-radius: 50%;
    padding: 0.5rem;
}

.footer-social-item:hover{
    border: 2px solid var(--primary-color);
}

.footer-link-item:hover{
    color: var(--primary-color) !important;
}


footer #footer-aura{
    bottom: -50px;
    left: calc((100% - 90%) / 2);
    width: 90%;
    height: 100px;
    pointer-events: none;
    background-color: #4f02ff;
    opacity: 0.3;
    filter: blur(200px);
    border-radius: 50%;
}

.footer-logo{
    height: 56px;
}

.footer-logo .logo{
    width: 56px;
}

.footer-logo .text{
    padding: 12px 12px 12px 0;
}

.gradient-text{
    background: linear-gradient(90deg, var(--primary-color), var(--color-text)); /* ajustable */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button */

.button{
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-inter);
    transition: all 0.3s ease-in-out;
    border: 0;
    /* min-width: 160px; */
}

.button:hover{
    transform: translateY(-3px);
}

.button-light{
    background: var(--primary-color);
    color: var(--secondary-color);
}

.button-dark{
    background: var(--secondary-color);
    border: 2px solid var(--border-color);
}

.button-icon{
    height: 24px;
}

/* Scroll bar */

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
    background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb:active {
    --tw-bg-opacity: 1;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    --tw-bg-opacity: 1;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    --tw-bg-opacity: 1;
    background-color: var(--primary-color);
    background-clip: padding-box;
    border-radius: 9999px;
    border: 3px solid transparent;
}

@keyframes shakeAnimation {
    0%, 100% {
        transform: perspective(500px) rotateY(calc(20deg*var(--_i,-1)));
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px) perspective(500px) rotateY(calc(20deg*var(--_i,-1)));
    }

    20%, 40%, 60%, 80% {
        transform: translateX(5px) perspective(500px) rotateY(calc(20deg*var(--_i,-1)));
    }
}

@media screen and (max-width: 1400px) {

}

@media screen and (max-width: 1200px) {
    .footer {
        gap: 6rem;
    }
}

@media screen and (max-width: 992px) {
    .header{
        background-color: var(--secondary-color) !important;
    }

    .header-menu {
        position: absolute;
        top: 80px;
        z-index: 999;
        background-color: var(--secondary-color);
        left: 0;
        transition: all 0.3s ease-in-out;
        width: 320px !important;
        transform: translateX(-320px);
        bottom: 0;
        height: calc(100vh - 80px);
        padding: 2rem;
    }

    .footer {
        gap: 4rem;
    }

    .header.burger-menu-actif, .header.burger-menu-actif.background{
        background-color: var(--secondary-color);
    }

    .burger-menu-actif .header-menu{
        transform: translateX(0px);
    }

    .image-bg{
        width: 150%;
    }
}

@media screen and (max-width: 768px) {
    .image-bg{
        width: 200%;
    }

    .footer {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {

}
