/* ----------------------------------------------------                   Browser CSS Reset                   ---------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* ---------------------------------------------------      HTML5 display-role reset for older browsers      ---------------------------------------------------- */

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ----------------------------------------------------                   Full Page Content                   ---------------------------------------------------- */

:root {
    --primary: #00ffff;
    --primary2: #b09cff;
    --primary3: #a8ff15;
    --primary4: #ed3524;
    --secondary: #151515;
    --tertiary: #0b0d11;
    --text: #fcf7ff;
    --text2: #ddd;
    --text3: #ede8eb;
    --fontMain: "Nunito Sans";
    --fontSecondary: sans-serif;
    --focus: 3px solid var(--primary) ;
}
body {
    width: 100%;
    margin: 0px;
    background-color: #0c0c0c !important; /*#060e14*/
    font-family: "Nunito Sans" !important;
    color: var(--text);
    overflow-x: hidden;
}
* {
    padding: 0px;
    margin: 0px;
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
:focus-visible {
    box-shadow: 0 0 0 3px var(--primary);
}
div#wpadminbar.nojq {
    display: none;
}

/* -------------------------------------------------------                    Header                     ------------------------------------------------------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000000000000;
    border-bottom: 1px solid transparent;
}
header.light-mode.menuscrolled {
    border-bottom: 1px solid transparent;
}
.header-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}
.header-main {
    z-index: 950;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header.menuscrolled {
    background: rgba(14,15,17,0.84);
    backdrop-filter: saturate(180%) blur(5px);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    border-bottom: 1px solid #282d33;
    transition: all 0.25s ease;
}
header.menuscrolled-override {
    background: rgba(14,15,17,0.84) !important;
    backdrop-filter: saturate(180%) blur(5px) !important;
    -webkit-backdrop-filter: saturate(180%) blur(5px) !important;
    border-bottom: 1px solid #282d33 !important;
    transition: all 0.25s ease !important;
}
header.activatedDD {
    background: rgba(14,15,17,0.64);
    backdrop-filter: saturate(180%) blur(5px);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    border-bottom: 1px solid #282d33;
    transition: all 0.25s ease;
}
.nav-links li {
    display: flex;
    align-items: center;
}
.nav-links a {
    position: relative;
    padding: 6px 0;
    margin: 0 20px;
    font-size: 15px;
    display: inline-block;
    font-family: var(--fontMain);
    color: var(--text);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.25s ease-in-out;
}
.nav-links a::before {
	content: '';
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    bottom: 0;
    margin-top: 10px;
	height: 2px;
	background-color: var(--primary);
    transform: scaleX(0);
	transition: transform .25s ease-in-out;
}
.nav-links a:hover::before {
    transform: scaleX(1);
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-links li.current-menu-item a {
    color: var(--primary);
}
.nav-links li.current-menu-item a::before {
    transform: scaleX(1);
}
.nav-logo {
    padding-bottom: 4px;
    padding-top: 40px;
    transition: all 0.25s ease;
}
.nav-logo a {
    display: block;
    width: 100%;
    height: auto;
    max-width: 72px;
    transition: all 0.25s ease-in-out;
}
header.menuscrolled .nav-logo {
    padding-top: 10px;
}
header.menuscrolled-override .nav-logo {
    padding-top: 10px !important;
}
.nav-links {
    justify-content: right;
    gap: 40px;
    padding: 50px 0 10px 0;
    display: inline-flex;
    transition: all 0.25s ease;
}
header.menuscrolled .nav-links {
    padding-top: 10px;
}
header.menuscrolled-override .nav-links {
    padding-top: 10px !important;
}
.nav-avatar-link {
    background: none !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 22px !important;
    width: 100%;
    padding: 8px 0 !important;
}
.nav-avatar-link:hover::before {
    transform: scaleX(0) !important;
}
.nav-avatar-img {
    width: 100%;
    max-width: 50px;
    height: auto;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}
.nav-avatar-img-small {
    width: 100%;
    max-width: 48px !important;
    height: auto;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}
.nav-user-popup {
    display: block;
    position: absolute;
    bottom: -10px;
    left: -100px;
    transform: translateY(100%);
    width: auto;
    height: 0;
    opacity: 0;
    pointer-events: none;
    background: rgba(14,15,17,0.84);
    backdrop-filter: saturate(180%) blur(5px);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    border: 1px solid #282d33;
    padding: 10px 18px;
    transition: all 0.4s cubic-bezier(0, 0, 0, 1) 0s;
    -webkit-transition: all 0.4s cubic-bezier(0, 0, 0, 1) 0s;
}
.nav-user-popup.active {
    height: 180px;
    opacity: 1;
    pointer-events: initial;
}
.nav-login-btn {
    display: block;
    color: black !important;
    border-radius: 5px;
    padding: 14px 24px !important;
    background: linear-gradient(135deg,var(--primary),var(--primary),var(--primary2));
    background-size: 200% auto;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    overflow: hidden;
    box-shadow: 0px 0px 0px 0.5px var(--primary2);
}
.nav-login-btn:hover {
    background-position: right center;
    box-shadow: 3px 3px 12px 0.5px var(--primary2);
}
.nav-login-btn::before {
    background-color: transparent !important;
}

/* ------------------------------------------------------                    Mobile Nav                     ------------------------------------------------------ */

header.menuscrolled .header-mobile  {
    padding: 10px 0;
}
header.menuscrolled-override .header-mobile  {
    padding: 10px 0 !important;
}
.header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease-in-out;
}
.header-mobile img {
    width: 100%;
    max-width: 60px;
    height: auto;
}
.nav-menu-bars {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.nav-menu-bars.light-mode .nav-menu-bar {
    background-color: black;
}
header.menuscrolled .nav-menu-bars.light-mode .nav-menu-bar {
    background-color: white;
}
.nav-menu-bar {
    width: 30px;
    height: 3px;
    background-color: white;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0, 0, 0, 1) 0s;
    -webkit-transition: all 0.4s cubic-bezier(0, 0, 0, 1) 0s;
}
.nav-menu-bars.side-menu-active .bar-1 {
    transform: rotate(-135deg) translate(-6px,-5.5px);
}
.nav-menu-bars.side-menu-active .bar-2 {
    opacity: 0;
}
.nav-menu-bars.side-menu-active .bar-3 {
    transform: rotate(-45deg) translate(6px,-5.5px);
}
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(14,15,17,0.64);
    backdrop-filter: saturate(180%) blur(5px);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    display: none;
    z-index: 1000000000;
}
.page-overlay.side-menu-active {
    display: block;
}
.side-menu {
    display: none;
    position: fixed;
    top: 78px;
    right: -400px;
    height: 100%;
    min-height: 100vh;
    width: 100%;
    max-width: 375px;
    padding: 50px 20px 50px 40px;
    opacity: 0;
    overflow-y: scroll;
    z-index: 1000000000000;
    transition: all 0.4s cubic-bezier(0, 0, 0, 1) 0s;
    -webkit-transition: all 0.4s cubic-bezier(0, 0, 0, 1) 0s;
}
.side-menu-img {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin: 50px 0;
}
.side-menu.side-menu-active {
    background: rgba(14,15,17,0.84);
    right: 0;
    opacity: 1;
    backdrop-filter: saturate(180%) blur(5px);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    border-left: 1px solid #282d33;
}
.side-menu-links {
    width: 100%;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
}
.side-menu-links ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.side-menu.side-menu-active .side-menu-links {
    transform: translateX(0);
    opacity: 1;
}
.side-menu-links a {
    display: block;
    color: white;
    position: relative;
    width: 100%;
    padding: 24px 0;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1px;
    font-weight: 700;
    border-bottom: 1px solid #333;
}
.side-menu-links li.current-menu-item a {
    background: -webkit-linear-gradient(var(--primary), var(--primary2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ----------------------------------------------------                    Footer Content                     ---------------------------------------------------- */

footer {
    position: relative;
    margin-top: 150px;
    width: 100%;
    padding: 30px 0;
    border-top: 1.5px solid var(--primary);
    transition: border 0.35s ease-in-out;
}
footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to left, var(--primary), var(--primary2));
    top: -1.5px;
    left: 0;
}
.footer-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-donate-cont {    
    color: #eee;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
}
.footer-donate-cont a {
    color: var(--primary);
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
}
.footer-donate-cont a:hover {
    color: var(--primary);
}
.footer-donate-cont a p {
    color: white;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.25s ease-in-out;
}
.footer-donate-cont a:hover p {
    color: var(--primary);
}
.footer-social-links {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 18px 0;
}
.footer-social-links i {
    color: white;
    font-size: 20px;
    transition: all 0.25s ease-in-out;
}
.footer-social-links i.light-mode {
    color: #888;
}
.footer-social-links i.light-mode:hover {
    color: black;
}
.footer-social-links i:hover {
    color: var(--primary);
}
.footer-subcont {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.footer-cr {
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    color: #888;
    font-weight: 500;
}
.footer-sublinks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.footer-link {
    color: #888;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.footer-link:hover {
    color: var(--primary);
}
.footer-link.light-mode:hover {
    color: black;
}

/* ----------------------------------------------------                    Media Queries                     ---------------------------------------------------- */

@media only screen and (min-width: 1000px) {
    .page-overlay {
        display: none !important;
    }
}
@media only screen and (max-width: 1000px) {
    .header-main {
        display: none;
    }
    .nav-avatar-li {
        display: none;
    }
    .header-mobile {
        display: flex;
        padding: 40px 0 20px 0;
    }
    .side-menu {
        display: block;
    }
    .nav-login-btn {
        text-align: center;
        margin-top: 35px;
    }
    footer {
        margin-top: 120px;
    }
}
@media only screen and (max-width: 450px) {
    .footer-subcont {
        flex-direction: column;
        gap: 5px;
    }
}
@media only screen and (max-width: 400px) {
    .side-menu {
        max-width: initial;
        border-left: none;
    }
}
@media only screen and (max-width: 340px) {
    .sc-menu-item {
        font-size: 22px;
        width: 38px;
    }
    .sc-bottom-bar {
        padding: 16px 24px;
    }
}