* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.site-header {
    width: 100%;
    position: relative;
    z-index: 9999;

    border-top: 1px solid #6fff69;
    border-bottom: 1px solid #071b08;

    background:
        linear-gradient(
            180deg,
            #091b0b 0%,
            #058b12 16%,
            #10a81d 45%,
            #0b7e18 65%,
            #071b09 100%
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.35),
        inset 0 -2px 5px rgba(0,0,0,.8),
        0 3px 12px rgba(0,0,0,.45);
}


.site-header::before,
.site-header::after,
.header-main::before,
.header-main::after {
    content: "";
    position: absolute;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff 0%,
            #bdbdbd 18%,
            #606060 45%,
            #202020 68%,
            #050505 100%
        );

    border: 1px solid #0b0b0b;

    box-shadow:
        inset 0 0 2px rgba(255,255,255,.7),
        0 1px 3px rgba(0,0,0,.8);

    z-index: 20;
}

/* baut atas */
.site-header::before {
    top: 7px;
    left: 10px;
}

.site-header::after {
    top: 7px;
    right: 10px;
}

/* baut bawah */
.header-main::before {
    bottom: 7px;
    left: 10px;
}

.header-main::after {
    bottom: 7px;
    right: 10px;
}


.header-main {
    min-height: 68px;

    position: relative;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 0 6%;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.02) 35%,
            rgba(0,0,0,.18) 80%,
            rgba(0,0,0,.28)
        );
}

.header-main::selection {
    background: #59ff64;
}


.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-right {
    justify-content: flex-end;
}

.header-main a {
    position: relative;

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    text-shadow:
        0 1px 2px #000,
        0 0 7px rgba(66,255,88,.25);

    transition:
        color .25s ease,
        text-shadow .25s ease,
        transform .25s ease;
}

.header-main a:hover {
    color: #9cff8e;

    text-shadow:
        0 0 5px #38ff4c,
        0 0 14px rgba(38,255,68,.8);

    transform: translateY(-1px);
}


.header-logo {
    padding: 0 55px;
}

.header-logo a {
    text-decoration: none;
}

img.logo-icon {
    height: 40px;
    width: 40px;
}


.header-logo span {
    display: inline-block;

    font-size: 29px;
    font-weight: 900;
    font-style: italic;

    letter-spacing: 1px;

    background:
        linear-gradient(
            180deg,
            #e9ffe8 0%,
            #79ff65 25%,
            #20b92c 50%,
            #0a6112 73%,
            #abff7d 100%
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    filter:
        drop-shadow(0 2px 0 #062508)
        drop-shadow(0 0 7px rgba(60,255,75,.6));
}


.slot-btn {
    padding: 9px 22px;

    border-radius: 24px;

    color: #051306 !important;

    border:
        1px solid #a8ff9e;

    background:
        linear-gradient(
            180deg,
            #b6ffa8 0%,
            #53e24b 30%,
            #159921 60%,
            #086611 100%
        );

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.7),
        inset 0 -2px 3px rgba(0,0,0,.4),
        0 0 9px rgba(51,255,69,.35);

    text-shadow:
        0 1px 0 rgba(255,255,255,.45);
}

.slot-btn:hover {
    color: #fff !important;

    box-shadow:
        inset 0 1px 3px rgba(255,255,255,.8),
        0 0 15px rgba(51,255,69,.75);
}


.utility-bar {
    min-height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 38px;
    background: linear-gradient(180deg, #521313 0%, #05210c 50%, #d41c1c 100%);
    border-top: 1px solid rgba(122, 255, 122, .25);
    border-bottom: 1px solid #356f38;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .06);
}

.utility-right {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 12px;
}

.utility-link,
.store-link {
    color: #eeeeee;

    text-decoration: none;

    font-size: 12px;

    transition: .2s ease;
}

.utility-link:hover,
.store-link:hover {
    color: #70ff72;
}

.store-link {
    font-weight: 700;
}

.separator {
    width: 1px;
    height: 15px;

    background:
        linear-gradient(
            transparent,
            #6dff6d,
            transparent
        );

    opacity: .55;
}


.language-switcher {
    position: relative;
}


.language-button {
    min-width: 126px;
    height: 30px;

    padding: 0 11px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 7px;

    cursor: pointer;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    border: 1px solid rgba(103,255,110,.32);

    border-radius: 5px;

    background:
        linear-gradient(
            180deg,
            #1f5224 0%,
            #123816 50%,
            #081b0b 100%
        );

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.16),
        0 0 5px rgba(53,255,70,.15);

    transition: .25s ease;
}

.language-button:hover,
.language-button.active {
    border-color: #62ff70;

    background:
        linear-gradient(
            180deg,
            #328138 0%,
            #185c1e 50%,
            #0b2a0e 100%
        );

    box-shadow:
        0 0 10px rgba(58,255,71,.45),
        inset 0 1px 2px rgba(255,255,255,.25);
}

/* panah */

.language-arrow {
    display: inline-block;

    font-size: 10px;

    transition:
        transform .25s ease;
}

.language-button.active .language-arrow {
    transform: rotate(180deg);
}


.language-menu {
    position: absolute;

    top: calc(100% + 6px);
    right: 0;

    width: 170px;

    padding: 5px;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-8px)
        scale(.98);

    transform-origin: top right;

    background:
        linear-gradient(
            145deg,
            #143b18,
            #071a09 60%,
            #020703
        );

    border: 1px solid #347b39;

    border-radius: 7px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 9px 25px rgba(0,0,0,.7),
        0 0 14px rgba(42,255,58,.18);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s;

    overflow: hidden;

    z-index: 99999;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}

.language-menu a {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 11px 12px;

    color: #f3f3f3;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    border-radius: 5px;

    transition:
        background .2s ease,
        color .2s ease,
        padding-left .2s ease;
}

.language-menu a:hover {
    padding-left: 17px;

    color: #afffa4;

    background:
        linear-gradient(
            90deg,
            rgba(45,165,54,.75),
            rgba(15,79,22,.3)
        );
}


.language-menu a.active-language {
    color: #adffa3;

    background:
        linear-gradient(
            90deg,
            rgba(45,170,56,.6),
            rgba(9,51,14,.3)
        );
}


@media (max-width: 1100px) {

    .header-main {
        padding: 0 25px;
    }

    .nav-left,
    .nav-right {
        gap: 18px;
    }

    .header-logo {
        padding: 0 25px;
    }
}

@media (max-width: 800px) {

    .header-main {
        display: flex;

        flex-direction: column;

        gap: 14px;

        padding: 15px 20px;
    }

    .header-logo {
        order: -1;

        padding: 0;
    }

    .nav-left,
    .nav-right {
        width: 100%;

        justify-content: center;

        gap: 15px;

        flex-wrap: wrap;
    }

    .utility-bar {
        padding: 5px 12px;

        min-height: 40px;
    }

    .utility-right {
        width: 100%;

        justify-content: flex-end;
    }

    .language-menu {
        right: 0;
    }
}