div.e-con-inner:has(header) {
    padding: 0 !important;
}

header {
    display: flex;
    align-items: center;
}

.logo_layout {
    width: 25%;
}

.logo_link {
    position: relative;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo_link:after {
    content: "";
    z-index: -1;
    position: absolute;
    left: auto;
    right: -1rem;
    height: 100%;
    bottom: 0;
    width: 800%;
    display: block;
    -webkit-transform: skew(20deg);
    -ms-transform: skew(20deg);
    transform: skew(20deg);
    line-height: 1;
    background-color: #12101c;
}

.dcsoft-header-game-style {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 55%;
}

ul.dcsoft-header-game-style li {
    position: relative;
}

.dcsoft-header-game-style li a {
    padding: 1.5rem 1rem;
    text-transform: uppercase;
    color: #1c192c;
    font-weight: 500;
}

.dcsoft-header-game-style ul.sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #1c192c;
    padding: 1.4em 0;
    transition: all 0.5s ease;
}

ul.dcsoft-header-game-style li a:hover,
ul.dcsoft-header-game-style li.current-menu-item a {
    color: #ee5307;
}

ul.dcsoft-header-game-style li:hover ul.sub-menu {
    display: block;
    position: absolute;
    width: 15em;
    top: 2.5em;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
	z-index: 10;
}

.dcsoft-header-game-style ul.sub-menu li a {
    color: #cdcdd5 !important;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
}

.header_social {
    position: relative;
    width: 20%;
    overflow: hidden;
}

.list_social {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-left: 4rem;
}

.header_social a {
    color: #727279;
}

.header_social:before {
    background-color: #f6f6f6;
    content: "";
    z-index: -1;
    bottom: 0;
    position: absolute;
    left: 1rem;
    right: auto;
    height: 4rem;
    width: 36rem;
    display: block;
    -webkit-transform: skew(20deg);
    -ms-transform: skew(20deg);
    transform: skew(20deg);
}

.header_social i {
    font-size: 1.5rem;
}

.menu_mobile {
    display: none;
}

.header_social span {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(50%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 500px) {
    .dcsoft-header-game-style {
        display: none;
    }

    .logo_layout {
        width: 50%;
    }
    .header_social {
        position: relative;
        width: 50%;
        overflow: hidden;
    }

    .header_social a {
        display: none;
    }

    .header_social span {
        display: inline-flex;
    }

    .list_social {
        gap: 2rem;
    }

    .menu_mobile {
        position: fixed;
        z-index: 100002;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        -webkit-transition: height 0.3s ease;
        transition: height 0.3s ease;
        background-color: #12101c;
    }

    .menu_mobile.opened {
        height: 100%;
        padding: 2rem 1rem;
        display: block;
        animation: slideDown 0.5s ease-out forwards;
    }

    .menu_mobile.opened .dcsoft-header-game-style {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .menu_mobile.opened .dcsoft-header-game-style li a {
        color: #fff;
    }

    .menu_mobile.opened span.close {
        display: block;
        color: #fff;
        text-align: right;
        font-size: 30px;
    }

    ul.dcsoft-header-game-style li {
        width: 100%;
        line-height: 2.5;
        display: flex;
        flex-direction: column;
    }

    .dcsoft-header-game-style li a {
        padding: 0;
        color: #fff;
        width: 100%;
        display: inline-flex;
        justify-content: space-between;
    }

    .open_child_menu i {
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.1);
        padding: 0.5rem;
    }

    .menu_mobile.opened ul.dcsoft-header-game-style ul.sub-menu {
        display: none;
        list-style: none;
        margin: 0;
        background-color: unset;
        padding: 0 0 0 1rem;
        transition: all 0.5s ease;
    }

    .menu_mobile.opened ul.dcsoft-header-game-style li.menu-item-has-children.opened ul.sub-menu {
        display: block;
        position: relative;
        width: 100%;
        top: 0;
        animation: slideUp 0.8s ease-out forwards;
        opacity: 0;
    }

    .menu_mobile.opened ul.dcsoft-header-game-style li.menu-item-has-children a span.open_child_menu {
        transform: rotateZ(0deg);
        transition: all 0.5s ease;
    }

    .menu_mobile.opened ul.dcsoft-header-game-style li.menu-item-has-children.opened a span.open_child_menu {
        transform: rotateZ(180deg);
        transition: all 0.5s ease;
    }

    ul.dcsoft-header-game-style li.current-menu-item.current_page_item > a {
        color: #28ae4e;
    }

    .header_mobile_social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .menu_mobile.opened hr {
        height: 0.1rem;
        width: calc(100% - 5rem);
        background-color: #28ae4e;
        margin: 1rem 2.5rem;
    }

    .header_mobile_social a {
        color: #28ae4e;
    }

    .header_mobile_social i {
        font-size: 1.5rem;
    }
}










