* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #04070d;
    --card: rgba(6, 16, 24, 0.82);

    --purple: #4fc3d7;
    --purple-light: #7de3f2;

    --text: #ffffff;
    --muted: #b7c6cf;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;

    background: #02050b;

    color: var(--text);

    min-height: 100vh;

    overflow-x: hidden;

    animation: pageFadeIn 0.25s ease-out;
}

body::before {
    content: "";

    position: fixed;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,7,13,0.66) 0%,
            rgba(4,7,13,0.42) 22%,
            rgba(4,7,13,0.18) 50%,
            rgba(4,7,13,0.42) 78%,
            rgba(4,7,13,0.66) 100%
        ),
        linear-gradient(
            180deg,
            rgba(4,7,13,0.78) 0%,
            rgba(4,7,13,0.26) 35%,
            rgba(4,7,13,0.42) 100%
        ),
        url("../cover.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -10;

    pointer-events: none;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-container {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0;
}

/* =========================
   NAVBAR
========================= */

#navbar-container {
    width: 100%;

    position: sticky;
    top: 0;

    z-index: 100;

    background: transparent;

    overflow: visible;
}

#navbar-container::after {
    content: "";

    position: fixed;

    left: 0;
    right: 0;
    top: 0;

    height: 150px;

    pointer-events: none;

    z-index: -1;

    background: linear-gradient(
        to bottom,
        rgba(2,5,11,1) 0%,
        rgba(2,5,11,0.95) 35%,
        rgba(2,5,11,0.55) 65%,
        rgba(2,5,11,0) 100%
    );
}

.site-nav {
    width: 100%;

    height: 78px;

    padding-left: 60px;
    padding-right: 60px;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: none;

    background: transparent;

    position: relative;
    z-index: 2;
}

.brand {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.navbar-logo {
    height: 100px;
    width: auto;
    margin-top: 15px;

    display: block;
}

.brand strong {
    display: block;

    font-size: 28px;

    color: var(--purple);

    font-weight: 1000;
}

.brand span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    letter-spacing: 3px;

    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 42px;
}

.nav-links a {
    text-decoration: none;

    color: white;

    font-weight: 800;
    font-size: 16px;

    transition: .2s;
}

.nav-links a:hover {
    color: #e7dfc5;

    text-shadow:
        0 0 10px rgba(214,190,120,.35);
}

.nav-links a.active {
    color: #e7dfc5;

    text-shadow: 0 0 18px rgba(125,227,242,.45);
}

.discord-button,
.primary-button {

    min-width: 150px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    border: 0px solid rgba(214,190,120,.18);
    border-radius: 14px;

    color: #e7dfc5;

    font-weight: 1000;
    font-size: 16px;

    letter-spacing: .04em;
    text-decoration: none;

    background:
        linear-gradient(
            180deg,
            rgba(95,95,70,.95) 0%,
            rgba(55,55,38,.95) 55%,
            rgba(35,35,24,.95) 100%
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 0 20px rgba(214,190,120,.08);

    text-shadow:
        0 2px 4px rgba(0,0,0,.8);

    transition: .18s ease;

    cursor: pointer;
}
.discord-button:hover,
.primary-button:hover {

    transform: translateY(-1px);

    filter: brightness(1.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 0 26px rgba(214,190,120,.14);
}

.discord-button:active,
.primary-button:active {

    transform: translateY(1px);
}
/* =========================
   CARDS
========================= */

.card {
    background: rgba(6, 16, 24, 0.88);

    border: 1px solid rgba(79,195,215,0.22);

    border-radius: 20px;

    backdrop-filter: blur(12px);

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.02),
        0 0 50px rgba(79,195,215,0.08);
}

/* =========================
   TYPOGRAPHY
========================= */

.page-title {
    font-size: clamp(42px, 6vw, 68px);

    letter-spacing: -2px;

    margin-bottom: 16px;
}

.page-description {
    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;
}

/* =========================
   BUTTONS
========================= */

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(16, 32, 44, 0.95);

    border: 1px solid rgba(255,255,255,.06);

    color: white;

    text-decoration: none;

    padding: 14px 18px;

    border-radius: 14px;

    font-weight: 700;

    transition: .2s;
}

.back-button:hover {
    background: rgba(24, 44, 58, 0.95);

    transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */

footer {
    margin-top: 60px;

    text-align: center;

    color: #7f97a3;

    font-size: 15px;

    padding-bottom: 40px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .page-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-nav {
        height: auto;

        padding: 24px 20px;

        flex-wrap: wrap;

        gap: 20px;
    }

    .nav-links {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 18px;
    }
}

