@font-face {
    font-family: "Rubik";
    src: url("../fonts/Rubik-Regular.ttf") format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Rubik";
    src: url("../fonts/Rubik-Medium.ttf") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Rubik";
    src: url("../fonts/Rubik-SemiBold.ttf") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "iconfont"; /* Project id  */
    src: url("../fonts/iconfont.ttf?t=1778142060976") format("truetype");
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: inherit;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-right:before {
    content: "\e624";
}

.icon-search-icon:before {
    content: "\e628";
}

.icon-search-icon2:before {
    content: "\e60a";
}

.icon-arrow-down:before {
    content: "\e652";
}

.icon-note:before {
    content: "\e61d";
}
.icon-win:before {
    content: "\e743";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none
}

em {
    font-style: normal
}

li {
    list-style: none
}

img {
    border: 0;
    vertical-align: middle
}

table {
    border-spacing: 0
}

p {
    word-wrap: break-word
}

div,
section,
li {
    box-sizing: border-box
}

input,
textarea {
    outline: none;
    border: none;
    resize: none
}

button {
    border: none;
}
img:not([src]):not([srcset]) {
    visibility: hidden;
}
input {
    outline: none;
    background: transparent;
}
input:focus {
    outline: none;
    box-shadow: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #00000000 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }
}

.site-header {
    padding: 0;
    background: #fff;
    position: relative;
    z-index: 100;
}
.header-inner {
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}
.logo-link {
    display: flex;
    align-items: center;
}
.logo-link img {
    display: block;
}
#mobile-menu-toggle {
    display: none;
}
.nav-wrap {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}
.nav-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-item {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    z-index: 99;
}
.nav-item + .nav-item {
    margin-left: 28px;
}
.nav-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
}
.nav-label {
    display: block;
    color: #2b3240;
    line-height: 52px;
    font-size: 18px;
    font-weight: 400;
}
.nav-item-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8f97a6;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}
.nav-item.active .nav-label {
    color: #2895f4;
}
.nav-item.active .nav-item-arrow {
    color: #2895f4;
    transform: rotate(180deg);
}
.desktop-dropdown {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    top: calc(100% - 2px);
    left: 50%;
    width: 300px;
    max-height: 0;
    overflow: hidden;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px) translateX(-50%);
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 4px 7.8px 1px rgba(41, 44, 97, 0.22);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
    z-index: 20;
    padding: 0 13px;
}
.nav-item.active .desktop-dropdown {
    max-height: 3000px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) translateX(-50%);
}
.nav-item:last-of-type .desktop-dropdown {
    right: 0;
    transform: translateY(0);
    left: unset;
}
.desktop-dropdown-title {
    font-size: 11px;
    color: #2895f4;
    padding: 0 12px;
}
.desktop-dropdown p {
    font-size: 14px;
    line-height: 1.4;
    color: #1f2430;
    border-radius: 0;
    padding: 10px 0;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #F4F4F4;
}
.desktop-dropdown p:last-child {
    border-bottom: none;
}
.desktop-dropdown p a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dropdown-note-icon {
    margin-right: 6px;
}
.dropdown-link-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #1f2430;
    transition: color 0.2s ease;
}
.desktop-dropdown-link:hover .dropdown-link-text,
.desktop-dropdown-link:hover .dropdown-note-icon {
    color: #007BFF;
}
.desktop-dropdown p:hover .dropdown-link-text,
.desktop-dropdown p:hover .dropdown-note-icon {
    color: #007BFF;
}
@media (max-width: 1024px) {
    .desktop-dropdown {
        width: 188px;
    }
    .header-inner {
        flex-wrap: wrap;
    }
}
@media (max-width: 820px) {
    .site-header {
        padding: 0;
    }
    .site-header .container {
        padding: 0;
    }
    .header-inner {
        display: block;
        min-height: unset;
        overflow: hidden;
    }
    .logo-link {
        height: 54px;
        border-right: 0;
        justify-content: flex-start;
    }
    .logo-link img {
        width: 98px;
    }
    #mobile-menu-toggle {
        top: 50%;
        right: 16px;
        display: block;
        font-size: 16px;
        color: #2b3240;
        cursor: pointer;
        transform: rotate(180deg);
        transition: transform 0.25s ease;
    }
    .nav-wrap {
        display: none;
    }
    .header-inner.mobile-menu-open #mobile-menu-toggle {
        transform: rotate(0);
    }
    .header-inner.mobile-menu-open .nav-wrap {
        display: block;
    }
    .nav-list {
        display: block;
        padding: 0;
    }
    .nav-item + .nav-item {
        margin-left: 0;
    }
    .nav-item {
        border-bottom: 1px solid #e6e6e6;
    }
    .nav-trigger {
        width: 100%;
        justify-content: space-between;
        min-height: auto;
        padding: 20px 40px;
        box-sizing: border-box;
    }
    .nav-label {
        line-height: 1.35;
        font-size: 13px;
    }
    .nav-item.active .nav-label {
        color: #007BFF;
    }
    .nav-item-arrow {
        display: block;
        font-size: 12px;
        color: #7f8796;
    }
    .nav-item.active .nav-item-arrow {
        transform: rotate(180deg);
    }
    .nav-item.active .desktop-dropdown {
        margin-bottom: 20px;
        max-width: 100%;
        transform: unset;
        width: 100%;
    }
    .mobile-menu-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        border-bottom: 1px solid #e6e6e6;
    }
    .desktop-dropdown-title {
        display: none;
    }
    .desktop-dropdown {
        position: unset;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        border: 0;
        box-shadow: none;
        padding: 0 40px 0 40px;
    }
    .desktop-dropdown p {
        font-size: 12px;
        padding: 7px 0;
        border-bottom: none;
    }
    .desktop-dropdown p a {
        display: flex;
        align-items: center;
    }
}
.site-footer {
    margin-top: 0;
    padding-top: 36px;
    background: #010131;
    color: #cfd4ff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}
.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex: 1 1 48%;
}
.footer-logo img {
    width: 116px;
    opacity: 0.95;
}
.footer-action {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.footer-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 53px;
    padding: 0 24px;
    border-radius: 10px;
    background: linear-gradient(93deg, #4596E5 -9.17%, #4539CC 105.48%), #FFF;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s ease;
}
.footer-subscribe-btn:hover {
    background: linear-gradient(93deg, #62B2FF -9.17%, #8074FF 105.48%), #FFF;
}
.footer-social {
    display: flex;
    gap: 10px;
    max-width: 150px;
    flex-wrap: wrap;
}
.footer-social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-social-item::before {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 0;
}
.footer-social-youtube::before {
    content: url("/uploads/page/index/footer-youtube.svg");
}
.footer-social-facebook::before {
    content: url("/uploads/page/index/footer-facebook.svg");
}
.footer-social-x::before {
    content: url("/uploads/page/index/footer-x.svg");
}
.footer-social-youtube:hover::before {
    content: url("/uploads/page/index/footer-youtube-hover.svg");
}
.footer-social-facebook:hover::before {
    content: url("/uploads/page/index/footer-facebook-hover.svg");
}
.footer-social-x:hover::before {
    content: url("/uploads/page/index/footer-x-hover.svg");
}
.footer-social-instagram::before {
    content: url("/uploads/page/index/ins.svg");
}
.footer-social-tiktok::before {
    content: url("/uploads/page/index/tiktok.svg");
}
.footer-social-discord::before {
    content: url("/uploads/page/index/discord.svg");
}
.footer-social-instagram:hover::before {
    content: url("/uploads/page/index/ins-hover.svg");
}
.footer-social-tiktok:hover::before {
    content: url("/uploads/page/index/tiktok-hover.svg");
}
.footer-social-discord:hover::before {
    content: url("/uploads/page/index/discord-hover.svg");
}
.footer-links {
    margin-top: 0;
    padding: 0 0 24px;
    border-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    flex: 1 1 48%;
}
.footer-links a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.footer-links a:hover {
    opacity: 1;
}
.footer-bottom {
    margin-top: 0;
    display: flex;
    padding: 16px 20px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    justify-content: space-between;
}
.footer-copy {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 14px;
    color: #D7DAED;
}
.footer-locale {
    border: 0;
    border-radius: 18px;
    min-height: 34px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #D7DAED;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.footer-locale img {
    display: block;
}
.footer-locale-dropdown {
    position: relative;
}
.footer-locale-menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    min-width: 130px;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    background: #010131;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: all 0.2s ease;
}
.footer-locale-option {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    color: #d7daed;
    text-align: left;
    padding: 9px 12px;
    font-size: 13px;
    line-height: 1.25;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.footer-locale-option:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-locale-option:hover,
.footer-locale-option.is-active {
    color: #fff;
    background: rgba(94, 166, 255, 0.2);
}
.footer-locale-dropdown.open .footer-locale-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.footer-locale-dropdown.open .footer-locale-arrow {
    transform: rotate(180deg);
}
.footer-locale-icon {
    font-size: 13px;
    line-height: 1;
}
.footer-locale-arrow {
    font-size: 12px;
    line-height: 1;
    transition: transform 0.2s ease;
}
.go-top {
    position: fixed;
    right: 30px;
    bottom: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
}
.go-top img {
    display: block;
}
.go-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
@media (max-width: 600px) {
    .site-footer {
        padding-top: 25px;
    }
    .footer-main {
        flex-direction: column;
        gap: 0;
    }
    .footer-top {
        flex-direction: column;
        gap: 16px;
    }
    .footer-action {
        width: 100%;
        align-items: flex-start;
    }
    .footer-links {
        padding-bottom: 0;
    }
    .footer-social {
        gap: 18px;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0 26px;
        margin: 28px 15px 0;
    }
    .footer-locale {
        justify-content: space-between;
        min-height: 36px;
    }
    .footer-locale-current {
        flex: 1;
        text-align: left;
    }
    .footer-locale-menu {
        left: 0;
        right: auto;
        bottom: calc(100% + 8px);
        width: 100%;
        min-width: 0;
    }
    .footer-locale-option {
        padding: 10px 12px;
        font-size: 14px;
    }
    .footer-copy {
        font-size: 12px;
    }
    .go-top {
        right: 20px;
        bottom: 50px;
    }
    .go-top img {
        width: 60px;
    }
}
