@font-face {
    font-family: "SVN-Avo";
    src: url("../fonts/SVN-Avo.ttf");
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes gz-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes jelly {

    0%,
    100% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}

@keyframes lightSweep {
    0% {
        -webkit-mask-position: 150% 0;
        mask-position: 150% 0;
    }

    100% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

@keyframes lightBlink {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }

    100% {
        filter: brightness(1);
    }
}

@keyframes zoomBtn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.11);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes dotPulseRed {
    0% {
        box-shadow: 0 0 0 0 #fb2424;
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 158, 66, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 158, 66, 0);
    }
}

@keyframes letterBounce {

    0%,
    16%,
    100% {
        transform: translateY(0);
    }

    8% {
        transform: translateY(-15px);
    }
}

@keyframes slideDownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-zoom {
    animation: zoomBtn .6s ease-in-out infinite;
}

.lightSweep {
    position: absolute;
    animation: lightSweep 3s linear 1s infinite;
    inset: 0;
    filter: brightness(2);
    margin: auto;
    -webkit-mask-image: -webkit-linear-gradient(-45deg, #fff0 40%, #fff 50%, #fff0 60%);
    mask-image: -webkit-linear-gradient(-45deg, #fff0 40%, #fff 50%, #fff0 60%);
    -webkit-mask-size: 300% 200%;
    mask-size: 300% 200%;
    z-index: 1;
    overflow: hidden;
}



* {
    box-sizing: border-box;
    font-family: "SVN-Avo";
}

body,
ul,
li,
p {
    margin: 0;
}

li {
    list-style: none;
}

::-webkit-scrollbar {
    display: none;
}

.gz-article-loading_item {
    border: 0.8vw dotted #EADCB5;
    animation: 1s gz-loading linear infinite;
}

.gz-article-loading_item {
    position: relative;
    border-radius: 50px;
    width: 5vw;
    height: 5vw;
    transform: rotateZ(45deg);
}

img {
    vertical-align: middle;
    border-style: none;
    height: 100%;
}

img.desk,
img.default {
    display: block;
    width: 100%;
}

img.mobi,
img.active {
    display: none;
    width: 100%;
}

@media (max-width: 767px) {
    img.desk {
        display: none;
    }

    img.mobi {
        display: block;
    }


    .gz-article-loading_item {
        width: 12vw;
        height: 12vw;
        border: 1.8vw dotted #EADCB5;
    }
}

.btn {
    cursor: pointer;
    width: 100%;
}

.btn:hover img.default,
.btn.active img.default {
    display: none;
}

.btn:hover img.active,
.btn.active img.active {
    display: block;
}

.transform-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hidden {
    display: none !important;
}

.w-full {
    width: 100%;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-start {
    justify-content: flex-start;
}

.invisible {
    visibility: hidden;
    font-size: 1vw;
}

.gz-text-main {
    color: #416A6D;
}

.gz-AndroidOS {
    width: 76% !important;
}

.gz-brightness-125 {
    filter: brightness(125%);
}

/* LOADING */

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3771e0;
    z-index: 999;
}

#loading.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#loading {
    opacity: 1;
    transition: opacity 0.5s ease;
}

#loading .spinner {
    animation: spin 1s linear infinite;
    position: relative;
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    width: 180px;
    height: 180px;
}

#loading .logo {
    width: 6%;
}

/* LOADER */

.load-api {
    display: none;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    align-items: center;
    align-content: center;
    justify-content: center;
    z-index: 1000000;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.load-api .element {
    border-radius: 100%;
    border: 5px solid #FFF;
    margin: 10px;
}

.load-api .element:nth-child(1) {
    animation: preloader 0.6s ease-in-out alternate infinite;
}

.load-api .element:nth-child(2) {
    animation: preloader 0.6s ease-in-out alternate 0.2s infinite;
}

.load-api .element:nth-child(3) {
    animation: preloader 0.6s ease-in-out alternate 0.4s infinite;
}

@keyframes preloader {
    100% {
        transform: scale(2);
    }
}

header .main-header {
    position: absolute;
    top: unset;
    width: 100%;
    z-index: 6;
}

header .desk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44%;
    margin: auto;
    gap: 4vw;
    margin-top: 1vw;
}

header .desk img {
    width: 100%;
    transition: .3s ease-out;
    cursor: pointer;
}

header .desk a:hover img {
    transform: scale(1.10);
}

header .mobi {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5vw;
    padding-inline: 2vw;
    padding-block: 0.6vw;
    background-color: #281115;
}

@media (max-width: 767px) {
    header .main-header {
        position: fixed;
    }

    header .desk {
        display: none;
    }

    header .mobi {
        display: flex;
    }

    #loading .logo {
        width: 28%;
    }
}

header .mobi .logo {
    display: flex;
    align-items: center;
    gap: 2vw;
    line-height: 4vw;
}

header .mobi .logo img {
    height: 13.4vw !important
}

header .mobi .logo p {
    color: #EADCB5;
    font-size: 2.6vw;
    white-space: nowrap;
    font-weight: 600;
}

header .mobi .main-content {
    display: flex;
    align-items: center;
    gap: 3vw;
    justify-content: flex-end;
}

header .mobi .main-content .link_dowload {
    display: flex;
    align-items: center;
    gap: 3vw;
    width: 46%;
}

header #menu_mobile {
    opacity: 0;
    transition: 0.5s ease-in-out;
    transform: translateX(26vw);
    background-color: #000;
    padding-block: 1.6vw;
    padding-inline: 3vw;
    position: fixed;
    right: 0.5vw;
    margin-top: 0.5vw;
    z-index: 4;
    border-radius: 2vw;
    color: #fff;
    display: none;
}

header #menu_mobile.active {
    transform: translateX(0);
    opacity: 1;
    transition: 0.5s ease-in-out;
}

header #menu_mobile a img {
    width: 100%;
}

header #menu_mobile a {
    font-weight: 700;
    text-decoration: none;
    font-size: 3.6vw;
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
    gap: 1.4vw;
    border-bottom: 1px solid #fff;
    padding-block: 1.8vw;
}

header #menu_mobile a:last-child {
    border-bottom: none !important;
}

header #menu_mobile a span {
    width: 14%;
    margin-left: 1vw;
}

@media (max-width: 767px) {
    header #menu_mobile {
        display: block;
    }
}

#btn-menu_mobile {
    cursor: pointer;
    z-index: 1;
}

#btn-menu_mobile.active {
    position: relative;
    top: 0vw;
    width: 8vw;
    height: 8vw;
}

#btn-menu_mobile .item_menu {
    background-color: white;
    width: 8vw;
    height: 1.2vw;
    margin: 1vw 0vw;
    border-radius: 15px;
}

#btn-menu_mobile.active .top {
    position: absolute;
    top: 26%;
    transform: rotate(45deg);
    transition: 0.5s ease-in-out;
}

#btn-menu_mobile.active .center {
    display: none;
}

#btn-menu_mobile.active .bottom {
    position: absolute;
    top: 26%;
    transform: rotate(134deg);
    transition: 0.5s ease-in-out;
}

/* TAB 1 */

.tab1,
.tab2,
.tab3,
.tab4,
.tab5,
footer {
    position: relative;
    overflow: hidden;
}

.tab1 {
    display: flex;
    justify-content: center;
}

.tab1 .background {
    width: 100%;
}

.tab1 .logo-main {
    position: absolute;
    top: 2%;
    left: 1.2%;
    width: 15%;
}

.tab1 .warning {
    position: fixed;
    top: 24%;
    left: 0;
    width: 10.6%;
    z-index: 4;
}

.tab1 .list-btn {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 4%;
    width: 34%;
    gap: 2vw;
    display: flex;
    align-items: center;
}

.tab1 .list-btn a {
    cursor: pointer;
    width: 100%;
}

.tab1 .list-btn a img {
    width: 100%;
    transition: .3s;
}

.tab1 .list-btn a:hover img {
    transform: scale(1.1);
}

.tab1 .slogan {
    position: absolute;
    right: 11%;
    top: 8.6%;
    width: 42%;
}

.tab1 .btn-down-pc {
    position: absolute;
    right: 22%;
    bottom: 40%;
    width: 22%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.tab1 .btn-down-pc p {
    position: absolute;
    top: 52%;
    width: 48%;
    text-align: center;
    line-height: 1;
}

.tab1 .down-andr {
    position: absolute;
    right: 40.4%;
    bottom: 43.6%;
    width: 10%;
    cursor: pointer;
}

.tab1 .down-ios {
    position: absolute;
    right: 15.6%;
    bottom: 43.6%;
    width: 10%;
    cursor: pointer;
}

.tab1 .btn-wiki {
    position: absolute;
    right: 28%;
    bottom: 39.6%;
    width: 10%;
    cursor: pointer;
    z-index: 3;
}

.tab1 .btn-napthe {
    position: absolute;
    right: 27%;
    bottom: 28%;
    width: 12%;
    cursor: pointer;
}

.tab1 .frame-bar {
    position: absolute;
    left: 8%;
    bottom: 20%;
    width: 48%;
}

.tab1 .foot-infor {
    position: absolute;
    bottom: 14.4%;
    width: 74%;
    display: flex;
    align-items: center;
}

.tab1 .foot-infor p,
.tab1 .foot-infor a {
    position: absolute;
    color: #EADCB5;
    font-size: 1.04vw;
}

.tab1 .foot-infor a {
    cursor: pointer;
    left: 39.2%;
    text-decoration: none;
}

.tab1 .foot-infor a:hover {
    text-decoration: underline;
}

.tab1 .foot-infor p.title {
    left: 6.4%;
}

.tab1 .foot-infor p.publisher {
    right: 3.1%;
}

@media (max-width: 767px) {
    .tab1 .logo-main {
        display: none;
    }

    .tab1 .warning {
        top: 17%;
        width: 13%;
    }

    .tab1 .list-btn {
        display: none;
    }

    .tab1 .slogan {
        width: 102%;
        top: 40%;
        right: unset;
        z-index: 1;
    }

    .tab1 .btn-down-pc {
        right: unset;
        bottom: 22%;
        width: 51%;
    }

    .tab1 .down-andr {
        right: unset;
        left: 7%;
        bottom: 24.6%;
        width: 26%;
    }

    .tab1 .down-ios {
        right: 7%;
        bottom: 24.6%;
        width: 26%;
    }

    .tab1 .btn-wiki {
        right: unset;
        bottom: 21.2%;
        width: 26%;
    }

    .tab1 .btn-napthe {
        right: unset;
        bottom: 11%;
        width: 36%;
    }

    .tab1 .frame-bar {
        left: unset;
        bottom: 1%;
        width: 100%;
    }

    .tab1 .foot-infor {
        display: none;
    }

    .tab1 .foot-infor p {
        font-size: 3.1vw;
        left: 15.8% !important;
    }

    .tab1 .foot-infor p:nth-child(3) {
        top: 10%;
    }

    .tab1 .foot-infor p:nth-child(5) {
        right: unset;
        bottom: 10%;
    }
}

/* LANDING */
.landing {
    /* background-image: url(../images/bg-desk.webp?v=3); */
    background-image: url(https://cdn.gzone.tech/website/s06/home2026-05-19/publics/images/bg-desk.webp?v=3);
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 767px) {
    .landing {
        /* background-image: url(../images/bg-mobi.webp?v=2); */
        background-image: url(https://cdn.gzone.tech/website/s06/home2026-05-19/publics/images/bg-mobi.webp?v=2);
    }

}

/* TAB 2 */
.tab2 .title {
    width: 20.6%;
    margin-inline: auto;
    margin-top: 2.6%;
}

.tab2 .content {
    width: 64%;
    margin-inline: auto;
}

.tab2 .content .top {
    width: 100%;
    position: relative;
}

.tab2 .content .swiperTab2 {
    overflow-x: hidden;
    width: 98%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.tab2 .swiper-slide {
    width: 100%;
}

.tab2 .swiper-pagination-tab2 {
    position: absolute;
    width: fit-content !important;
    right: 3% !important;
    left: unset !important;
    bottom: 3% !important;
}

.tab2 .swiper-pagination-bullet {
    /* background-image: url(../images/tab2//pagi-tab2.webp) !important; */
    background-image: url(https://cdn.gzone.tech/website/s06/home2026-05-19/publics/images/tab2/pagi-tab2.webp);
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    opacity: 1 !important;
    width: 1.8vw !important;
    height: 1.8vw !important;
    margin: 0 0.5vw !important;
}

.tab2 .swiper-pagination-bullet-active {
    /* background-image: url("../images/tab2//pagi-tab2-active.webp") !important; */
    background-image: url(https://cdn.gzone.tech/website/s06/home2026-05-19/publics/images/tab2/pagi-tab2-active.webp);
}

.tab2 .content .bottom {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 0.8vw;
    margin-top: 0.4vw;
}

.tab2 .content .bottom .left {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 40%;
    gap: 0.8vw;
}

.tab2 .content .bottom .infor-server {}

.tab2 .content .bottom .infor-server .title-infor {
    width: 98%;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.tab2 .content .bottom .infor-server .content-infor {
    position: relative;
    margin-top: -1.6vw;
    display: flex;
    justify-content: center;
}

.tab2 .content .bottom .infor-server .content-infor .mission-table {
    border-collapse: collapse;
    color: #F6DA9B;
    font-family: sans-serif;
    font-size: 1vw;
    position: absolute;
    top: 8%;
}

.tab2 .content .bottom .infor-server .content-infor .mission-table td {
    padding: 0.46vw 1vw;
    white-space: nowrap;
    font-size: 1vw;
}

.tab2 .content .bottom .infor-server .content-infor .mission-table td:first-child {
    text-align: right;
    font-weight: 700;
    border-right: 1px solid #d89b4b;
}

.tab2 .content .bottom .infor-server .content-infor .mission-table td:last-child {
    text-align: left;
}

.tab2 .content .bottom .infor-server .qr-infor {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab2 .content .bottom .infor-server .qr-infor .list-item-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 82%;
    margin-inline: auto;
    gap: 1vw;
}

.tab2 .content .bottom .infor-server .qr-infor .list-item-qr .qr-zalo {
    width: 100%;
    cursor: pointer;
}

.tab2 .content .bottom .infor-server .qr-infor .list-item-qr .list-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.6vw;
    width: 62%;
}

.tab2 .content .bottom .infor-server .qr-infor .list-item-qr .list-link div {
    cursor: pointer;
}

.tab2 .content .bottom .right {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.tab2 .content .bottom .right .list-btn-table {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0.8vw;
    width: 98%;
    z-index: 1;
    margin-inline: auto;
}

.tab2 .content .bottom .right .list-btn-table .btn:hover img {
    filter: brightness(1.3);
}

.tab2 .content .bottom .right .list-btn-table img {
    width: 100%;
    transition: .3s;
}

.tab2 .content .bottom .right .list-btn-table .btn.active img {
    filter: brightness(1.3);
}

.tab2 .content .bottom .right .frame-table {
    width: 100%;
    position: relative;
}

.tab2 .content .bottom .right .frame-table .list-news {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 6vw;
    left: 0;
    padding-inline: 3vw;
    bottom: 4.2vw;
    overflow: auto;
    gap: 1.8vw;
}

.tab2 .content .bottom .right .frame-table .list-news a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #EADCB5;
    transition: .3s;
    cursor: pointer;
    border-bottom: 1px solid #EADCB5;
    text-decoration: none;
    font-size: 1vw
}

.tab2 .content .bottom .right .frame-table .list-news a span:first-child {
    font-weight: 600;
    width: 70%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tab2 .content .bottom .right .frame-table .list-news a:hover {
    filter: brightness(125%);
}

.tab2 .content .bottom .right .frame-table .list-news span.no-data {
    color: #EADCB5;
    font-size: 1vw;
    margin-top: 1vw;
    display: block;
}

.tab2 .content .bottom .right .frame-table a.more-infor {
    color: #EADCB5;
    font-size: 1vw;
    position: absolute;
    bottom: 5%;
    right: 5%;
    cursor: pointer;
}

.tab2 .content .bottom .right .frame-table a.more-infor:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .tab2 .title {
        width: 62.6%;
        margin-top: 7.6%;
    }

    .tab2 .content {
        width: 98%;
        margin-top: 1.4%;
    }

    .tab2 .content .top {
        width: 100%;
    }

    .tab2 .swiper-pagination-bullet {
        width: 3.6vw !important;
        height: 3.6vw !important;
    }

    .tab2 .content .bottom {
        gap: 2vw;
        flex-direction: column;
        margin-top: -1.4vw;
    }

    .tab2 .content .bottom .left {
        width: 100%;
        margin-inline: auto;
    }

    .tab2 .content .bottom .infor-server .title-infor {
        width: 100%;
    }

    .tab2 .content .bottom .infor-server .content-infor {
        margin-top: -4.6vw;
    }

    .tab2 .content .bottom .infor-server .content-infor .mission-table {
        top: 9%;
    }

    .tab2 .content .bottom .infor-server .content-infor .mission-table td {
        padding: 1.44vw 3vw;
        white-space: nowrap;
        font-size: 3vw;
    }

    .tab2 .content .bottom .infor-server .qr-infor .list-item-qr {
        width: 54%;
        gap: 10vw;
    }

    .tab2 .content .bottom .infor-server .qr-infor .list-item-qr .list-link {
        gap: 2vw;
        width: 62%;
    }

    .tab2 .content .bottom .right {
        margin-top: -1vw;
    }

    .tab2 .content .bottom .right .list-btn-table {
        top: 1vw;
        width: 100%;
    }

    .tab2 .content .bottom .right .frame-table .list-news {
        top: 15vw;
        padding-inline: 6vw;
        bottom: 12vw;
        gap: 4.2vw;
    }

    .tab2 .content .bottom .right .frame-table .list-news a {
        font-size: 3.6vw;
    }

    .tab2 .content .bottom .right .frame-table .list-news a span:first-child {
        width: 57%;
        font-size: 3.5vw;
    }

    .tab2 .content .bottom .right .frame-table .list-news span.no-data {
        font-size: 3.6vw;
        margin-top: 4vw;
    }

    .tab2 .content .bottom .right .frame-table a.more-infor {
        font-size: 3vw;
    }
}

/* TAB 3 */
.tab3 {
    padding-bottom: 1.4vw;
}

.tab3 .title {
    width: 21%;
    margin-inline: auto;
    margin-top: 1.4%;
}

.tab3 .select-sv {
    position: absolute;
    left: 22.6%;
    top: 4.6%;
    width: 10%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab3 .select-sv p {
    position: absolute;
    color: #D1AB60;
    font-size: 1vw;
    font-weight: 700;
    margin-bottom: 0.2vw;
}

.tab3 .frame-table img {
    width: 100%
}

.tab3 .frame-table {
    position: relative;
    width: 55%;
    margin-inline: auto;
}

.tab3 .frame-table .bg {
    position: relative;
    z-index: 2;
}

.tab3 .nv-1 {
    position: absolute;
    top: 12%;
    left: -69%;
    width: 93%;
    z-index: 1;
}

.tab3 .nv-2 {
    position: absolute;
    top: 13%;
    right: -60%;
    width: 93%;
    z-index: 1;
}

.tab3 .list-btn {
    position: absolute;
    top: 1%;
    left: -5.4%;
    width: 12%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vw;
    z-index: 4;
}

.tab3 .list-btn .btn:hover {
    animation: jelly 0.5s;
}

.tab3 .table-content {
    position: absolute;
    top: 3%;
    bottom: 3%;
    width: 95%;
    margin: auto;
    overflow-y: auto;
    z-index: 3;
    left: 0;
    right: 0;
}

.tab3 table {
    text-align: center !important;
    border: none;
    color: #fff;
    width: 100%;
    border-collapse: collapse;
}

.tab3 table thead {
    background-color: #692421;
}

.tab3 table tbody tr {
    background-color: #640B03;
}

.tab3 table thead th:first-child {
    padding-left: 2vw;
}

.tab3 table thead th:last-child {
    padding-right: 2vw;
}

.tab3 table th {
    color: #D1AB60;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1vw;
}

.tab3 table td,
th {
    padding-block: 0.6vw;
    font-size: 1vw;
    /* border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd; */
    border: 1px solid #fff;
}

/* .tab3 table tr td:last-child,
.tab3 table tr th:last-child {
    border-right: none;
}

.tab3 table tr:last-child td {
    border-bottom: none;
} */

.tab3 #server-dropdown {
    position: absolute;
    top: 10.2%;
    width: 9.6%;
    background: #8f1e11;
    border: 1px solid #D1AB60;
    border-radius: 0.4vw;
    z-index: 5;
    padding-block: 0.2vw;
    animation: slideDownFadeIn 0.3s ease-out;
    left: 22.8%;
}

.tab3 #server-dropdown .server-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab3 #server-dropdown .server-list li {
    padding: 0.2vw 0.6vw;
    color: #D1AB60;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1vw;
    font-weight: 700;
}

.tab3 #server-dropdown .server-list li:hover {
    background: #D1AB60;
    color: #8f1e11;
}

@media (max-width: 767px) {
    .tab3 {
        padding-bottom: 8vw;
    }

    .tab3 .title {
        width: 62%;
        margin-top: 11%;
    }

    .tab3 .select-sv {
        position: unset;
        width: 29%;
        margin: auto;
    }

    .tab3 .select-sv p {
        font-size: 2.8vw;
        margin-bottom: 0.8vw;
    }

    .tab3 .frame-table {
        width: 100%;
        margin-top: 27.6vw;
    }

    .tab3 .nv-1,
    .tab3 .nv-2 {
        display: none;
    }

    .tab3 .list-btn {
        flex-direction: unset;
        margin: auto;
        left: 0;
        width: 45%;
        right: 0;
        top: -17%;
        gap: 7vw;
    }

    .tab3 .table-content {
        top: 2.4%;
        bottom: 2.8%;
        width: 94%;
    }

    .tab3 table {
        width: 100%;
    }

    .tab3 table td,
    th {
        padding-block: 1.6vw 1.8vw;
        padding-inline: 1.6vw;
        font-size: 3vw;
    }

    .tab3 table th {
        font-size: 3.2vw;
    }

    .tab3 #server-dropdown {
        top: 15.8%;
        width: 27.4%;
        left: 36.4%;
        border-radius: 0.8vw;
    }

    .tab3 #server-dropdown .server-list li {
        padding: 1vw 0.6vw;
        font-size: 3vw;
    }
}

/* TAB 4 */
.tab4 {
    padding-bottom: 8.6vw;
}

.tab4 .title {
    width: 20.6%;
    margin-inline: auto;
    margin-top: 3.4%;
}

.tab4 .content-tab4 {
    position: relative;
    width: 59%;
    margin-inline: auto;
}

.tab4 .content-tab4 .swiperTab4 {
    overflow-x: hidden;
    width: 98%;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.tab4 .swiper-pagination-tab4 {
    display: flex;
    justify-content: center;
    width: 80% !important;
    margin-inline: auto;
    position: absolute;
    top: unset !important;
    left: 50% !important;
    z-index: 2;
    gap: 6vw;
    bottom: -42% !important;
    transform: translate(-50%, -50%);
}

.tab4 .swiper-pagination-bullet {
    height: fit-content !important;
    border-radius: 0 !important;
    background: transparent !important;
    position: relative;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border-radius: unset !important;
    opacity: 1;
}

.tab4 .list-btn {
    display: flex;
    align-items: center;
    width: 50%;
    margin-inline: auto;
    gap: 8vw;
}

.tab4 .swiper-pagination-bullet-active img,
.tab4 .swiper-pagination-bullet:hover img {
    filter: brightness(125%);
}

.tab4 .swiper-pagination-bullet img {
    width: 100%;
    transition: .3s;
}

.tab4 .swiper-pagination-bullet p {
    font-size: 1.2vw;
    white-space: nowrap;
    width: 100%;
    position: absolute;
    text-align: center;
    font-weight: 700;
    left: 10%;
    color: #EADCB5;
}

@media (max-width: 767px) {
    .tab4 {
        padding-bottom: 26vw;
    }

    .tab4 .title {
        width: 61.6%;
        margin-top: 5.4%;
    }

    .tab4 .content-tab4 {
        width: 98%;
    }

    .tab4 .swiper-pagination-tab4 {
        width: 100% !important;
        gap: 3vw;
        bottom: -68% !important;
    }


    .tab4 .swiper-pagination-bullet p {
        font-size: 3vw;
    }
}

/* FOOTER */

footer .content {
    background-color: #000;
    gap: 2vw;
    padding-block: 1.4vw;
}

footer .content .logo {
    align-items: center;
    justify-content: center;
    gap: 8vw;
    width: 100%;
    text-align: right;
}

footer .content .logo img.logo-gzone {
    width: 20% !important;
}

footer .content .logo img.footer-warning {
    display: none;
}

footer .content .logo a {
    width: 30% !important;
    display: none;
}

footer .content .main-content {
    font-size: 0.8vw;
    text-align: center;
    width: 100%;
}

footer .content .main-content a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    outline: none;
}

footer .content .main-content p {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.2vw;
}

footer .content .main-content p>a {
    cursor: pointer;
}

footer .content .main-content p>a:hover {
    text-decoration: underline;
}

footer .content .warning {
    display: flex;
    align-items: center;
    width: 100%;
}

footer .content .warning img.img-warning {
    width: 8%;
}

footer .content .warning a {
    width: 18%;
}

@media (max-width: 767px) {

    footer .content {
        display: block;
        padding-inline: 2vw;
        padding-top: 6vw;
        padding-bottom: 6vw;
    }

    footer .content .logo {
        display: flex;
        margin-bottom: 4vw !important;
        margin-left: 4vw;
    }

    footer .content .logo img.footer-warning {
        display: block;
        width: 10%;
    }

    footer .content .logo a {
        display: block;
    }

    footer .content .main-content {
        width: 100%
    }

    footer .content .main-content a,
    footer .content .main-content p {
        font-size: 3vw;
        line-height: 4.6vw;
    }

    footer .content .warning {
        display: none;
    }
}

/* POPUP */

#backdrop {
    background-color: rgb(0 0 0 / 72%);
    backdrop-filter: blur(3px);
    position: fixed;
    inset: 0;
    z-index: 13;
}

#popup {
    transition: 0.3s ease-in-out;
    position: fixed;
    inset: 0;
    opacity: 0;
    z-index: -9;
    width: 100%;
}

#popup.active {
    opacity: 1 !important;
    z-index: 15 !important;
}

#popup .main-popup {
    position: relative;
    z-index: 13;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#popup .item-popup {
    position: relative;
    opacity: 0;
    display: flex;
    justify-content: center;
    transform: scale(0);
    transition: 0.45s ease-in-out;
    position: absolute;
    width: 36%;
}

#popup .item-popup.active {
    opacity: 1;
    justify-content: center;
    transition: 0.5s ease-in-out;
    transform: scale(1.05);
}

#popup .bg-popup {
    width: 100%;
}

#popup .bg-popup img {
    width: 100%;
}

#popup .btn-close {
    position: absolute;
    top: 1.8%;
    right: -1%;
    z-index: 2;
    cursor: pointer;
    width: 9%;
}

#popup .btn-close img {
    transition: .2s ease-out;
    width: 100%;
}

#popup .btn-close:hover img {
    transform: scale(1.1);
}

#popup .main-content {
    position: absolute;
    top: 2%;
    bottom: 3%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

#popup .main-content .title img {
    width: 100%;
}

#popup .main-content .title p,
#popup-dang-ky p.title {
    font-size: 1.1vw;
    text-transform: capitalize;
    font-weight: 700;
    color: rgba(234, 220, 181, 1);
    text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}

#popup .main-content .content-popup {
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#popup .main-content .content-popup #popup_mess-noti {
    color: #fff;
    font-size: 1.2vw;
    text-align: center;
}

#popup .main-content .content-popup p.text {
    color: #fff;
    font-size: 1.2vw;
}

#popup .main-content .content-popup #popup_img-gift {
    width: 52%;
}

@media (max-width: 767px) {

    #popup .main-popup {
        position: relative;
        z-index: 13;
        width: 88%;
    }

    #popup .main-content {
        top: 1%;
    }

    #popup .btn-close {
        top: 0%;
        right: -2%;
        width: 11%;
    }

    #popup .main-content .content-popup p#popup_mess-noti,
    .invisible {
        font-size: 2.6vw;
    }

    #popup .item-popup {
        width: 100%;
    }

    #popup .main-content .title p,
    #popup-dang-ky p.title {
        font-size: 3.4vw;
    }
}

/* POPUP ĐĂNG KÝ */
#popup-dang-ky.item-popup {
    width: 72%;
}

#popup-dang-ky .btn-close {
    top: -2%;
    right: -0.4%;
    width: 4%;
}

#popup-dang-ky .main-content {
    width: 80%;
    margin-inline: auto;
    flex-direction: unset;
}

#popup-dang-ky .left-content {
    position: relative;
    width: 37%;
    z-index: 1;
}

#popup-dang-ky .left-content p.title {
    position: absolute;
    left: 50%;
    top: 11.6%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 0.8vw;
}

#popup-dang-ky .left-content .form-dk {
    position: absolute;
    left: 50%;
    top: 53%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin-inline: auto;
    row-gap: 1.2vw;
}

#popup-dang-ky .left-content select:focus,
#popup-dang-ky .left-content .item-input input:focus {
    outline: none;
}

#popup-dang-ky .left-content .item-input {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

#popup-dang-ky .left-content .item-input p {
    white-space: nowrap;
    color: rgba(234, 220, 181, 1);
    font-size: 0.7vw;
    font-weight: bold;
}

#popup-dang-ky .left-content .item-input input {
    background: rgba(64, 51, 42, 1);
    border: 1px solid rgba(234, 220, 181, 1);
    border-radius: 0.4vw;
    height: 1.6vw;
    font-size: 0.7vw;
    color: #fff;
    outline: none;
    padding: 0.2vw 0.8vw;
    width: 66%;
}

#popup-dang-ky .left-content .item-input input::placeholder {
    color: rgb(255 255 255 / 0.7);
}

#popup-dang-ky .left-content .item-input select {
    background: rgba(64, 51, 42, 1);
    border: 1px solid rgba(234, 220, 181, 1);
    border-radius: 0.4vw;
    height: 1.6vw;
    font-size: 0.72vw;
    color: #fff;
    outline: none;
    padding: 0.2vw 0.8vw;
    width: 66%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

#popup-dang-ky .left-content .item-input select option {
    background: rgba(64, 51, 42, 1);
    color: #fff;
    font-size: 0.72vw;
}

#popup-dang-ky .left-content .form-dk button {
    width: 46%;
    border: none;
    outline: none;
    transition: .3s;
    cursor: pointer;
    margin-top: 4%;
    background-color: transparent;
}

#popup-dang-ky .left-content .form-dk button:hover {
    transform: scale(1.1);
}

#popup-dang-ky .left-content .form-dk p.text-footer {
    position: absolute;
    bottom: -17%;
    left: -6%;
    font-size: 0.7vw;
    color: #eadcb5;
}

#popup-dang-ky .left-content .form-dk #action_login {
    cursor: pointer;
    font-weight: 700;
    color: #edd592;
}

#popup-dang-ky .img-nv {
    position: absolute;
    top: 5%;
    left: -26%;
    width: 30%;
}

#popup-dang-ky .right-content {
    width: 63%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vw;
}

#popup-dang-ky .right-content .list-btn {
    display: flex;
    align-items: center;
    width: 90%;
    gap: 1vw;
}

#popup-dang-ky .right-content .list-btn a {
    width: 100%;
    cursor: pointer;
}

#popup-dang-ky .right-content .list-btn a img {
    transition: .3s;
    width: 100%;
}

#popup-dang-ky .right-content .list-btn a:hover img {
    transform: scale(1.1);
}

#popup-dang-ky .right-content .list-btn a:hover img {
    transform: scale(1.1);
}

#popup-dang-ky .right-content p.text-gift {
    font-size: 1.2vw;
    color: #EADCB5;
    text-align: center;
    font-weight: 700;
}

#popup-dang-ky .right-content .item-gift {
    width: 80%;
    margin-inline: auto;
}

#popup-dang-ky .right-content a.down-game {
    cursor: pointer;
    width: 44%;
    position: relative;
    margin-inline: auto;
}

#popup-dang-ky .right-content a.down-game p {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #EADCB5;
    text-transform: uppercase;
    font-size: 1vw;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 767px) {
    #popup-dang-ky.item-popup {
        width: 100%;
    }

    #popup-dang-ky .btn-close {
        top: 0%;
        right: -2%;
        width: 11%;
    }

    #popup-dang-ky .main-content {
        top: 2%;
    }

    #popup-dang-ky .left-content {
        position: unset;
        width: unset;
        z-index: 1;
    }

    #popup-dang-ky .left-content .bg {
        display: none;
    }

    #popup-dang-ky .left-content p.title {
        top: 3%;
        margin-top: unset;
        font-size: 3.4vw;
    }

    #popup-dang-ky .left-content .form-dk {
        top: 50%;
        width: 100%;
        row-gap: 1.8vw;
    }

    #popup-dang-ky .left-content .item-input p {
        font-size: 2.8vw;
    }

    #popup-dang-ky .left-content .item-input input,
    #popup-dang-ky .left-content .item-input select {
        border-radius: 1vw;
        height: 6.8vw;
        font-size: 2.8vw;
        padding: 0.6vw 1.8vw;
    }

    #popup-dang-ky .left-content .form-dk button {
        width: 45%;
        margin-top: 3%;

    }

    #popup-dang-ky .left-content .form-dk p.text-footer {
        bottom: -16%;
        left: -2%;
        font-size: 2.6vw;
    }

    #popup-dang-ky .img-nv {
        display: none;
    }

    #popup-dang-ky .right-content {
        display: none;
    }
}

/* LỊCH SỬ */

#popup-lich-su .main-content {
    height: 100%;
    margin-inline: auto;
}

#popup-lich-su .content-popup {
    margin-top: 1.6vw;
    height: 100%;
}

#popup-lich-su .title-lichsu {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    width: 86%;
}

#popup-lich-su .content-lichsu {
    overflow-y: scroll;
    height: 75%;
    width: 86%;
}

#popup-lich-su table {
    width: 100%;
    text-align: center !important;
    border-collapse: collapse;
}

#popup-lich-su table th,
#popup-lich-su table td {
    color: #fff;
    background-color: transparent;
    font-size: 0.8vw;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

#popup-lich-su table th {
    border-top: 1px solid #fff;
    padding: 0.4vw 0;
}

#popup-lich-su table td {
    padding: 0.4vw 1.7vw !important;
}

#popup-lich-su .title-lichsu .title-history {
    border: 1px solid #fff;
    border-bottom: none;
    width: 100%;
}

#popup-lich-su .title-lichsu .title-history button {
    padding: 0.4vw 0;
    color: #fff;
    border: none;
    background-color: #b30024;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    outline: none;
    display: block;
    font-size: 0.8vw;
    cursor: pointer;
}

@media (max-width: 767px) {
    #popup-lich-su .content-popup {
        margin-top: 4vw;
    }

    #popup-lich-su .title-lichsu {
        width: 84%;
    }

    #popup-lich-su .title-lichsu .title-history button {
        font-size: 2.2vw;
        padding: 0.8vw 0;
    }

    #popup-lich-su .content-popup .content-lichsu {
        width: 84%;
        height: 72%;
    }

    #popup-lich-su table th {
        font-size: 2.2vw;
        padding: 1vw 0;
    }

    #popup-lich-su table td {
        font-size: 2.2vw;
        padding: 0.8vw 2.6vw !important;
    }
}

/* THỂ LỆ */
#popup-the-le .main-content {
    bottom: 6%;
}

#popup-the-le .main-content .content-popup {
    overflow-y: scroll;
    width: 80%;
    margin-top: 1vw;
}

@media (max-width: 767px) {
    #popup-the-le .main-content {
        bottom: 6%;
    }

    #popup-the-le .main-content .content-popup {
        margin-top: 2vw;
    }
}