.container {
    height: max(100%, 100vh);
}

.full {
    height: max(100vh, 100%);
    display: grid !important;
}

.header {
    position: relative;
}

.header .banner h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.index_btn {
    position: absolute;
    width: calc(100% - var(--section_pd)* 2);
    left: 50%;
    transform: translateX(-50%);
}

.platform_release {
    height: 0.32rem;
}

.banner .platform_release {
    /* margin-right: 0.3rem; */
}

.platform_release a {
    cursor: default;
}

.platform_release a>span {
    font-size: var(--font-sz-s3);
    line-height: 1;
    opacity: 0;
    transition: opacity 1s;
}

.font_zh-Hant .platform_release a>span {
    font-size: var(--font-sz-s1);
    line-height: 1.2;
}

.platform_release a:active span,
.platform_release a:hover span {
    opacity: 1;
}

.function_button {
    padding: 0.2rem 0;
    gap: 0.2rem
}

.number_of_draws {
    border: 1px solid #2e3738;
    background: repeating-linear-gradient(to bottom, rgba(27, 39, 43, 0.6) 1px, rgba(27, 39, 43, 0.6) 2px, transparent 2px, transparent 4px);
    color: #8a938e;
    text-align: center;
}

.number_of_draws span {
    color: var(--clr-org-01);
    margin-left: 0.1rem;
}

.gift_awaits {
    position: relative;
    margin-top: 0.32rem;
}

.number_of_draws {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.reward_rules a {
    text-decoration: underline;
    color: #8a938e;
}

.font_zh-Hant .dg_box li,
.font_zh-Hant .dg_box p {
    font-family: system-ui, sans-serif !important;
}

.reward_rules a:hover {
    color: var(--clr-org-01);
}

.dg_box_ct .reward_progress_list span {
    text-align: left;
}

.reward_progress_list li {
    display: flex;
    align-items: center;
    position: relative;
}

.font_en .reward_progress_list li {
    font-family: var(--font-fm-arial);
}

.reward_progress_list li::before {
    content: "";
    overflow: hidden;
    background-color: #636864;
    position: absolute;
}

.reward_progress_list li span {
    flex: 1;
    color: var(--clr-text);
}

.reward_progress_list li a {
    display: flex;
    align-items: center;
    background-color: #404a4b;
    text-decoration: none;
    color: #101c20;
    position: relative;
    overflow: hidden;
}

.reward_progress_list li a::after {
    content: "";
    position: absolute;
    border-left: 0.02rem solid #212c2d;
    border-bottom: 0.02rem solid #212c2d;
    transform: translate(0, -50%) rotate(-135deg);
}

.reward_progress_list li a.claim {
    color: var(--clr-org-01);
}

.reward_progress_list li a.claim::after {
    border-color: var(--clr-org-01);
}

#dlg_reward_rules .db_box_ct,
.dg_box_ct .reward_progress_list {
    padding-top: 0;
}

.dg_box_ct .reward_progress_list li {
    padding-bottom: 0.1rem;
}

.dg_box_ct .reward_progress_list li::before {
    display: none;
}

.sec_game_introduction {
    overflow: hidden;
    position: relative;
}

.intro_video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.intro_video video {
    width: 100%;
    height: 100%;
    pointer-events: none;
}


.introduction_slideshow_wrap {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.introduction_slideshow {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-out;
    position: relative;
}

.introduction_slideshow_content {
    width: 33.33%;
    height: 100%;
    position: relative;
}

.introduction_content p {
    color: var(--clr-text-01);
    display: block;
    letter-spacing: 0.01rem;
}

.font_en .introduction_content p {
    font-family: var(--font-fm-arial);
    font-size: var(--font-sz-01);
}

.slideshow_control_lr {
    position: absolute;
    display: flex;
    justify-content: space-between;
}

.slideshow_control_next {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48px' height='65px'%3E%3Cpath fill-rule='evenodd' fill='rgba(255, 255, 255,.7)' d='M17.396,64.501 L0.764,64.501 L31.257,32.455 L0.764,0.408 L17.396,0.408 L47.889,32.455 L17.396,64.501 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.slideshow_control_prev {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48px' height='65px'%3E%3Cpath fill-rule='evenodd' fill='rgba(255, 255, 255,.7)' d='M47.705,64.957 L31.096,64.957 L0.645,32.953 L31.096,0.951 L47.705,0.951 L17.254,32.953 L47.705,64.957 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.introduction_slideshow_control {
    position: absolute;
    left: 0;
    width: 100%;
}

.slideshow_control_status {
    display: flex;
    justify-content: center;
    height: 0.05rem;
    gap: 0.1rem;
}

.slideshow_control_status span {
    background-color: var(--clr-lightbule);
    width: 1rem;
    height: 0.05rem;
}

.slideshow_control_status span.curr {
    background-color: var(--clr-org);
}

.news_list {
    position: relative;
}

.news_list li {
    position: relative;
    border-bottom: 1px solid;
    border-color: rgba(var(--bd-rgba));
}

.font_zh-hant .news_list,
.font_zh-hant .sec_news .sec_title_more {
    font-family: system-ui;
}

.font_en .news_list li {
    font-family: var(--font-fm-arial);
}

.news_list a {
    color: var(--clr-text-01);
    display: flex;
    justify-content: space-between;
    text-decoration: none;
}

.news_list a:hover {
    text-decoration: none;
    color: var(--clr-org-01);
}

.news_list time {
    color: var(--clr-text);
}

.news_list .news_link_text {
    overflow: hidden;
}

.news_link_text span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news_link_text span,
.news_link_text time {
    display: block;
    text-shadow: var(--text-sd);
}

.news_list .news_link_img img {
    width: 100%;
    height: 100%;
    display: block;
}

.sec_game_features {
    position: relative;
    overflow: hidden;
}

.sec_game_features .features_title {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.sec_game_features_ct {
    padding-top: 0.6rem;
}

.features_list li {
    border-bottom: 0.01rem solid rgba(var(--bd-rgba));
    padding: 0.15rem 0;
    color: var(--clr-text-01);
}

/* .features_list li:first-child {
    padding-top: 0;
} */
.features_list h3 {
    padding-left: 0.3rem;
    height: .4rem;
    position: relative;
    font-size: var(--font-sz-06);
    display: flex;
    align-items: center;
}

.features_list h3::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='rgb(163, 65, 50)' points='0,0 16,8 0,16'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    width: 0.16rem;
    height: 0.16rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.features_list p {
    color: var(--clr-text-01);
}

.font_en .features_list p {
    font-family: var(--font-fm-arial);
}

.dot {
    width: .03rem;
    height: .03rem;
    margin: .04rem auto;
    background-color: #fff;
    opacity: .2;
    animation: moveDown 2s infinite;
}

.dot:nth-child(2) {
    opacity: .4;
    animation: moveDown 2s infinite .1s;
}

.dot:nth-child(3) {
    opacity: .6;
    animation: moveDown 2s infinite .2s;
}

.dot:nth-child(4) {
    opacity: .8;
    animation: moveDown 2s infinite .3s;
}

.dot:nth-child(5) {
    opacity: 1;
    animation: moveDown 2s infinite .4s;
}

.svg_arrow {
    width: .26rem;
    height: .15rem;
    margin-top: -.05rem;
    animation: moveDown 2s infinite .5s;
    pointer-events: inherit;
}

@keyframes moveDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

.svg_arrow svg {
    fill: var(--clr-text-01);
    width: 100%;
    height: 100%;
    pointer-events: inherit;
}

.page_arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99;
    width: 3rem;
    height: 2rem;
    position: absolute;
    bottom: 0.1rem;
    left: 50%;
    transform: translateX(-50%)
}

@keyframes bounce {
    0% {
        transform: translateY(-10px)
    }

    50% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-10px)
    }
}

.page_arrow_bar {
    position: fixed;
    height: 0;
    width: 100%;
    pointer-events: none;
    font-size: var(--font-sz-s3);
    bottom: 0
}

.db_draw {
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.db_draw li {
    transition: transform 0.6s, opacity 0.6s;
    transform-origin: center bottom;
    transition: all 0.5s ease-in-out;
}

.db_draw li.luckkkkk {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.db_draw li.hidden {
    transform: rotateX(90deg);
    opacity: 0;
}

.page_pagination {
    position: fixed;
    width: 0.16rem;
    z-index: 998;
}

.page_pagination span.swiper-pagination-bullet {
    width: 100%;
    height: 0.76rem;
    position: relative;
}

.page_pagination span.swiper-pagination-bullet-active::before,
.page_pagination span.swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 10rem;
    transition: height 0.5s;
}

.page_pagination span.swiper-pagination-bullet,
.page_pagination span.swiper-pagination-bullet-active {
    background: none !important;
    border: none !important;
    outline: none !important;
}

.page_pagination span.swiper-pagination-bullet::before {
    height: 0.16rem;
    background: rgba(255, 255, 255, 1) !important;
}

.page_pagination span.swiper-pagination-bullet-active::before {
    background: rgba(197, 67, 36, .8) !important;
    height: 0.38rem;
}

.footer {
    width: 100%;
    position: fixed;
    z-index: 999;
    bottom: -12vw;
    left: 0;
}

.slide_up {
    animation: slide-up 0.5s ease-in-out forwards;
    position: fixed;
}

@keyframes slide-up {
    from {
        bottom: -12vw;
    }

    to {
        bottom: 0;
    }
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: 2% !important;
}

/* .beta_time {
    text-align: center;
    font-size: var(--font-sz-04);
    color: var(--clr-text-01);
    padding: .2rem 0;
}

.font_zh-Hant .beta_time {
    font-size: var(--font-sz-02);
}

.beta_time stong {
    font-weight: 700;
} */

.features_list li:first-child {
    padding: 0;
    border-bottom: none;
}

.community_feedback {
    display: flex;
    justify-content: space-between;
    gap: 0.3rem;
}

.service_btn {
    display: flex;
    background-color: #96a3a1;
    color: #223444;
    font-weight: bold;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.5s;
}

.service_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    border-left: 0.02rem solid;
    border-bottom: 0.02rem solid;
    transform: translate(0, -50%) rotate(-135deg);
    transition: 0.5s;
    border-color: #000;
    width: 0.12rem;
    height: 0.12rem;
    position: absolute;
}

.font_zh-Hant .service_btn {
    font-family: system-ui, sans-serif;
}

.service_btn i {
    display: block;
}

.ico_join_community {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.59 5.88997C17.36 5.31997 16.05 4.89997 14.67 4.65997C14.5 4.95997 14.3 5.36997 14.17 5.69997C12.71 5.47997 11.26 5.47997 9.83001 5.69997C9.69001 5.36997 9.49001 4.95997 9.32001 4.65997C7.94001 4.89997 6.63001 5.31997 5.40001 5.88997C2.92001 9.62997 2.25001 13.28 2.58001 16.87C4.23001 18.1 5.82001 18.84 7.39001 19.33C7.78001 18.8 8.12001 18.23 8.42001 17.64C7.85001 17.43 7.31001 17.16 6.80001 16.85C6.94001 16.75 7.07001 16.64 7.20001 16.54C10.33 18 13.72 18 16.81 16.54C16.94 16.65 17.07 16.75 17.21 16.85C16.7 17.16 16.15 17.42 15.59 17.64C15.89 18.23 16.23 18.8 16.62 19.33C18.19 18.84 19.79 18.1 21.43 16.87C21.82 12.7 20.76 9.08997 18.61 5.88997H18.59ZM8.84001 14.67C7.90001 14.67 7.13001 13.8 7.13001 12.73C7.13001 11.66 7.88001 10.79 8.84001 10.79C9.80001 10.79 10.56 11.66 10.55 12.73C10.55 13.79 9.80001 14.67 8.84001 14.67ZM15.15 14.67C14.21 14.67 13.44 13.8 13.44 12.73C13.44 11.66 14.19 10.79 15.15 10.79C16.11 10.79 16.87 11.66 16.86 12.73C16.86 13.79 16.11 14.67 15.15 14.67Z' fill='%2323333d'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.player_feedback {
    background-image: url("data:image/png;base64,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");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 60%;
}

.font_en .event_rules a,
.font_en .lottery_draw_info,
.font_en .lottery_draw_info a,
.font_en .reservation_gifts_info,
.font_en .lottery_draw_btn::before,
.font_en .reservation_task_subtitle::after{
    font-family: var(--font-fm-arial);
}

.reservation_gifts_info {
    color: var(--clr-text-01);
}

.reservation_gifts_info,
.reservation_gifts_info::before {
    border-top-color: rgba(255, 255, 255, .2) !important;
}

.box_line_wrap {
    display: flex;
    width: 100%;
    position: relative;
    border: 0.01rem solid #273540;
}

.box_line_wrap::before {

    --sz: calc(100% + (var(--pd) * 2));
    --ps: calc(-1 * var(--pd));
    --clr: #273540;

    content: "";
    position: absolute;
    width: var(--sz);
    height: var(--sz);
    left: var(--ps);
    top: var(--ps);
    z-index: 1;
    background:
        linear-gradient(var(--clr), var(--clr)) left top, linear-gradient(var(--clr), var(--clr)) left top,
        linear-gradient(var(--clr), var(--clr)) right top, linear-gradient(var(--clr), var(--clr)) right top,
        linear-gradient(var(--clr), var(--clr)) left bottom, linear-gradient(var(--clr), var(--clr)) left bottom,
        linear-gradient(var(--clr), var(--clr)) right bottom, linear-gradient(var(--clr), var(--clr)) right bottom;
    background-repeat: no-repeat;
    background-size: var(--pd) var(--bw), var(--bw) var(--pd);
}

.lottery_count {
    color: var(--clr-org);
}

.reservation_task_title {
    align-items: center;
    justify-content: center;
}

.reservation_task_title span {
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.reservation_task_subtitle {
    padding-left: var(--pl);
    margin-top: var(--mt);
    height: var(--h);
    line-height: var(--h);
    width: 100%;
    position: relative;
    z-index: 1;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%234d2923' d='M0 0l16 8-16 8z'/%3E%3C/svg%3E") no-repeat left center;
    background-size: 3%;
    font-weight: 700;
}

.reservation_task_subtitle::after {
    content: attr(data-info);
    position: absolute;
    width: 90%;
    height: 100%;
    left: var(--pl);
    top: 55%;
    color: #323e47;
}

.reservation_task_gift_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 0.2rem;
}

.reservation_task_gift_list img {
    height: 85%;
    width: auto;
    position: absolute;
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
}

.reservation_task_gift_list li {
    --cl: #343a3f;
    width: calc(var(--sz) * 1.3);
    height: var(--sz);
    border: 0.01rem solid var(--cl);
    background-image: radial-gradient(circle, var(--cl) 10%, transparent 10%);
    background-size: 2px 2px;
    line-height: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.reservation_task_panel {
    color: var(--clr-deepbule);
}

.reservation_task_list {
    position: relative;
    z-index: 1;
    border-top: 0.01rem solid #343a3f;
    font-weight: 700;
}

.reservation_task_list::after,
.reservation_task_list::before {
    content: "";
    position: absolute;
    width: var(--w);
    height: var(--h);
    background: #343a3f;
}

.reservation_task_list::after {
    right: 0;
}

.reservation_task_list::before {
    left: 0;
}

.reservation_task_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--h);
    line-height: var(--h);
    margin-bottom: var(--mb);
}


.task_item {
    position: relative;
    z-index: 1;
    padding-left: 0.2rem;
    height: 100%;
}

.task_item::before {
    content: "";
    position: absolute;
    height: 0.04rem;
    width: 0.04rem;
    background-color: var(--clr-deepbule);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.get_task_btn {
    width: var(--w);
    line-height: var(--h);
    height: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
    font-weight: 700;
}

li.disable .get_task_btn {
    border: 0.01rem solid #384955;
    cursor: default;
    color: #323e47;
}

li.active .get_task_btn {
    --c: #503835;
    border: 0.01rem solid var(--c);
    color: var(--c);
}

.lottery_draw_btn {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lottery_draw_btn::before,
.event_rules a,
.lottery_draw_info,
.lottery_draw_info a {
    color: var(--clr-text-01)
}

.lottery_draw_info a:hover,
.event_rules a:hover {
    color: var(--clr-org);
    text-decoration: none;
}

.lucky_dialog {
    height: var(--h);
    width: var(--w);
    display: flex;
    justify-content: space-between;
}
.lucky_dialog p{
    line-height: 1.5;
}
.lucky_dialog_img{
    position: relative;
    z-index: 1;
    height: 100%;
}
.lucky_dialog_img img {
    position: absolute;
    height: auto;
}

.lucky_dialog_title{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 0.1rem;
}
.lucky_dialog_title span{
    width: -moz-fit-content;
    width: fit-content;
}
.contact_intro_summary{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_intro_summary svg {
    width:var(--sz);
    height:var(--sz);
}
.lucky_dialog_text {
    height: 100%;
}
.lucky_dialog p strong{
    display: block;
}
.contact_intro_details{
    border-top: 0.01rem solid rgba(255, 255, 255, .1);
    margin-top: 0.05rem;
}
.scr_box {
    overflow-y: auto;
    margin: 0.05rem 0;
}

.scr_box::-webkit-scrollbar {
    width: var(--w);
}

.scr_box::-webkit-scrollbar-track {
    background: #000;
}

.scr_box::-webkit-scrollbar-thumb {
    background: #6c6b6c;
}

.scr_box::-webkit-scrollbar-thumb:hover {
    background: rgb(197, 67, 36);
}

.scr_box::-webkit-scrollbar-thumb:active {
    background: rgb(197, 67, 36);
}