#header {
    height: 90px;
    width: 100%;
    position: fixed;
    border-bottom: 1px solid #8300A1;
    background: linear-gradient(180deg, rgba(33, 0, 57, 0.72) 0%, rgba(17, 0, 29, 0.72) 100%);
    backdrop-filter: blur(11px);
    padding: 9px 64px;
    z-index: 1000;
}

.header_wrapper {
    max-width: 1792px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 375px 1fr;
    align-items: center;
    justify-content: space-between;
}

.logo {
    padding: 0 0 0 9px;
}

.logo_pic {
    background-image: url(../assets/logo_d.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 160px;
    height: 48px;
    transition: all 0.3s ease;
}

.logo_pic:hover {
    transform: scale(1.02);
}

.header_timer {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 8px 0;
    gap: 14px;
}

.header_timer_text {
    color: #DD00FF;
    text-align: right;
    font-family: Evolventa Bold;
    font-size: 18px;
    font-style: normal;
    line-height: 20px;
    max-width: 88px;
}

.header_timer_body {
    position: relative;
    text-align: center;
    font-family: Evolventa Bold;
    font-size: 36px;
    font-style: normal;
    line-height: 100%;
}

.header_timer_body span span:nth-child(1) {
    display: block;
    width: fit-content;
    height: fit-content;
    border-radius: 0;
    padding-top: 0px;
    margin: 0 auto;
}

.header_timer_body>span {
    display: inline-block;
    position: relative;
    text-align: center;
    margin-left: 10px;
    width: 50px;
}

.header_timer_body .timer-title {
    color: #FFF;
    text-align: center;
    font-family: Evolventa bold;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    padding-top: 1px;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
}

.header_server {
    display: flex;
    align-items: center;
    gap: 8px;
}

.server_item {
    display: flex;
    width: 124px;
    height: 37px;
    padding: 8px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 43.339px;
    border: 2px solid #5C5C5C;

    text-align: center;
    font-family: Evolventa Bold;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.48px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.server_item img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(4%) saturate(19%) hue-rotate(346deg) brightness(97%) contrast(89%);
}

.server_item:hover {
    border: 2px solid #9F9F9F;
}

.server_item:hover img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(0%) saturate(0%) hue-rotate(154deg) brightness(89%) contrast(80%);
}

#fire.active_server {
    border: 2px solid #ff0000;
    background: #ff00001f;
    color: #FF0D0D;
}

#fire.active_server img {
    filter: none;
}

#water.active_server {
    border: 2px solid #008CFF;
    background: #008cff1f;
    color: #008CFF;
}

#water.active_server img {
    filter: none;
}

.dropdown {
    position: relative;
    color: #FFFFFF;
    font-family: Evolventa Bold;
    font-size: 18px;
    font-style: normal;
    line-height: 24px;
    text-transform: uppercase;
}

.dropdown>a::after {
    display: inline-block;
    content: "\f107";
    font-family: FontAwesome;
    margin-left: 8px;
    font-size: 18px;
    transition: .2s linear;
}

.dropdown>a.active::after {
    transform: rotate(180deg);
}

.dropdown-content ul {
    list-style-type: none;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    gap: 10px;
    white-space: nowrap;
}

.dropdown-content {
    position: absolute;
    top: 37px;
    left: 0px;
    z-index: 3;
    display: none;
    min-width: 56px;
    height: auto;
    border-radius: 6px;
    border: 1px solid #8300A1;
    background: #210039;
    backdrop-filter: blur(11px);
}

.dropdown-item {
    text-align: center;
}

@media (max-width: 1200px) {
    #header {
        padding: 9px 32px;
    }

    .server_item span {
        display: none;
    }

    .server_item {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        padding: 0;
    }
}

@media (max-width: 920px) {
    #header {
        height: 72px;
        padding: 8px 16px;
    }

    .header_timer_text {
        text-align: right;
        font-size: 12px;
        line-height: 16px;
        max-width: 100%;
    }

    .header_timer_body {
        text-align: center;
        font-size: 22px;
        line-height: 100%;
    }

    .header_timer_body .timer-title {
        text-align: center;
        font-size: 12px;
        line-height: normal;
        padding-top: 0px;
    }

    .header_timer_body>span {
        margin-left: 8px;
        width: auto;
    }

    .logo {
        display: none;
    }

    .header_wrapper {
        display: flex;
    }

    .dropdown {
        font-size: 14px;
    }

    .dropdown > a::after {
        margin-left: 4px;
    }

    .header_right {
        gap: 20px;
    }

    .header_right ul {
        font-size: 14px;
    }

    .header_timer {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 4px;
    }

    .header_timer_body>span:first-child {
        margin-left: 0;
    }

}