@font-face {
    font-family: "Flexus";
    src: url(Flexus.ttf);
}



:root {
    --primary-color: #7628FE;
    --secondary-color: #1DAAFF;
    --dark-color: #151A1C;
    --light-color: #F2F2F2;
    --accent-color: #7728FD;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Montserrat,sans-serif;
    margin: 0;
    color: var(--light-color);
    padding: 0;
    height: 100vh;
    background-image: linear-gradient(
            260deg,
            var(--primary-color) 0%,   /* Purple */
            #4A4BF8 25%,
            #2D6EF7 45%,
            var(--secondary-color) 65%, /* Blue */
            var(--dark-color) 100%  /* Black */
    );

    background-size: 400% 400%;

    animation: gradientAnimation 15s ease infinite;


}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }

}



.coming-soon {
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #151A1C80;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

h1 {
    font-family: Flexus, serif;
    color: var(--light-color);
    letter-spacing: 10px;
    text-align: center;
    margin-top: 30px;
    font-size: 3rem;
    margin-bottom: 5px;
}

.logo {
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.2));
}


p {
    margin-bottom: 30px;
    color: #F2F2F295;
}


.discord {
    margin-top: 25px;
    display: block;
    text-align: center;
}

.btn {
    background-color: transparent;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid var(--light-color);
}




.discord-logo {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

a {
    text-decoration: none;
    color: var(--light-color);
}

.btn a {
    display: flex;
    justify-content: center;
    align-items: center;
}


