@font-face {
    font-family: "SVN-Avo";
    src: url("../fonts/SVN-Avo.ttf");
}

@keyframes spin {
    to {
        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);
    }
}

@keyframes tada {
    0% {
        transform: scaleZ(1);
    }

    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    20%,
    50%,
    70%,
    90% {
        transform: scale3d(1.06, 1.06, 1.06) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.06, 1.06, 1.06) rotate3d(0, 0, 1, -3deg);
    }

    100% {
        transform: scaleZ(1);
    }
}

.animation-tada {
    animation: tada 1.5s infinite linear;
    filter: grayscale(0) !important;
}

.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;
}

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;
    }
}

.btn-brightness {
    cursor: pointer;
}

.btn-brightness img {
    width: 100%;
    transition: .3s;
}

.btn-brightness:hover img {
    filter: brightness(125%);
}

.btn {
    cursor: pointer;
    width: 100%;
}

.btn img {
    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: 66% !important;
}

.gz-brightness-125 {
    filter: brightness(125%);
}

/* LOADING */

#loading {
    transition: opacity 0.5s ease;
}

#loading.hide {
    opacity: 0;
    pointer-events: none;
    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;
}

/* 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: 1vw;
    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 {
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
}

.tab1 .background {
    width: 100%;
}

.tab1 .logo-text {
    position: absolute;
    top: 6%;
    left: 24%;
    width: 15%;
}

.tab1 .warning {
    position: fixed;
    top: 24%;
    left: 0;
    width: 10.6%;
    z-index: 4;
}

.tab1 .bg-duatop {
    position: fixed;
    bottom: 2%;
    left: 1%;
    width: 12%;
    z-index: 4;
}

.tab1 .text-slogan {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 38%;
}

.tab1 .text-new-sv {
    position: absolute;
    top: 43.2%;
    left: 30.6%;
    width: 3%;
}

.tab1 .text-beta {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 57.4%;
    left: 50%;
    width: 33.6%;
}

.tab1 .list-btn {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    bottom: 26%;
    width: 38%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.tab1 .frame-baodanh {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    bottom: 8.4%;
    width: 58.4%;
    display: flex;
    align-items: center;
}

.tab1 .frame-baodanh .btn-baodanh {
    position: absolute;
    left: 1.8%;
    width: 21%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab1 .frame-baodanh .btn-baodanh p.text-turn {
    position: absolute;
    color: #E7BD66;
    font-size: 1.24vw;
    top: 9%;
}

.tab1 .frame-baodanh .btn-baodanh p#count_turn {
    position: absolute;
    color: #E7BD66;
    font-size: 1.8vw;
    bottom: 20%;
}

.tab1 .frame-baodanh .action-1 {
    position: absolute;
    left: 28.8%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29%;
    gap: 0.3vw;
}

.tab1 .frame-baodanh .action-1 .btn {
    width: 57%;
}

.tab1 .frame-baodanh .action-1 .frame-action-1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 0.6vw;
}

.tab1 .frame-baodanh .action-1 .frame-action-1 p.text-action-1 {
    color: #E7BD66;
    font-size: 1vw;
    text-align: center;
    line-height: 1.1vw;
}

.tab1 .frame-baodanh .action-1 .frame-action-1 .btn-action-1 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab1 .frame-baodanh .action-1 .frame-action-1 .btn-action-1 p#count_turn_user {
    position: absolute;
    color: #E7BD66;
    font-size: 1.24vw;
    text-align: center;
    font-weight: 700;
}

.tab1 .frame-baodanh .action-2 {
    position: absolute;
    right: 1.8%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34.2%;
    gap: 0.4vw;
}

.tab1 .frame-baodanh .action-2 .btn {
    width: 44%;
}

.tab1 .frame-baodanh .action-2 .frame-action-2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 0.6vw;
}

.tab1 .frame-baodanh .action-2 .frame-action-2 p.text-action-2 {
    color: #E7BD66;
    font-size: 1vw;
    text-align: center;
    line-height: 1.1vw;
}

.tab1 .frame-baodanh .action-2 .frame-action-2 .btn-action-2 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab1 .frame-baodanh .action-2 .frame-action-2 .btn-action-2 p {
    position: absolute;
    color: #E7BD66;
    font-size: 1.1vw;
    text-align: center;
    font-weight: 700;
}

@media (max-width: 767px) {
    .tab1 .logo-text {
        position: absolute;
        top: 7%;
        left: 0%;
        width: 34%;
    }

    .tab1 .warning {
        top: 20%;
        width: 13%;
    }

    .tab1 .bg-duatop {
        bottom: unset;
        top: 16vw;
        right: 1%;
        left: unset;
        width: 26%;
    }

    .tab1 .text-slogan {
        top: 49%;
        width: 95%;
    }

    .tab1 .text-new-sv {
        top: 44.2%;
        left: 1.6%;
        width: 8%;
    }

    .tab1 .text-beta {
        top: 54.4%;
        width: 90.6%;
    }

    .tab1 .list-btn {
        bottom: 32%;
        width: 98%;
        gap: 2vw;
    }

    .tab1 .frame-baodanh {
        bottom: -17.2%;
        width: 66.4%;
    }

    .tab1 .frame-baodanh .btn-baodanh {
        transform: translate(-50%, -50%);
        left: 50%;
        top: 16%;
        width: 57%;
    }

    .tab1 .frame-baodanh .btn-baodanh p.text-turn {
        font-size: 3.8vw;
        top: 10%;
    }

    .tab1 .frame-baodanh .btn-baodanh p#count_turn {
        font-size: 6.6vw;
        bottom: 20%;
        font-weight: 600;
    }

    .tab1 .frame-baodanh .action-1 {
        transform: translate(-50%, -50%);
        left: 50%;
        width: 76%;
        gap: 1vw;
        top: 50%;
    }

    .tab1 .frame-baodanh .action-1 .frame-action-1 {
        gap: 1.6vw;
    }

    .tab1 .frame-baodanh .action-1 .frame-action-1 p.text-action-1 {
        font-size: 3vw;
        text-align: center;
        line-height: 3.8vw;
    }

    .tab1 .frame-baodanh .action-1 .frame-action-1 .btn-action-1 p#count_turn_user {
        font-size: 3.24vw;
    }

    .tab1 .frame-baodanh .action-2 {
        transform: translate(-50%, -50%);
        left: 50%;
        width: 91%;
        gap: 1vw;
        bottom: -10%;
    }

    .tab1 .frame-baodanh .action-2 .frame-action-2 {
        gap: 1.6vw;
    }

    .tab1 .frame-baodanh .action-2 .frame-action-2 p.text-action-2 {
        font-size: 3vw;
        text-align: center;
        line-height: 3.8vw;
    }

    .tab1 .frame-baodanh .action-2 .frame-action-2 .btn-action-2 p {
        font-size: 3.24vw;
    }
}

/* LANDING */
.landing {
    background-image: url(../images/bg-desk.webp);
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    aspect-ratio: 1920/2160;
}

@media (max-width: 767px) {
    .landing {
        background-image: url(../images/bg-mobi.webp);
        aspect-ratio: 640/1841;
    }
}

/* TAB 2 */

.tab2 .chiatrang {
    transform: translateY(-1vw);
}

.tab2 .slogan {
    width: 15%;
    margin-top: 0%;
    margin-inline: auto;
}

.tab2 .list-btn {
    width: 30%;
    margin-left: 15%;
    display: flex;
    flex-direction: row;
    gap: 1vw;
}

.tab2 .btn-xemchitiet {
    position: relative;
    left: 120%;
}

.tab2 .btn-taiphu,
.tab2 .btn-topcap,
.tab2 .btn-xemchitiet {
    position: relative;
    cursor: pointer;
}

.tab2 .btn-taiphu span,
.tab2 .btn-topcap span,
.tab2 .btn-xemchitiet span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.3vw;
    font-family: "UTM Alberta Heavy";
    background: linear-gradient(180deg, #FFF6D9 0%, #FFE28A 40%, #E7BD66 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}

.tab2 .btn-taiphu:hover .default,
.tab2 .btn-topcap:hover .default,
.tab2 .btn-xemchitiet:hover .default {
    display: none;
}

.tab2 .btn-taiphu:hover .active,
.tab2 .btn-topcap:hover .active,
.tab2 .btn-xemchitiet:hover .active {
    display: block;
}

.tab2 .container-table {
    width: 66%;
    margin-left: 15%;
    margin-top: 1.5%;
}

.tab2 .frame-table {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.tab2 .table-content {
    position: absolute;
    top: 1%;
    left: 0%;
    right: 0%;
    bottom: 1%;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0 0.5%;
    margin-right: 0.4%;
}

.tab2 .table-content::-webkit-scrollbar {
    width: 6px;
}

.tab2 .table-content::-webkit-scrollbar-thumb {
    background: #7a5a2f;
    border-radius: 3px;
}

.tab2 .bang-xephang {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.tab2 .bang-xephang th,
.tab2 .bang-xephang td {
    border: 1px solid #d8d0c0;
    padding: 1.2vw 0.8vw;
    text-align: center;
    vertical-align: middle;
}

.tab2 .bang-xephang thead th {
    background: linear-gradient(180deg, #5a3d1f, #3d2814);
    color: #FFE28A;
    font-size: 1.3vw;
    white-space: nowrap;
    text-transform: uppercase;
}

.tab2 .bang-xephang tbody td {
    background: #ffffff;
    color: #333333;
    font-size: 1.2vw;
}

.tab2 .col-hang {
    width: 13%;
    font-size: 1.8vw;
    color: #7a5a2f;
}

.tab2 .col-hang span.sub {
    display: block;
    font-size: 1vw;
    color: #999;
    margin-top: 6px;
    font-weight: normal;
    white-space: nowrap;
}

.tab2 .col-thuong {
    width: 30%;
}

.tab2 .item-thuong {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6vw;
}

.tab2 .item-thuong .item-img {
    width: 18%;
}

.tab2 .item-thuong .item-img img {
    width: 100%;
}

.tab2 .item-thuong .ten {
    font-size: 1.1vw;
    color: #555555;
    text-transform: capitalize;
}

.tab2 .col-soluong {
    width: 19%;
    font-size: 1.4vw;
    font-weight: bold;
    color: #333333;
}

.tab2 .col-hansd {
    width: 22%;
    font-size: 1.2vw;
    color: #777777;
    white-space: nowrap;
}

.tab2 .d-none {
    display: none !important;
}

.tab2 .btn-bg.active-img {
    display: none;
}

.tab2 .bang-xephang,
.tab2 .bang-xephang th,
.tab2 .bang-xephang td {
    font-family: "UTM Alberta Heavy" !important;
}

.tab2 .btn-taiphu:hover .default,
.tab2 .btn-topcap:hover .default,
.tab2 .btn-xemchitiet:hover .default,
.tab2 .btn-taiphu.active .default,
.tab2 .btn-topcap.active .default {
    display: none;
}

.tab2 .btn-taiphu:hover .active-img,
.tab2 .btn-topcap:hover .active-img,
.tab2 .btn-xemchitiet:hover .active-img,
.tab2 .btn-taiphu.active .active-img,
.tab2 .btn-topcap.active .active-img {
    display: block;
}

@media (max-width:767px) {
    .tab2 {
        overflow: hidden;
    }

    .tab2 .chiatrang {
        display: none;
    }

    .tab2 .slogan {
        width: 35%;
        margin-top: 1vw;
    }

    .tab2 .list-btn {
        width: 95%;
        margin-top: 35%;
        margin-left: 3%;
        display: flex;
        justify-content: center;
        gap: 3vw;
    }

    .tab2 .btn-xemchitiet {
        position: relative;
        left: auto;
    }

    .tab2 .btn-taiphu span,
    .tab2 .btn-topcap span,
    .tab2 .btn-xemchitiet span {
        font-size: 4vw;
    }

    .tab2 .container-table {
        margin-top: 10%;
        margin-left: 0%;
        width: 100%;
    }

    .tab2 .table-content {
        top: 0%;
        left: 0%;
        right: 0%;
        bottom: 0%;
    }

    .tab2 .bang-xephang thead th {
        font-size: 2.4vw;
    }

    .tab2 .bang-xephang tbody td {
        font-size: 2.8vw;
    }

    .tab2 .col-hang {
        font-size: 4vw;
    }

    .tab2 .item-thuong .icon {
        width: 8vw;
        height: 8vw;
    }

    .tab2 .item-thuong .ten {
        font-size: 2.5vw;
    }
}

/* TAB 3 */
.tab3 .uu-dai-section {
    background: transparent;
    padding: 4% 0%;
    position: relative;
    width: 100%;
    margin-top: 22%;
    overflow: hidden;
}

.tab3 .swiper-container-wrapper {
    position: relative;
    width: 90%;
    margin: 0% auto;
}

.tab3 .swiper {
    width: 100%;
    padding: 2% 0% 8% 0%;
    overflow: visible !important;
}

.tab3 .swiper-slide {
    width: 60% !important;
    aspect-ratio: 16 / 7.6;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    visibility: hidden;
    opacity: 0 !important;
    z-index: 1 !important;
}

.tab3 .swiper-slide-active,
.tab3 .swiper-slide-prev,
.tab3 .swiper-slide-next {
    visibility: visible;
}

.tab3 .swiper-slide-prev,
.tab3 .swiper-slide-next {
    opacity: 0.6 !important;
    filter: brightness(0.5) blur(1px) !important;
    z-index: 5 !important;
}

.tab3 .swiper-slide-active {
    opacity: 1 !important;
    filter: brightness(1) blur(0px) !important;
    pointer-events: auto;
    z-index: 10 !important;
}

.tab3 .swiper-button-prev-custom,
.tab3 .swiper-button-next-custom {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 4%;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    z-index: 1;
}

.tab3 .swiper-button-prev-custom {
    left: 0%;
}

.tab3 .swiper-button-next-custom {
    right: 0%;
}

.tab3 .swiper-button-prev-custom img,
.tab3 .swiper-button-next-custom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tab3 .swiper-pagination {
    bottom: 12% !important;
}

.tab3 .swiper-pagination-bullet {
    width: 1% !important;
    height: 1% !important;
    aspect-ratio: 1 / 1;
    background: transparent;
    border: 2px solid #ffe28a;
    opacity: 0.5;
    margin-top: 5vw;
    border-radius: 50% !important;
}

.tab3 .swiper-pagination-bullet-active {
    background: #ffe28a !important;
    opacity: 1;
}

.tab3 .btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    width: 100%;
    margin-top: -4% !important;
}

.tab3 .btn-game {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
    width: 13vw;
    aspect-ratio: 3.5 / 1;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden;
}

.tab3 .btn-game .default,
.tab3 .btn-game .active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
}

.tab3 .btn-game .default {
    display: block;
}

.tab3 .btn-game .active {
    display: none;
}

.tab3 .btn-game .icon {
    position: relative;
    width: 1.8vw;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0;
}

.tab3 .btn-game span {
    position: relative;
    font-family: "UTM Alberta Heavy" !important;
    font-size: 1.1vw;
    color: #ffe28a;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

.tab3 .btn-game:hover .default {
    display: none;
}

.tab3 .btn-game:hover .active {
    display: block;
}

@media (max-width: 767px) {
    .tab3 {
        overflow: hidden;
    }

    .tab3 .uu-dai-section {
        margin-top: 35%;
        padding: 2% 0%;
    }

    .tab3 .swiper-container-wrapper {
        width: 90%;
    }

    .tab3 .swiper {
        padding: 4% 0% 15% 0% !important;
    }

    .tab3 .swiper-slide {
        width: 80% !important;
        aspect-ratio: 16 / 9;
    }

    .tab3 .swiper-button-prev-custom,
    .tab3 .swiper-button-next-custom {
        top: auto !important;
        bottom: 3% !important;
        transform: none !important;
        width: 7%;
    }

    .tab3 .swiper-button-prev-custom {
        left: 25% !important;
        right: auto !important;
    }

    .tab3 .swiper-button-next-custom {
        right: 25% !important;
        left: auto !important;
    }

    .tab3 .swiper-pagination {
        bottom: 4% !important;
    }

    .tab3 .swiper-pagination-bullet {
        width: 3% !important;
        height: 3% !important;
        margin-top: 0;
        margin: 0 5px !important;
        border-width: 1px;
    }

    .tab3 .btn-group {
        flex-direction: row;
        justify-content: center;
        gap: 2vw;
        width: 100%;
        margin-top: 5% !important;
    }

    .tab3 .btn-game {
        width: 28vw;
        aspect-ratio: 3.2 / 1;
        gap: 1vw;
    }

    .tab3 .btn-game .icon {
        width: 3.5vw;
    }

    .tab3 .btn-game span {
        font-size: 2.2vw;
    }
}

/* 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 .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;
    }
}

/* SIDEBAR */

#sidebar-container {
    position: fixed;
    width: 16%;
    top: 22%;
    right: -1.4%;
    z-index: 5;
    transition-duration: .7s;
}

#sidebar-container.active {
    transform: translateX(76%);
}

#sidebar-container .bg {
    position: relative;
    z-index: 2;
}

#sidebar-container .content #btn-hide {
    position: absolute;
    width: 24%;
    top: 9%;
    left: -6%;
    cursor: pointer;
    z-index: 10;
}

#sidebar-container .content #btn-hide img.active-sidebar {
    scale: -1 1;
}

#sidebar-container .content .main-content {
    position: absolute;
    width: 100%;
    top: 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sidebar-container .content .main-content .list-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 64%;
    position: relative;
    z-index: 2;
    gap: 0.4vw;
}

#sidebar-container .content .main-content .list-btn .btn-main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 767px) {

    #sidebar-container {
        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%;
    margin-inline: auto;
}

#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: 0.2%;
    right: 0.4%;
    z-index: 2;
    cursor: pointer;
    width: 6%;
}

#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: 38%;
    margin-inline: auto;
    margin-top: 0.6%;
}

#popup .main-content .title-img 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 .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#select_sv input {
    pointer-events: none;
}

#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;
    }
}

/* THÔNG BÁO */
#popup-thong-bao .main-content {
    width: 86%;
}

#popup-thong-bao p#popup_mess-noti {
    text-align: center;
}

/* #popup-thong-bao .main-content .content-popup {
    overflow-y: scroll;
    width: 80%;
    margin-top: 1vw;
} */

@media (max-width: 767px) {
    /* #popup-thong-bao .main-content {
        bottom: 6%;
    }

    #popup-thong-bao .main-content .content-popup {
        margin-top: 2vw;
    } */
}

/* BÁO DANH NHẬN CODE */
#popup-bao-danh-nhan-code .main-content {
    width: 86%;
}

#popup-bao-danh-nhan-code .main-content p.link-fb {
    color: #E7BD66;
    font-size: 1vw;
    text-align: center;
    font-weight: 700;
}

#popup-bao-danh-nhan-code .main-content .btn-brightness {
    width: 32%;
    margin-bottom: 8%;
}

@media (max-width: 767px) {
    #popup-bao-danh-nhan-code .main-content p.link-fb {
        font-size: 3vw;
    }
}

/* THÔNG TIN QUÀ */
#popup-thong-tin-qua .main-content {
    width: 86%;
}

#popup-thong-tin-qua .main-content .content-popup {
    margin-top: 6%;
}

#popup-thong-tin-qua .main-content #gift_img {
    width: 34%;
    margin-inline: auto;
}

#popup-thong-tin-qua .main-content #gift_info {
    color: #E7BD66;
    font-size: 0.8vw;
    text-align: center;
    margin-top: 2%;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    #popup-thong-tin-qua .main-content #gift_info {
        font-size: 2.4vw;
    }
}

/* QUÀ BÁO DANH */
#popup-qua-bao-danh .main-content {
    width: 86%;
}

#popup-qua-bao-danh .main-content .title-img {
    margin-top: 4%;
}

#popup-qua-bao-danh .main-content .content-popup {
    margin-top: 6%;
}

#popup-qua-bao-danh .main-content .item-bao-danh {
    width: 94%;
    margin-inline: auto;
}

/* MỐC BÁO DANH */
#popup-moc-bao-danh .main-content {
    width: 86%;
}

#popup-moc-bao-danh .main-content .item-gift {
    width: 100%;
    margin-inline: auto;
    margin-top: 4%;
}

#popup-moc-bao-danh .main-content .frame-count-bao-danh {
    width: 100%;
    margin-inline: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
}

#popup-moc-bao-danh .main-content .frame-count-bao-danh .bg {
    font-size: 0;
    width: 100%;
}

#popup-moc-bao-danh .main-content .frame-count-bao-danh .line-active {
    position: absolute;
    background-color: #EADCB5;
    height: 100%;
    left: 0;
    width: 0%;
}

#popup-moc-bao-danh .main-content .frame-count-bao-danh .list-item-bao-danh {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

#popup-moc-bao-danh .main-content .frame-count-bao-danh .list-item-bao-danh .item {
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
    background-color: #000;
}

#popup-moc-bao-danh .main-content .frame-count-bao-danh .list-item-bao-danh .item.active {
    background-color: #E7BD66;
}

#popup-moc-bao-danh .main-content .frame-count-bao-danh .list-text-bao-danh {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 86%;
    margin-top: -10%;
}

#popup-moc-bao-danh .main-content .frame-count-bao-danh .list-text-bao-danh p.text {
    color: #EADCB5;
    font-size: 1vw;
    font-weight: 600;
}

@media (max-width: 767px) {
    #popup-moc-bao-danh .main-content .frame-count-bao-danh .list-item-bao-danh .item {
        width: 2.6vw;
        height: 2.6vw;
    }

    #popup-moc-bao-danh .main-content .frame-count-bao-danh .list-text-bao-danh {
        margin-top: -12%;
    }

    #popup-moc-bao-danh .main-content .frame-count-bao-danh .list-text-bao-danh p.text {
        font-size: 2.4vw;
    }
}

#giftcode-wrapper {
    text-align: center;
    font-size: 1.2vw
}

#giftcode-wrapper p.ma-code {
    color: #FFD700;
    font-weight: 700;
    margin-block: 0.4vw 0.8vw;
    font-size: 1.2vw
}

#giftcode-wrapper .layout-copy {
    display: inline-flex;
    align-items: center;
    gap: 1.4vw
}

#giftcode-wrapper .layout-copy span#giftcode-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.2vw;
    font-family: serif !important;
}

#giftcode-wrapper .layout-copy button {
    background-color: #4CAF50;
    border: none;
    outline: none;
    color: #fff;
    padding: 0.3vw 0.6vw;
    border-radius: 0.2vw;
    cursor: pointer;
    outline: none;
    font-size: 1.2vw
}

@media (max-width: 767px) {
    #giftcode-wrapper {
        text-align: center;
        font-size: 1.2vw
    }

    #giftcode-wrapper p.ma-code {
        margin-block: 1vw 1.6vw;
        font-size: 2.6vw;
    }

    #giftcode-wrapper .layout-copy {

        gap: 3.4vw
    }

    #giftcode-wrapper .layout-copy span#giftcode-text {
        font-size: 2.6vw
    }

    #giftcode-wrapper .layout-copy button {
        padding: 1.2vw 1.6vw;
        border-radius: 0.6vw;
        font-size: 2.6vw
    }
}

tbody#lich-su-nhan-code tr td:nth-child(2) {
    font-family: serif !important;
}

.tab2 .table-content::-webkit-scrollbar {
    display: block !important;
    width: 8px !important;
    cursor: pointer;
}

.tab2 .table-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
    cursor: pointer;
}

.tab2 .table-content::-webkit-scrollbar-track {
    background: #222;
}