:root {
    --background-1: #0d0d0d;
    --background-2: #1a1a1a;
    --background-3: #262626;
    --background-4: #292929;
    --border-1: #353535;
    --primary-1: #517fe6;
    --primary-2: rgb(71, 113, 204);
    --white: #e6f1ff;
    --grey-1: #b6b6b6;
    --grey-2: #807f7f;
}

body {
    margin: 0;
    height: 100vh;
    background: var(--background-1);
    display: flex;
    flex-direction: row;
    gap: 1.5vw;
    justify-content: center;
    align-items: center;
    font-family: Inter, system-ui, sans-serif;
    color: var(--white);
}

.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.page {
    display: none;
    width: 100%;
    height: 100%;
}

.page.active {
    display: block;
}

.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.gradient-text {
    font-size: 3.2vw;
    font-weight: bold;
    background: linear-gradient(270deg, #2dacd9, #978ce2, #ff75ed);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 3s ease infinite;
    margin: 0;
}

@keyframes gradientAnimation {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.subtitle {
    margin-top: 0vw;
    font-size: 0.9vw;
    color: var(--grey-1);
}

.buttons {
    display: flex;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--background-3);
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.8vw;
    transition: 0.2s;
}

.btn i {
    font-size: 0.8vw;
}

.btn:hover {
    background: var(--background-4);
}

.discord {
    background: #5865F2;
}

.discord:hover {
    background: #4e5ad6;
}

.footer {
    position: absolute;
    bottom: 12px;
    width: 100%;
    text-align: center;
    font-size: 0.8vw;
    color: var(--grey-2);
}