body {
    font-family: Trebuchet MS, sans-serif;
    font-size: 13px;
    color: white;
    background-color: #191313;
    width: 100%;
    height: 100%;
}

a {
	color: white;
    text-decoration: none;
}

a:hover {
	color: white;
    text-decoration: none;
}

.header-disabled{
    display: none !important;
}

.header-container{
    width: 100%;
    height: 40px;
    position: relative;
    background-color: #090504;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left{
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: flex-start;
    align-items: center;

}
.header-right{
    display: flex;
    width: 50%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;

}

.nav-pages{
    width: 25%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: white;
    max-width: 120px;
    transition: background-color .2s;
}
.nav-pages a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-pages:hover{
    background-color: #40333a;
}
.nav-jab-icon, .nav-discord-icon{
    width: 15%;
}
.mainlogo{
    max-width: unset;
    width: 100%;
    margin: 0;
}
.header-mobile{
    display: none;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: black;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    top: 0;
}
.nav-jab-icon.icon-mobile{
    display: none;
}
.close-menu-mobile{
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    margin: 1rem;
    z-index: 60;
    cursor: pointer;
}
.close-menu-mobile:before{
    content: "";
    display: flex;
    width: 1px;
    height: 30px;
    background-color: #d33;
    position: absolute;
    transform: rotate(-45deg) translate(-50%);
    transform-origin: center;
    top: 0;
    left: 50%;
}
.close-menu-mobile:after{
    content: "";
    display: flex;
    width: 1px;
    height: 30px;
    background-color: #d33;
    position: absolute;
    transform: rotate(45deg) translate(-50%);
    transform-origin: center;
    top: 0;
    left: 50%;
}
.show{
    opacity: 1;
    visibility: visible;
}
@media only screen and (max-width: 1000px) {
    .header-left, .header-right{
        display: none;
    }
    .nav-jab-icon.icon-mobile{
        display: flex;
        z-index: 25;
    }
    .nav-jab-icon, .nav-discord-icon{
        width: 25%;
    }
    .header-mobile{
        display: flex;
        z-index: 50;
    }
    .header-mobile .nav-pages{
        display: flex;
        height: 5%;
        max-width: unset;
        width: 50%;
        z-index: 5;
        background-color: #d5171b80;
    }
    .header-mobile .nav-jab-icon{
        background-color: unset;
    }
    .show-mobile{
        opacity: 1;
        visibility: visible;
    }
}
/* ===== Nav dropdown ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #090504;
    border: 1px solid #2a2a2a;
    border-top: 2px solid #d5171b;
    min-width: 170px;
    z-index: 200;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #ddd;
    font-size: 0.9rem;
    white-space: nowrap;
    width: 100%;
    height: auto;
    justify-content: flex-start;
}
.nav-dropdown-menu a:hover { background: #40333a; color: #fff; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-caret { font-size: 0.7rem; margin-left: 3px; opacity: 0.7; }
