﻿

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 10vh;
    color: var(--nav-text-color);
    /*background: radial-gradient(circle at center, oklch(16% 0.004 49.25) 0%, oklch(14.5% 0.004 49.25) 40%); */
}



    main .links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }



* {
    margin: 0;
    --nav-text-color: oklch(87.2% 0.01 258.338);
    --login-text-color: oklch(94.5% 0.129 101.54);
    --blue-color-t2: oklch(70.7% 0.165 254.624);
}

nav {
    margin-top: 2vh;
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--nav-text-color)
}

    nav .item {
        font-size: 14px;
        padding: 0.7rem;
        transition: background 0.35s ease-out;
        border-radius: 12px;
        font-weight: bold;
        cursor: pointer;
    }

        nav .item:hover, nav .item.active {
            background-color: oklch(21% 0.006 285.885);
        }


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    background-color: oklch(14.7% 0.004 49.25);
}

header {
    width: 90%;
    margin: auto;
    position: relative;
}


.btn {
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: oklch(21% 0.006 285.885);
    border: none;
    border-radius: 12px;
    color: var(--nav-text-color);
    font-size: 14px;
    cursor: pointer;
    font-weight: bolder;
    position: relative;
}

.discord-btn {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: oklch(21% 0.006 285.885);
    border: none;
    border-radius: 12px;
    color: var(--nav-text-color);
    font-size: 14px;
    cursor: pointer;
    font-weight: bolder;
}

    .discord-btn:hover, .btn:hover {
        background: oklch(20% 0.006 285.885);
    }

    .discord-btn i {
        background: oklch(21% 0.006 285.885);
        padding: 0px 0px;
        color: white;
        border-radius: 8px;
        font-size: 16px;
    }

a {
    text-decoration: none;
    color: var(--nav-text-color);
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
.text-logo {
    font-size: 46px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.2rem;
    text-shadow: 0px 0px 20px var(--nav-text-color);
}



.btn-white {
    background-color: oklch(85% 0 0);
    color: black;
}

.btn-white:hover {
    background-color: oklch(80% 0 0);
}

select {
    padding: 1vh;
    outline: 0;
    background-color: oklch(21% 0.006 285.885);
    color: var(--nav-text-color);
    border-radius: 8px;
    text-align: center;
}

select:focus {
    outline: 0;
}


.btn:disabled {
    background: #0f0f0f;
    cursor:not-allowed;
}

.features-container {
    margin-top: 0.5rem;
    padding: 0.7rem;
    display: none;
    width: fit-content;
    grid-template-rows: repeat(auto-fill, 2rem);
    grid-auto-flow: column;
    gap: 8px;
    column-gap: 3vw;
    max-height: 200px;
    overflow: hidden;
    background: #101010;
    border-radius: 12px;
    border: 3px solid #1b1b1b;
}

.features-container .feature::before {
    content: '•'; 
    display: inline-block;
    width: 1.3em; 
    margin-right: 0.2em;
    color: var(--blue-color-t2); 
    font-size: 1.3em;
    vertical-align: middle;
}


.features-container.active {
    display: grid;
}