body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background: linear-gradient(61deg, #07001e, #1a103f, #2f235a, #1c0f4b);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    cursor: default
}

.container a {
    cursor: pointer
}

.navbar {
    position: sticky;
    top: 3px;
    z-index: 999;
    background: linear-gradient(45deg, black, transparent);
    padding: 15px 0;
    margin: 0 16px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .brand {
    display: flex;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
}

.navbar .brand img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    cursor: pointer;
}

.navbar .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navbar .nav-links li {
    display: inline;
}

@media (max-width: 600px) {
    .navbar {
        margin: 0 8px;
        padding: 12px 0;
    }

    .navbar .container {
        flex-direction: column;
        align-items: first baseline;
        gap: 10px;
    }

    .navbar .brand {
        font-size: 1.3em;
    }

    .navbar .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
    }

    .navbar .nav-links a,
    .navbar .nav-links .here {
        font-size: 0.9em;
    }
}

.navbar .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.1s;
    cursor: pointer
}

.navbar .nav-links a:hover,
a:visited:hover {
    color: #c79dff;
}

a,
a:visited {
    color: #80bbff;
    text-decoration: none;
    transition: color 0.1s;
    cursor: default
}

a:hover {
    color: #e4e4e4;
    text-decoration: underline;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    cursor: default;
    color: #FFFFFF;
    font-weight: 1000;

}

strong {
    font-weight: 700;
}

.medium-text {
    font-weight: 500;
}

@keyframes cool {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 50% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes rave {

    0%,
    100% {
        color: rgba(255, 0, 0, 1);
    }

    14% {
        color: rgba(255, 165, 0, 1);
    }

    28% {
        color: rgba(255, 255, 0, 1);
    }

    42% {
        color: rgb(0, 255, 0);
    }

    57% {
        color: rgb(0, 140, 255);
    }

    71% {
        color: rgb(149, 0, 255);
    }

    85% {
        color: rgb(255, 0, 255);
    }
}

.rave-animation {
    animation: rave 10s infinite alternate;
}

.here {
    color: #b3b3b3;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 4px solid #000000;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.2s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@font-face {
    font-family: 'Inter';
    src: url('/files/fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('/files/fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

.button {
    background-color: #0b0047;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    margin: 0 5px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
    font-family: 'Chirp', sans-serif;
}

.button:hover {
    background-color: #171e6d;
    color: white;
}

.screenshot {
    border: 1px solid #555;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
    cursor: pointer;
}