:root {
    --gc-gold: #d7aa3d;
    --gc-gold-light: #f2ce72;
    --gc-bg: #050708;
    --gc-panel: #0d1116;
    --gc-line: rgba(255,255,255,.08);
    --gc-gold-line: rgba(215,170,61,.24);
    --gc-text: #f3f3f3;
    --gc-muted: #858e98;
}

.gc-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;

    background:
        rgba(5,7,8,.96);

    backdrop-filter:
        blur(15px);

    border-bottom:
        1px solid
        var(--gc-gold-line);
}

.gc-header-inner {
    width: 100%;
    max-width: 1450px;

    min-height: 74px;

    margin: auto;

    padding:
        0 25px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 25px;
}

.gc-brand {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 11px;

    text-decoration: none;
}

.gc-logo {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border:
        2px solid
        var(--gc-gold);

    border-radius: 50%;

    color:
        var(--gc-gold-light);

    font-family:
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 900;
}

.gc-brand-name {
    color:
        var(--gc-gold-light);

    font-family:
        Georgia,
        serif;

    font-size: 20px;

    letter-spacing: 2px;
}

.gc-brand-sub {
    margin-top: 4px;

    color: #9e936f;

    font-family:
        Arial,
        sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;
}

.gc-nav {
    display: flex;

    align-items: center;

    gap: 4px;
}

.gc-nav a {
    min-height: 38px;

    padding:
        0 10px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    color: #aeb5bd;

    text-decoration: none;

    font-family:
        Arial,
        sans-serif;

    font-size: 12px;

    white-space: nowrap;

    transition:
        background .2s,
        color .2s,
        border-color .2s;
}

.gc-nav a:hover,
.gc-nav a.gc-active {
    color:
        var(--gc-gold-light);

    background:
        rgba(215,170,61,.06);
}

.gc-dashboard-link,
.gc-login-link {
    color:
        var(--gc-gold-light)
        !important;
}

.gc-register-link {
    margin-left: 4px;

    padding:
        0 15px
        !important;

    color: #050708
        !important;

    background:
        linear-gradient(
            135deg,
            #d7aa3d,
            #f2ce72
        )
        !important;

    font-weight: bold;
}

.gc-footer {
    width: 100%;

    margin-top: 60px;

    border-top:
        1px solid
        rgba(215,170,61,.16);

    background: #050708;
}

.gc-footer-inner {
    width: 100%;

    max-width: 1450px;

    margin: auto;

    padding:
        32px 25px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 30px;
}

.gc-footer-brand {
    color:
        var(--gc-gold-light);

    font-family:
        Georgia,
        serif;

    font-size: 17px;

    letter-spacing: 2px;
}

.gc-footer-text {
    margin-top: 4px;

    color: #777f86;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.gc-footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap:
        8px 18px;
}

.gc-footer-links a {
    color: #7f878e;

    text-decoration: none;

    font-size: 11px;
}

.gc-footer-links a:hover {
    color:
        var(--gc-gold-light);
}

.gc-footer-copy {
    color: #626a71;

    font-size: 10px;

    white-space: nowrap;
}

@media(max-width:1050px) {

    .gc-header-inner {
        flex-wrap: wrap;

        padding:
            13px 18px;
    }

    .gc-brand {
        width: 100%;
    }

    .gc-nav {
        width: 100%;

        overflow-x: auto;

        padding-bottom: 3px;

        justify-content:
            flex-start;

        scrollbar-width: none;
    }

    .gc-nav::-webkit-scrollbar {
        display: none;
    }

    .gc-nav a {
        flex-shrink: 0;
    }

    .gc-footer-inner {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .gc-footer-links {
        justify-content: center;
    }

    .gc-footer-copy {
        white-space: normal;
    }
}

@media(max-width:600px) {

    .gc-header-inner {
        padding:
            12px 15px;
    }

    .gc-logo {
        width: 39px;
        height: 39px;
    }

    .gc-brand-name {
        font-size: 18px;
    }

    .gc-nav a {
        min-height: 35px;

        padding:
            0 9px;

        font-size: 11px;
    }

    .gc-footer {
        margin-top: 45px;
    }

    .gc-footer-inner {
        padding:
            28px 18px;
    }
}