@charset "UTF-8";

/* ==================== */
/* ANIMATION KEYFRAMES */
/* ==================== */

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 88, 16, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(253, 88, 16, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 88, 16, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floatSlow {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

@keyframes glowPulse {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.15);
    }
    100% {
        filter: brightness(1);
    }
}

@keyframes borderFlow {
    0% {
        border-color: var(--main-color);
    }
    50% {
        border-color: #FF962C;
    }
    100% {
        border-color: var(--main-color);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ==================== */
/* BASE STYLES */
/* ==================== */

html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: #9195a3
}

#app {
    width: 10rem;
    height: -webkit-fit-content;
    height: fit-content;
    min-height: 100vh;
    animation: fadeIn 0.5s ease-out;
}

.norem-app {
    width: 5rem
}

@media screen and (max-width: 500px) {
    #app {
        width:100%;
        min-height: 100vh
    }

    #app::-webkit-scrollbar {
        width: 0;
        background: transparent
    }

    .van-popup.van-popup--bottom {
        max-width: none
    }
}

@media (min-width: 501px) {
    .van-popup.van-popup--bottom {
        max-width:10rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translate(-50%)
    }

    .van-popup.van-popup--center {
        max-width: 10rem
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

/* ==================== */
/* TABBAR STYLES WITH ANIMATIONS */
/* ==================== */

.tabbar__container[data-v-6ab3f23e] {
    position: fixed;
    bottom: 0;
    left: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    width: 10rem;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    height: 1.73333rem;
    padding-block:0 .13333rem;
    font-size: .29333rem;
    background: url(/assets/png/tabBarBg-0d05851f.webp) no-repeat center center/cover;
    z-index: 100
}

.tabbar__container-item[data-v-6ab3f23e] {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    gap: .11707rem;
    color: var(--text4, var(--text_color_L2));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tabbar__container-item[data-v-6ab3f23e]:hover {
    transform: translateY(-3px);
}

.tabbar__container-item.active[data-v-6ab3f23e] {
    color: var(--main-color)!important;
    animation: pulse 0.3s ease-out;
}

.tabbar__container-item[data-v-6ab3f23e]:nth-of-type(3) {
    position: relative
}

.tabbar__container-item[data-v-6ab3f23e]:nth-of-type(3) svg {
    position: relative;
    top: -.4rem;
    width: .7504rem;
    height: .65rem;
    z-index: 3;
    transition: all 0.3s ease;
    animation: float 2s ease-in-out infinite;
}

.tabbar__container-item[data-v-6ab3f23e]:nth-of-type(3) svg path {
    fill: #fff!important
}

.tabbar__container-item:nth-of-type(3) .promotionBg[data-v-6ab3f23e] {
    position: absolute;
    left: 50%;
    bottom: .53333rem;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%);
    background: var(--bg_color_L2);
    width: 1.46667rem;
    height: 1.46667rem;
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.tabbar__container-item:nth-of-type(3) .promotionBg[data-v-6ab3f23e]:hover {
    transform: translate(-50%, -5px);
}

.tabbar__container-item:nth-of-type(3) .promotionBg[data-v-6ab3f23e]:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.36rem;
    height: 1.36rem;
    border-radius: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: var(--main_gradient-color2)
}

.tabbar__container-item:nth-of-type(3) .turntableBg[data-v-6ab3f23e] {
    position: absolute;
    left: 50%;
    bottom: .08rem;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%);
    background-image: var(--6ab3f23e-getInvitedWheelImgUrl);
    background-repeat: no-repeat;
    background-size: cover;
    width: 2.04rem;
    height: 2.04rem;
    z-index: 2
}

.tabbar__container-item:nth-of-type(3) .turntable-text[data-v-6ab3f23e] {
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%);
    bottom: .21333rem;
    z-index: 3;
    font-size: .34667rem;
    font-weight: 600;
    color: var(--main-color);
    min-width: 2.44rem;
    animation: floatSlow 2.5s ease-in-out infinite;
}

.tabbar__container-item svg[data-v-6ab3f23e] {
    display: block;
    width: .5776rem;
    height: .59387rem
}

.tabbar__container-item span[data-v-6ab3f23e] {
    line-height: .37333rem;
    height: .37333rem;
    width: 100%;
    text-align: center;
    overflow: hidden
}

@media screen and (max-width: 500px) {
    .tabbar__container[data-v-6ab3f23e] {
        width:100%;
        left: 0;
        -webkit-transform: translateX(0);
        transform: translate(0)
    }

    html:lang(ar) .tabbar__container[data-v-6ab3f23e] {
        left: unset;
        right: 0
    }
}

/* ==================== */
/* START PAGE STYLES */
/* ==================== */

.start-page[data-v-5eb72be7] {
    position: fixed;
    z-index: 9999;
    width: 10rem;
    height: 100%;
    background: var(--main-color);
    bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/assets/png/start-28f44244.webp);
    animation: fadeInScale 0.5s ease-out;
}

/* ==================== */
/* HEADER STYLES WITH ANIMATIONS */
/* ==================== */

.header[data-v-9cd12fb2] {
    min-height: 1.86667rem;
    background-color: var(--bg_color_L3);
    color: var(--text_color_L1);
    padding-top: .33333rem;
    border-radius: .26667rem .26667rem 0 0;
    animation: slideInUp 0.4s ease-out;
}

.header .title[data-v-9cd12fb2] {
    font-size: .37333rem
}

.header .tip[data-v-9cd12fb2] {
    font-size: .29333rem;
    font-weight: 400;
    margin-top: .26667rem
}

.container[data-v-9cd12fb2] {
    padding: .26667rem .13333rem;
    background-color: var(--bg_color_L2);
    max-height: calc(100vh - 8.4rem);
    overflow: auto;
    animation: fadeIn 0.5s ease-out;
}

.container[data-v-9cd12fb2] .first_list-item {
    box-shadow: none
}

.footer[data-v-9cd12fb2] {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    min-height: 1.33333rem;
    background-color: var(--bg_color_L3);
    padding: 0 .26667rem;
    border-radius: 0 0 .26667rem .26667rem
}

.footer .btn[data-v-9cd12fb2] {
    background: var(--main_gradient-color);
    width: 2.66667rem;
    min-height: .66667rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: .33333rem;
    text-align: center;
    color: var(--text_color_L4);
    font-size: .37333rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer .btn[data-v-9cd12fb2]:active {
    transform: scale(0.95);
}

.footer .btn[data-v-9cd12fb2]:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.footer .btn[data-v-9cd12fb2]:active:before {
    width: 200%;
    height: 200%;
}

.footer .active[data-v-9cd12fb2] {
    color: var(--text_color_L2);
    font-size: .32rem;
    background-repeat: no-repeat;
    background-size: .48rem;
    background-position: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    gap: .16rem;
    -webkit-align-content: center;
    align-content: center;
    transition: all 0.3s ease;
}

[data-v-9cd12fb2] .first_list-item {
    background: var(--bg_color_L3);
    animation: slideInLeft 0.4s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

[data-v-9cd12fb2] .first_list-item:hover {
    transform: translateX(5px);
    filter: brightness(0.98);
}

.close[data-v-9cd12fb2] {
    position: absolute;
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    bottom: -.93333rem;
    background-image: url(/assets/png/close-862c6a4d.webp);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

.close[data-v-9cd12fb2]:hover {
    transform: translateX(-50%) rotate(90deg);
}

/* ==================== */
/* SECOND VERIFICATION STYLES WITH ANIMATIONS */
/* ==================== */

.second-verification[data-v-7dee72bf] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--bg_color_L1)!important;
    z-index: 9999;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-bottom: .13333rem;
    animation: fadeIn 0.3s ease-out;
}

.second-verification .head[data-v-7dee72bf] {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 1.41333rem;
    font-size: .48rem;
    position: relative
}

.second-verification .head .out[data-v-7dee72bf] {
    color: var(--norm_bule-color);
    font-size: .4rem;
    position: absolute;
    right: .26667rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.pin-wrapper[data-v-7dee72bf] {
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: .21333rem
}

.pin-input[data-v-7dee72bf] {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 .26667rem;
    margin-bottom: 3rem
}

.pin-input .pin-box[data-v-7dee72bf] {
    height: .64rem;
    width: .64rem;
    border-radius: 50%;
    border: .01333rem solid var(--text_color_L1);
    transition: all 0.2s ease;
    animation: fadeInScale 0.2s ease-out;
}

.pin-input .pin-box.a[data-v-7dee72bf] {
    background: var(--text_color_L1)
}

.pin-input .tip[data-v-7dee72bf] {
    text-align: center;
    color: var(--text_color_L2);
    font-size: .32rem;
    margin-bottom: .13333rem
}

.errorText[data-v-7dee72bf] {
    color: var(--norm_red-color);
    text-align: center;
    margin-bottom: .13333rem;
    animation: shake 0.4s ease-out;
}

.numeric-keypad[data-v-7dee72bf] {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 1.17333rem;
    gap: .10667rem;
    -webkit-user-select: none;
    user-select: none
}

.key[data-v-7dee72bf] {
    border: none;
    border-radius: .16rem;
    background: var(--bg_color_L2);
    font-size: .48rem;
    cursor: pointer;
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.key[data-v-7dee72bf]:active {
    background: var(--bg_color_L3);
    transform: scale(0.92);
}

.key--danger[data-v-7dee72bf] {
    background: var(--norm_red-color);
    color: var(--text_color_L4)
}

.key--placeholder[data-v-7dee72bf] {
    visibility: hidden
}

/* ==================== */
/* REWARD DIALOG STYLES WITH ANIMATIONS */
/* ==================== */

.reward-dialog .title[data-v-35a27ba7] {
    width: 4rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: var(--main-color);
    font-family: Roboto;
    font-size: .64rem;
    font-style: normal;
    font-weight: 700;
    text-align: left;
    height: 1.41333rem;
    animation: slideInLeft 0.4s ease-out;
}

.reward-dialog .container[data-v-35a27ba7] {
    height: 8.8rem;
    padding: 0 .32rem;
    background: var(--bg_color_L1);
    overflow-y: auto;
    animation: slideInUp 0.3s ease-out;
}

.reward-dialog.van-dialog {
    width: 8.29333rem;
    background: var(--bg_color_L1) url(/assets/png/reward_bg-e5a247a8.webp) no-repeat center/cover;
    overflow: inherit;
    animation: fadeInScale 0.3s ease-out !important;
}

.reward-dialog.van-dialog .van-dialog__content {
    padding-bottom: .26667rem
}

.reward-dialog.van-dialog .van-dialog__header {
    padding: .34667rem .42667rem .13333rem
}

.reward-dialog.van-dialog .close {
    position: absolute;
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    bottom: -.93333rem;
    background-image: url(/assets/png/close-862c6a4d.webp);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

.reward-dialog.van-dialog .close:hover {
    transform: translateX(-50%) rotate(90deg);
}

/* ==================== */
/* DIALOG WRAPPER STYLES WITH ANIMATIONS */
/* ==================== */

.dialog-wrapper[data-v-3d4fafbb] {
    padding: .26667rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    animation: fadeInScale 0.3s ease-out;
}

.dialog-wrapper img[data-v-3d4fafbb] {
    width: 3.73333rem;
    height: 2.16rem;
    position: relative;
    margin-top: -.74667rem;
    transition: all 0.3s ease;
}

.dialog-wrapper img[data-v-3d4fafbb]:hover {
    transform: scale(1.05);
}

.dialog-wrapper .dialog-title[data-v-3d4fafbb] {
    color: var(--text_color_L1);
    margin: .4rem 0 .26667rem;
    font-size: .48rem;
    font-weight: 700
}

.dialog-wrapper .dialog-tips[data-v-3d4fafbb],
.dialog-wrapper .dialog-receive[data-v-3d4fafbb] {
    color: var(--text_color_L2);
    font-size: .32rem;
    margin: 0 0 .32rem
}

.dialog-wrapper .dialog-receive[data-v-3d4fafbb] {
    text-align: center;
    margin: .13333rem .32rem 0
}

.dialog-wrapper .dialog-para[data-v-3d4fafbb] {
    color: var(--text_color_L2);
    font-size: .32rem
}

.dialog-wrapper .dialog-btn[data-v-3d4fafbb] {
    width: 5.6rem;
    height: 1.06667rem;
    text-align: center;
    line-height: 1.06667rem;
    background: var(--GradiantBlue, var(--main_gradient-color));
    border-radius: 1.06667rem;
    font-weight: 700;
    color: var(--text_color_L4);
    font-size: .42667rem;
    margin-top: .53333rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dialog-wrapper .dialog-btn[data-v-3d4fafbb]:active {
    transform: scale(0.96);
}

.dialog-wrapper .dialog-btn[data-v-3d4fafbb]:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.dialog-wrapper .dialog-btn[data-v-3d4fafbb]:active:before {
    width: 200%;
    height: 200%;
}

.dialog-wrapper .dialog-content[data-v-3d4fafbb] {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: var(--norm_secondary-color)
}

.dialog-wrapper .dialog-content img[data-v-3d4fafbb] {
    width: .4rem;
    height: .4rem;
    margin: 0 .13333rem 0 0
}

.dialog-wrapper .dialog-footer[data-v-3d4fafbb] {
    position: relative;
    bottom: -1.46667rem
}

.dialog-wrapper .dialog-footer img[data-v-3d4fafbb] {
    width: .8rem;
    height: .8rem
}

.custom18dialog .dialog-18[data-v-3d4fafbb] {
    border-radius: .16rem;
    height: 6.66667rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: .53333rem;
    background: var(--bg_color_L2)
}

.custom18dialog .dialog-18 .icon18[data-v-3d4fafbb] {
    display: block;
    height: 1.30667rem;
    width: 1.30667rem;
    margin: 0 auto
}

.custom18dialog .dialog-18 span[data-v-3d4fafbb]:nth-child(1) {
    display: block;
    font-size: .53333rem;
    color: var(--text_color_L1);
    margin: .53333rem 0 .18667rem;
    font-weight: 600
}

.custom18dialog .dialog-18 .tip_txt[data-v-3d4fafbb] {
    font-size: .34667rem;
    color: var(--text_color_L2);
    margin-bottom: .77333rem
}

.custom18dialog .dialog-18 .dialog-footer .dialog-btn[data-v-3d4fafbb] {
    margin: 0 auto .32rem;
    width: 7.33333rem;
    height: 1.06667rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: .16rem;
    font-size: .37333rem;
    font-weight: 500
}

.custom18dialog .dialog-18 .dialog-footer .btn-cnf[data-v-3d4fafbb] {
    background: var(--main_gradient-color)
}

.custom18dialog .dialog-18 .dialog-footer .btn-cancel[data-v-3d4fafbb] {
    border: .01333rem solid var(--main-color);
    color: var(--main-color)
}

.noAge .dialog-18[data-v-3d4fafbb] {
    height: 5.06667rem
}

.noAge .dialog-18 .dialog-footer[data-v-3d4fafbb] {
    margin-top: .53333rem
}

/* ==================== */
/* RESPONSIVE STYLES */
/* ==================== */

@media screen and (min-width: 800px) {
    html {
        font-size:2.5rem!important
    }
}

/* ==================== */
/* FONT FACE DECLARATIONS */
/* ==================== */

@font-face {
    font-family: bahnschrift;
    font-weight: 500;
    src: url(/assets/woff2/bahnschrift-610d57ac.woff2)
}

@font-face {
    font-family: digitalDreamFat;
    src: url(/assets/ttf/digitalDreamFat-7e51cfaf.ttf) format("truetype")
}

/* ==================== */
/* RESET STYLES */
/* ==================== */

html,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
    border: 0
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}

table {
    border-spacing: 0;
    border-collapse: collapse
}

svg {
    height: 100%
}

* {
    -webkit-user-select: none;
    user-select: none
}

html,body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0
}

#app {
    padding: 0;
    margin: 0
}

body {
    height: auto
}

:-webkit-any(article,aside,nav,section) h1 {
    font-size: 2em
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor
}

input {
    -webkit-user-select: text;
    user-select: text;
    color: var(--text_color_L1);
    transition: all 0.2s ease;
}

input:focus {
    outline: .01333rem solid var(--Dividing-line_color);
    -webkit-user-select: text;
    user-select: text;
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 2px rgba(253, 88, 16, 0.1);
}

/* ==================== */
/* UTILITY CLASSES */
/* ==================== */

.c-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex
}

.c-row-middle-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.c-row-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.c-row-middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.c-flex-warp {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

.m-b-5 {
    margin-bottom: .13333rem
}

.m-r-5 {
    margin-right: .13333rem
}

.c-flew-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end
}

.c-tc {
    text-align: center
}

.p-r-10 {
    padding-right: .26667rem
}

.p-l-10 {
    padding-left: .26667rem
}

.p-b-10 {
    padding-bottom: .26667rem
}

.p-t-10 {
    padding-top: .26667rem
}

/* ==================== */
/* POPUP STYLES WITH ANIMATIONS */
/* ==================== */

.popup {
    border-radius: .26667rem .26667rem 0 0;
    z-index: 2006;
    left: auto;
    overflow-y: visible;
    animation: slideInUp 0.3s ease-out;
}

.PreSaleRule {
    width: 7.04rem
}

.Tips {
    width: 8rem;
    height: 2.13333rem;
    line-height: 2.13333rem;
    background: var(--whiteBg);
    border: .01333rem solid var(--borderColor-5);
    border-radius: .26667rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    top: 80%
}

.firstSaveDialog {
    width: 8rem;
    overflow: initial
}

.firstSaveDialog .van-dialog__header {
    padding-top: 0
}

.custom18dialog {
    width: 8.4rem
}

.msg-window {
    padding: .13333rem .26667rem;
    width: 9.33333rem
}

.msg-window .msg-header {
    color: var(--text_color_L1);
    font-size: .32rem
}

.msg-window .msg-footer div {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end
}

.msg-window .msg-footer {
    color: var(--main-color);
    font-size: .32rem;
    padding-top: .32rem
}

.msg-window .msg-footer img {
    width: .4rem;
    height: .4rem
}

.noOverHidden {
    overflow: inherit
}

/* ==================== */
/* DAILY SIGN IN RULES STYLES */
/* ==================== */

.dailySignInRules__container-hero {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    margin: .13333rem auto .53333rem;
    border-radius: .26667rem;
    overflow: hidden
}

.dailySignInRules__container-hero__wrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.dailySignInRules__container-hero__wrapper-titlebox {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    width: 100%;
    color: var(--text_color_L1)
}

.dailySignInRules__container-hero__wrapper ul {
    width: 100%
}

.dailySignInRules__container-hero__wrapper ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%
}

.dailySignInRules__container-hero__wrapper ul li div {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: .37333rem;
    padding: .34667rem 0;
    border-bottom: .01333rem solid var(--bgcolor-54)
}

.dailySignInRules__container-hero__wrapper-title {
    width: 100%;
    height: 1.06667rem;
    padding-block:.34667rem;
    font-size: .42667rem;
    line-height: .32rem;
    text-align: center;
    background: var(--main_gradient-color2)
}

.dailySignInRules__container-hero__wrapper-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    height: 100%
}

.dailySignInRules__container-hero__wrapper-content>div {
    width: 100%;
    padding: .34667rem 0;
    font-size: .37333rem;
    line-height: .37333rem;
    text-align: center;
    border-bottom: .01333rem solid var(--bgColor-10)
}

.dailySignInRules__container-hero__wrapper-content>div:last-of-type {
    border-bottom: none
}

.mgt10 {
    margin-top: .13333rem!important
}

.mgt40 {
    margin-top: .53333rem!important
}

[v-cloak] {
    display: none
}

.clearfix:after,.clearfix:before {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0
}

.text-dots {
    line-height: .453334rem;
    width: 2.13333rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.must:before {
    content: "*";
    color: #fb5151
}

input,textarea {
    -webkit-user-select: text;
    user-select: text
}

/* ==================== */
/* AR SEARCHBAR STYLES WITH ANIMATIONS */
/* ==================== */

.ar {
    position: fixed;
    top: .93333rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    width: 100%;
    max-width: 10rem;
    -webkit-user-select: none;
    user-select: none;
    z-index: 100;
    padding: 0 .29333rem
}

.ar-searchbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: .29333rem;
    width: 100%;
    font-size: .37333rem;
    margin-top: .26667rem;
    margin-bottom: .21333rem
}

.ar-searchbar input {
    width: 3.6rem;
    height: 1.06667rem;
    padding: 0 .26667rem;
    font-weight: 400;
    border: none;
    border-radius: .13333rem;
    transition: all 0.3s ease;
}

.ar-searchbar input:focus {
    transform: scale(1.02);
}

.ar-searchbar input::-webkit-input-placeholder {
    color: var(--colorText-63)
}

.ar-searchbar input::placeholder {
    color: var(--colorText-63)
}

.ar-searchbar__selector[data-v-fa757a88] {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 4.53333rem;
    height: 1.06667rem!important
}

.ar-searchbar__selector div[data-v-fa757a88] {
    line-height: 1.06667rem
}

.ar-searchbar__selector {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 4.53333rem;
    height: 1.06667rem;
    color: var(--text_color_L2)
}

.ar-searchbar__selector>div {
    width: 100%;
    line-height: 1.06667rem;
    border-radius: .13333rem;
    background: var(--darkBg, var(--bg_color_L2))
}

.ar-searchbar__selector>div:first-of-type {
    position: relative;
    padding: 0 .26667rem;
    z-index: 10
}

.ar-searchbar__selector>div:first-of-type i {
    position: absolute;
    top: 50%;
    right: .21333rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}

.ar-searchbar__selector-dropdown {
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    border: .01333rem solid var(--text_color_L1);
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}

.ar-searchbar__selector-dropdown li {
    padding: 0 .26667rem;
    list-style: none;
    transition: all 0.2s ease;
}

.ar-searchbar__selector-dropdown li:hover {
    background: rgba(253, 88, 16, 0.1);
}

.ar-searchbar__selector-dropdown li.selected {
    color: #fff;
    background-color: var(--norm_red-color)
}

.ar-searchbar__selector.active {
    z-index: 9
}

.ar-searchbar__selector.active>div:first-of-type i {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform-origin: center;
    transform-origin: center
}

.ar-searchbar__selector.active>div:last-of-type {
    -webkit-transform: translateY(0%);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 1
}

.ar-searchbar__selector .selectorA {
    color: var(--colorText-63)
}

.ar-searchbar>i {
    font-size: 1.625rem
}

/* ==================== */
/* BORDER UTILITIES */
/* ==================== */

.ar-1px-t,.ar-1px-b,.ar-1px-tb,.ar-1px-rb,.ar-1px-l,.ar-1px-r {
    position: relative
}

.ar-1px-t:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: .01333rem;
    border-top: .01333rem solid #e6e8e8;
    color: #e6e8e8;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5)
}

.ar-1px-b:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: .01333rem;
    border-bottom: .01333rem solid var(--Dividing-line_color);
    color: #e6e8e8;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5)
}

.ar-1px-l:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: .01333rem;
    bottom: 0;
    border-left: .01333rem solid #e6e8e8;
    color: #e6e8e8;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5)
}

.ar-1px-r:after {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    width: .01333rem;
    bottom: 0;
    border-right: .01333rem solid #e6e8e8;
    color: #e6e8e8;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5)
}

.ar-1px-rb:before {
    content: " ";
    position: absolute;
    right: 0;
    top: 0;
    width: .01333rem;
    bottom: 0;
    border-right: .01333rem solid #e6e8e8;
    color: #e6e8e8;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5)
}

.ar-1px-rb:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: .01333rem;
    border-bottom: .01333rem solid #e6e8e8;
    color: #e6e8e8;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5)
}

.ar-1px-tb:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: .01333rem;
    border-top: .01333rem solid #e6e8e8;
    color: #e6e8e8;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5)
}

.ar-1px-tb:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: .01333rem;
    border-bottom: .01333rem solid #e6e8e8;
    color: #e6e8e8;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5)
}

@media screen and (max-width: 500px) {
    .ar {
        max-width:none
    }
}

textarea {
    resize: none
}

.content {
    padding: 0 .32rem;
    background: var(--bg_color_L1)!important
}

/* ==================== */
/* ADDITIONAL FONT FACES */
/* ==================== */

@font-face {
    font-family: bahnschrift;
    font-weight: 500;
    src: url(/assets/woff2/bahnschrift-610d57ac.woff2)
}

@font-face {
    font-family: digitalDreamFat;
    src: url(/assets/ttf/digitalDreamFat-7e51cfaf.ttf) format("truetype")
}

* {
    box-sizing: border-box
}

#app {
    background: var(--bg_color_L1)
}

.flex-center {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.popup {
    position: fixed;
    max-height: 100%
}

.popup-center {
    top: 50%;
    left: 0;
    right: 0;
    width: -webkit-fit-content;
    width: fit-content;
    margin: 0 auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.35);
    animation: fadeIn 0.2s ease-out;
}

/* ==================== */
/* IOS DIALOG STYLES WITH ANIMATIONS */
/* ==================== */

.iosDialog {
    padding: .53333rem .32rem
}

.iosDialog .title {
    color: var(--text_color_L1, #1E2637);
    font-size: .48rem;
    font-weight: 600;
    margin-bottom: .53333rem
}

.iosDialog .websit_info {
    padding: .24rem .37333rem;
    border-radius: .13333rem;
    background: var(--bg_color_L3, #F6F6F6);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: .53333rem;
    transition: all 0.3s ease;
}

.iosDialog .websit_info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.iosDialog .websit_info img {
    border-radius: .28125rem;
    width: 1.44rem;
    height: 1.44rem;
    margin-right: .32rem;
    box-shadow: 0 .02667rem .05333rem #b0baca80
}

.iosDialog .websit_info .link div:nth-child(1) {
    color: var(--text_color_L1);
    font-size: .42667rem;
    font-weight: 500;
    margin-bottom: .05333rem
}

.iosDialog .websit_info .link div:nth-child(2) {
    color: var(--text_color_L2);
    font-size: .37333rem;
    font-weight: 500
}

.iosDialog .text {
    font-size: .42667rem;
    color: var(--text_color_L2);
    margin-bottom: .48rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.iosDialog .text svg {
    width: .42667rem;
    margin-left: .21333rem
}

.iosDialog .text img {
    width: .56rem;
    height: .56rem;
    margin: 0 .24rem
}

.iosDialog .text span {
    margin-left: .21333rem;
    border-radius: .05333rem;
    padding: 0 .16rem;
    color: var(--text_color_L1);
    background: var(--bg_color_L3);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.van-floating-bubble {
    background: transparent!important;
    overflow: inherit
}

.fail_message_toast {
    width: 5.33333rem
}

/* ==================== */
/* SPACING UTILITY CLASSES */
/* ==================== */

.mt0 { margin-top: 0!important }
.pt0 { padding-top: 0!important }
.mb0 { margin-bottom: 0!important }
.pb0 { padding-bottom: 0!important }
.ml0 { margin-left: 0!important }
.pl0 { padding-left: 0!important }
.mr0 { margin-right: 0!important }
.pr0 { padding-right: 0!important }
.fz0 { font-size: 0!important }

.mt2 { margin-top: .05333rem!important }
.pt2 { padding-top: .05333rem!important }
.mb2 { margin-bottom: .05333rem!important }
.pb2 { padding-bottom: .05333rem!important }
.ml2 { margin-left: .05333rem!important }
.pl2 { padding-left: .05333rem!important }
.mr2 { margin-right: .05333rem!important }
.pr2 { padding-right: .05333rem!important }
.fz2 { font-size: .05333rem!important }

.mt4 { margin-top: .10667rem!important }
.pt4 { padding-top: .10667rem!important }
.mb4 { margin-bottom: .10667rem!important }
.pb4 { padding-bottom: .10667rem!important }
.ml4 { margin-left: .10667rem!important }
.pl4 { padding-left: .10667rem!important }
.mr4 { margin-right: .10667rem!important }
.pr4 { padding-right: .10667rem!important }
.fz4 { font-size: .10667rem!important }

.mt5 { margin-top: .13333rem!important }
.pt5 { padding-top: .13333rem!important }
.mb5 { margin-bottom: .13333rem!important }
.pb5 { padding-bottom: .13333rem!important }
.ml5 { margin-left: .13333rem!important }
.pl5 { padding-left: .13333rem!important }
.mr5 { margin-right: .13333rem!important }
.pr5 { padding-right: .13333rem!important }
.fz5 { font-size: .13333rem!important }

.mt6 { margin-top: .16rem!important }
.pt6 { padding-top: .16rem!important }
.mb6 { margin-bottom: .16rem!important }
.pb6 { padding-bottom: .16rem!important }
.ml6 { margin-left: .16rem!important }
.pl6 { padding-left: .16rem!important }
.mr6 { margin-right: .16rem!important }
.pr6 { padding-right: .16rem!important }
.fz6 { font-size: .16rem!important }

.mt8 { margin-top: .21333rem!important }
.pt8 { padding-top: .21333rem!important }
.mb8 { margin-bottom: .21333rem!important }
.pb8 { padding-bottom: .21333rem!important }
.ml8 { margin-left: .21333rem!important }
.pl8 { padding-left: .21333rem!important }
.mr8 { margin-right: .21333rem!important }
.pr8 { padding-right: .21333rem!important }
.fz8 { font-size: .21333rem!important }

.mt10 { margin-top: .26667rem!important }
.pt10 { padding-top: .26667rem!important }
.mb10 { margin-bottom: .26667rem!important }
.pb10 { padding-bottom: .26667rem!important }
.ml10 { margin-left: .26667rem!important }
.pl10 { padding-left: .26667rem!important }
.mr10 { margin-right: .26667rem!important }
.pr10 { padding-right: .26667rem!important }
.fz10 { font-size: .26667rem!important }

.mt12 { margin-top: .32rem!important }
.pt12 { padding-top: .32rem!important }
.mb12 { margin-bottom: .32rem!important }
.pb12 { padding-bottom: .32rem!important }
.ml12 { margin-left: .32rem!important }
.pl12 { padding-left: .32rem!important }
.mr12 { margin-right: .32rem!important }
.pr12 { padding-right: .32rem!important }
.fz12 { font-size: .32rem!important }

.mt14 { margin-top: .37333rem!important }
.pt14 { padding-top: .37333rem!important }
.mb14 { margin-bottom: .37333rem!important }
.pb14 { padding-bottom: .37333rem!important }
.ml14 { margin-left: .37333rem!important }
.pl14 { padding-left: .37333rem!important }
.mr14 { margin-right: .37333rem!important }
.pr14 { padding-right: .37333rem!important }
.fz14 { font-size: .37333rem!important }

.mt15 { margin-top: .4rem!important }
.pt15 { padding-top: .4rem!important }
.mb15 { margin-bottom: .4rem!important }
.pb15 { padding-bottom: .4rem!important }
.ml15 { margin-left: .4rem!important }
.pl15 { padding-left: .4rem!important }
.mr15 { margin-right: .4rem!important }
.pr15 { padding-right: .4rem!important }
.fz15 { font-size: .4rem!important }

.mt16 { margin-top: .42667rem!important }
.pt16 { padding-top: .42667rem!important }
.mb16 { margin-bottom: .42667rem!important }
.pb16 { padding-bottom: .42667rem!important }
.ml16 { margin-left: .42667rem!important }
.pl16 { padding-left: .42667rem!important }
.mr16 { margin-right: .42667rem!important }
.pr16 { padding-right: .42667rem!important }
.fz16 { font-size: .42667rem!important }

.mt18 { margin-top: .48rem!important }
.pt18 { padding-top: .48rem!important }
.mb18 { margin-bottom: .48rem!important }
.pb18 { padding-bottom: .48rem!important }
.ml18 { margin-left: .48rem!important }
.pl18 { padding-left: .48rem!important }
.mr18 { margin-right: .48rem!important }
.pr18 { padding-right: .48rem!important }
.fz18 { font-size: .48rem!important }

.mt20 { margin-top: .53333rem!important }
.pt20 { padding-top: .53333rem!important }
.mb20 { margin-bottom: .53333rem!important }
.pb20 { padding-bottom: .53333rem!important }
.ml20 { margin-left: .53333rem!important }
.pl20 { padding-left: .53333rem!important }
.mr20 { margin-right: .53333rem!important }
.pr20 { padding-right: .53333rem!important }
.fz20 { font-size: .53333rem!important }

.mt24 { margin-top: .64rem!important }
.pt24 { padding-top: .64rem!important }
.mb24 { margin-bottom: .64rem!important }
.pb24 { padding-bottom: .64rem!important }
.ml24 { margin-left: .64rem!important }
.pl24 { padding-left: .64rem!important }
.mr24 { margin-right: .64rem!important }
.pr24 { padding-right: .64rem!important }
.fz24 { font-size: .64rem!important }

.mt25 { margin-top: .66667rem!important }
.pt25 { padding-top: .66667rem!important }
.mb25 { margin-bottom: .66667rem!important }
.pb25 { padding-bottom: .66667rem!important }
.ml25 { margin-left: .66667rem!important }
.pl25 { padding-left: .66667rem!important }
.mr25 { margin-right: .66667rem!important }
.pr25 { padding-right: .66667rem!important }
.fz25 { font-size: .66667rem!important }

.mt30 { margin-top: .8rem!important }
.pt30 { padding-top: .8rem!important }
.mb30 { margin-bottom: .8rem!important }
.pb30 { padding-bottom: .8rem!important }
.ml30 { margin-left: .8rem!important }
.pl30 { padding-left: .8rem!important }
.mr30 { margin-right: .8rem!important }
.pr30 { padding-right: .8rem!important }
.fz30 { font-size: .8rem!important }

.mt32 { margin-top: .85333rem!important }
.pt32 { padding-top: .85333rem!important }
.mb32 { margin-bottom: .85333rem!important }
.pb32 { padding-bottom: .85333rem!important }
.ml32 { margin-left: .85333rem!important }
.pl32 { padding-left: .85333rem!important }
.mr32 { margin-right: .85333rem!important }
.pr32 { padding-right: .85333rem!important }
.fz32 { font-size: .85333rem!important }

.mt35 { margin-top: .93333rem!important }
.pt35 { padding-top: .93333rem!important }
.mb35 { margin-bottom: .93333rem!important }
.pb35 { padding-bottom: .93333rem!important }
.ml35 { margin-left: .93333rem!important }
.pl35 { padding-left: .93333rem!important }
.mr35 { margin-right: .93333rem!important }
.pr35 { padding-right: .93333rem!important }
.fz35 { font-size: .93333rem!important }

.mt36 { margin-top: .96rem!important }
.pt36 { padding-top: .96rem!important }
.mb36 { margin-bottom: .96rem!important }
.pb36 { padding-bottom: .96rem!important }
.ml36 { margin-left: .96rem!important }
.pl36 { padding-left: .96rem!important }
.mr36 { margin-right: .96rem!important }
.pr36 { padding-right: .96rem!important }
.fz36 { font-size: .96rem!important }

.mt40 { margin-top: 1.06667rem!important }
.pt40 { padding-top: 1.06667rem!important }
.mb40 { margin-bottom: 1.06667rem!important }
.pb40 { padding-bottom: 1.06667rem!important }
.ml40 { margin-left: 1.06667rem!important }
.pl40 { padding-left: 1.06667rem!important }
.mr40 { margin-right: 1.06667rem!important }
.pr40 { padding-right: 1.06667rem!important }
.fz40 { font-size: 1.06667rem!important }

.mt45 { margin-top: 1.2rem!important }
.pt45 { padding-top: 1.2rem!important }
.mb45 { margin-bottom: 1.2rem!important }
.pb45 { padding-bottom: 1.2rem!important }
.ml45 { margin-left: 1.2rem!important }
.pl45 { padding-left: 1.2rem!important }
.mr45 { margin-right: 1.2rem!important }
.pr45 { padding-right: 1.2rem!important }
.fz45 { font-size: 1.2rem!important }

.mt50 { margin-top: 1.33333rem!important }
.pt50 { padding-top: 1.33333rem!important }
.mb50 { margin-bottom: 1.33333rem!important }
.pb50 { padding-bottom: 1.33333rem!important }
.ml50 { margin-left: 1.33333rem!important }
.pl50 { padding-left: 1.33333rem!important }
.mr50 { margin-right: 1.33333rem!important }
.pr50 { padding-right: 1.33333rem!important }
.fz50 { font-size: 1.33333rem!important }

.mt56 { margin-top: 1.49333rem!important }
.pt56 { padding-top: 1.49333rem!important }
.mb56 { margin-bottom: 1.49333rem!important }
.pb56 { padding-bottom: 1.49333rem!important }
.ml56 { margin-left: 1.49333rem!important }
.pl56 { padding-left: 1.49333rem!important }
.mr56 { margin-right: 1.49333rem!important }
.pr56 { padding-right: 1.49333rem!important }
.fz56 { font-size: 1.49333rem!important }

.mt60 { margin-top: 1.6rem!important }
.pt60 { padding-top: 1.6rem!important }
.mb60 { margin-bottom: 1.6rem!important }
.pb60 { padding-bottom: 1.6rem!important }
.ml60 { margin-left: 1.6rem!important }
.pl60 { padding-left: 1.6rem!important }
.mr60 { margin-right: 1.6rem!important }
.pr60 { padding-right: 1.6rem!important }
.fz60 { font-size: 1.6rem!important }

.mt65 { margin-top: 1.73333rem!important }
.pt65 { padding-top: 1.73333rem!important }
.mb65 { margin-bottom: 1.73333rem!important }
.pb65 { padding-bottom: 1.73333rem!important }
.ml65 { margin-left: 1.73333rem!important }
.pl65 { padding-left: 1.73333rem!important }
.mr65 { margin-right: 1.73333rem!important }
.pr65 { padding-right: 1.73333rem!important }
.fz65 { font-size: 1.73333rem!important }

.mt66 { margin-top: 1.76rem!important }
.pt66 { padding-top: 1.76rem!important }
.mb66 { margin-bottom: 1.76rem!important }
.pb66 { padding-bottom: 1.76rem!important }
.ml66 { margin-left: 1.76rem!important }
.pl66 { padding-left: 1.76rem!important }
.mr66 { margin-right: 1.76rem!important }
.pr66 { padding-right: 1.76rem!important }
.fz66 { font-size: 1.76rem!important }

.mt75 { margin-top: 2rem!important }
.pt75 { padding-top: 2rem!important }
.mb75 { margin-bottom: 2rem!important }
.pb75 { padding-bottom: 2rem!important }
.ml75 { margin-left: 2rem!important }
.pl75 { padding-left: 2rem!important }
.mr75 { margin-right: 2rem!important }
.pr75 { padding-right: 2rem!important }
.fz75 { font-size: 2rem!important }

.mt80 { margin-top: 2.13333rem!important }
.pt80 { padding-top: 2.13333rem!important }
.mb80 { margin-bottom: 2.13333rem!important }
.pb80 { padding-bottom: 2.13333rem!important }
.ml80 { margin-left: 2.13333rem!important }
.pl80 { padding-left: 2.13333rem!important }
.mr80 { margin-right: 2.13333rem!important }
.pr80 { padding-right: 2.13333rem!important }
.fz80 { font-size: 2.13333rem!important }

.mt85 { margin-top: 2.26667rem!important }
.pt85 { padding-top: 2.26667rem!important }
.mb85 { margin-bottom: 2.26667rem!important }
.pb85 { padding-bottom: 2.26667rem!important }
.ml85 { margin-left: 2.26667rem!important }
.pl85 { padding-left: 2.26667rem!important }
.mr85 { margin-right: 2.26667rem!important }
.pr85 { padding-right: 2.26667rem!important }
.fz85 { font-size: 2.26667rem!important }

.mt90 { margin-top: 2.4rem!important }
.pt90 { padding-top: 2.4rem!important }
.mb90 { margin-bottom: 2.4rem!important }
.pb90 { padding-bottom: 2.4rem!important }
.ml90 { margin-left: 2.4rem!important }
.pl90 { padding-left: 2.4rem!important }
.mr90 { margin-right: 2.4rem!important }
.pr90 { padding-right: 2.4rem!important }
.fz90 { font-size: 2.4rem!important }

.mt95 { margin-top: 2.53333rem!important }
.pt95 { padding-top: 2.53333rem!important }
.mb95 { margin-bottom: 2.53333rem!important }
.pb95 { padding-bottom: 2.53333rem!important }
.ml95 { margin-left: 2.53333rem!important }
.pl95 { padding-left: 2.53333rem!important }
.mr95 { margin-right: 2.53333rem!important }
.pr95 { padding-right: 2.53333rem!important }
.fz95 { font-size: 2.53333rem!important }

.mt100 { margin-top: 2.66667rem!important }
.pt100 { padding-top: 2.66667rem!important }
.mb100 { margin-bottom: 2.66667rem!important }
.pb100 { padding-bottom: 2.66667rem!important }
.ml100 { margin-left: 2.66667rem!important }
.pl100 { padding-left: 2.66667rem!important }
.mr100 { margin-right: 2.66667rem!important }
.pr100 { padding-right: 2.66667rem!important }
.fz100 { font-size: 2.66667rem!important }

/* ==================== */
/* FLOAT AND CLEARFIX UTILITIES */
/* ==================== */

.fl { float: left }
.fr { float: right }
.fw500 { font-weight: 500 }
.fw600 { font-weight: 600 }

.clearfix { zoom:1 }
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

/* ==================== */
/* X-PAGE UTILITY CLASSES */
/* ==================== */

.x-page {
    padding: .4rem
}

.x-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex
}

.x-row-middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.x-row-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center
}

.x-row-middle-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.x-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
}

.x-row-around {
    -webkit-justify-content: space-around;
    justify-content: space-around
}

.x-row-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.x-flew-end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end
}

.x-flex-warp {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

.x-flex {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1
}

.x-pa {
    position: absolute
}

.x-pr {
    position: relative
}

.x-pf {
    position: fixed
}

.x-tc {
    text-align: center
}

.x-tr {
    text-align: right
}

.x-tl {
    text-align: left
}

.x-foot {
    position: fixed;
    max-width: 10rem;
    width: 100%;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%)
}

/* ==================== */
/* BUTTON STYLES WITH ANIMATIONS */
/* ==================== */

.x-btn {
    color: var(--text_color_L2);
    height: 1.06667rem;
    font-weight: 600;
    background: var(--button_dis_color);
    transition: all 0.3s ease;
}

.x-btn:active {
    background: var(--main_gradient-color);
    color: var(--text_color_L4);
    transform: scale(0.96);
}

.x-btn-plain {
    height: 1.06667rem;
    border-color: #e6e7eb;
    background: #F5F6FA;
    color: var(--text_color_L2)!important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.x-btn-plain:active {
    background: none;
    transform: scale(0.96);
}

.x-btn-gray {
    height: 1.06667rem;
    font-weight: 600;
    background-color: var(--gray-1);
    border-color: var(--gray-1);
    color: var(--white);
    transition: all 0.3s ease;
}

.x-btn-gray:active {
    transform: scale(0.96);
}

.x-input {
    background-color: var(--white);
    color: var(--f666);
    height: 1.17333rem;
    transition: all 0.3s ease;
}

.x-input:focus {
    transform: scale(1.02);
}

.x-input::-webkit-input-placeholder {
    color: var(--fgray-2)
}

.x-input::placeholder {
    color: var(--fgray-2)
}

/* ==================== */
/* HAND/RIBBLE ANIMATION */
/* ==================== */

.x-hand {
    position: absolute;
    bottom: -.93333rem;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%);
    z-index: 10001
}

.x-hand .ripple {
    width: .53333rem;
    height: .53333rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 #ffffffb3;
    -webkit-animation: ripple 1.5s infinite;
    animation: ripple 1.5s infinite
}

.x-hand .ripple:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #ffffff4d;
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-animation: ripple-expand 1.5s infinite;
    animation: ripple-expand 1.5s infinite
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@-webkit-keyframes ripple-expand {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .5
    }
    to {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0
    }
}

@keyframes ripple-expand {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: .5
    }
    to {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0
    }
}

.x-hand .img {
    display: block;
    margin: -.26667rem
}

/* ==================== */
/* APP SPECIFIC OVERRIDES */
/* ==================== */

#app .profit__list-item__info .price {
    color: var(--text_color_L1);
    font-size: .4rem
}

#app .profit__list-item__info .name {
    color: var(--text_color_L1)
}

/* ==================== */
/* NOTICE BAR STYLES WITH ANIMATIONS */
/* ==================== */

#app .noticeBar__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: .98667rem;
    padding-inline:.26667rem;
    color: var(--text_color_L2);
    font-size: .32rem;
    border-radius: .21333rem;
    background: var(--bg_color_L2);
    transition: all 0.3s ease;
}

#app .noticeBar__container:hover {
    filter: brightness(0.98);
}

#app .noticeBar__container .notice_svg {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/assets/svg/noticeBarSpeaker-bbc4b014.svg);
    background-size: cover;
    width: 1.28rem;
    height: .64rem
}

#app .noticeBar__container-body {
    width: 9.33333rem;
    overflow: hidden;
    position: relative;
    height: .8rem;
    line-height: .98667rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

#app .noticeBar__container-body-text {
    width: 100%;
    height: -webkit-fit-content;
    height: fit-content;
    max-height: .98667rem;
    line-height: .49333rem;
    -webkit-animation: marquee 7s linear infinite;
    animation: marquee 7s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    transition: all 0.3s ease;
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    10% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    10% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

#app .noticeBar__container>svg {
    width: .42667rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    height: auto;
    margin-right: .22667rem
}

#app .noticeBar__container button {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    gap: .06667rem;
    width: 2rem;
    height: .66667rem;
    margin-left: auto;
    color: var(--text_color_L4);
    border: none;
    border-radius: .53333rem;
    background: var(--main-color);
    transition: all 0.3s ease;
}

#app .noticeBar__container button:active {
    transform: scale(0.95);
}

#app .noticeBar__container button svg {
    width: .32rem;
    height: auto
}

/* ==================== */
/* HOME PAGE STYLES WITH ANIMATIONS */
/* ==================== */

#app #home .swiper_box {
    padding: 0;
    margin-bottom: .26667rem;
    animation: fadeIn 0.5s ease-out;
}

#app #home .noticeBar__container {
    border-radius: 1.04rem
}

#app #home .tabs {
    background: var(--bg_color_L2);
    border-radius: .16rem
}

#app #home .home_down {
    color: var(--main-color)
}

#app .userInfo__container-setting-center {
    background: var(--bg_color_L2)
}

#app .lotterySlotItem {
    background: var(--main_gradient-color);
    transition: all 0.3s ease;
}

#app .lotterySlotItem:hover {
    transform: translateY(-2px);
}

#app .lotterySlotItem span,
#app .lotterySlotItem h4 {
    color: #fff
}

#app .firstSaveDialog .header {
    background: var(--main-color);
    color: var(--text_color_L4)
}

#app .progress {
    background: #d8d8d8!important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#app .progress:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

#app .gameList .box svg {
    color: #d9d9d933;
    transition: all 0.3s ease;
}

#app .gameList .box:hover svg {
    transform: scale(1.1);
}

#app .championship .tabs {
    background: var(--main-color)
}

#app .championship .tabs>div {
    color: #fff!important;
    transition: all 0.3s ease;
}

#app .championship .tabs>div:active {
    transform: scale(0.95);
}

#app .championship .tabs>div.active:after {
    border-bottom-color: #fff
}

#app .TeamReport__C-body .header-container {
    background: var(--main-color)
}

#app .TeamReport__C-body .header-container>div {
    color: #fff
}

#app .TeamReport__C-body .header-container>div>div:last-of-type {
    color: #fff
}

#app .ruleHead {
    position: relative
}

#app .ruleHead svg {
    position: absolute;
    top: -.02667rem;
    left: 0;
    right: 0;
    margin-inline:auto;
    width: 6.58667rem;
    height: .8rem;
    z-index: 1;
    color: var(--main-color);
    transition: all 0.3s ease;
    animation: glowPulse 2s ease-in-out infinite;
}

#app .ruleHead .promotion-title,
#app .promotion-grade-th {
    color: var(--text_color_L4)
}

#app .wallet-container .imgD img {
    position: relative;
    width: calc(100% + .32rem);
    transition: all 0.3s ease;
}

#app .wallet-container .imgD img:hover {
    transform: scale(1.02);
}

#app .GameList__C {
    background: var(--bg_color_L2)
}

#app .empty__container svg {
    opacity: .2;
    transition: all 0.3s ease;
    animation: floatSlow 3s ease-in-out infinite;
}

#app .gameItem1 .win-odds {
    background: #F3E39D
}

/* ==================== */
/* VANILLA CSS OVERRIDES */
/* ==================== */

body .van-hairline--top-bottom:after,
body .van-hairline-unset--top-bottom:after {
    border: none!important
}

/* ==================== */
/* CSS VARIABLES */
/* ==================== */

:root {
    --main-color: #FD5810;
    --main_gradient-color: linear-gradient(90deg, #FF962C 0%, #FD5810 100%);
    --main_gradient-color2: linear-gradient(90deg, #FF962C 0%, #FD5810 100%);
    --light-main_gradient-color: var(--main_gradient-color);
    --text_white: #fff;
    --light-bg_white: #fff;
    --light-main-color: var(--main-color);
    --norm_red-color: #FB5B5B;
    --norm_green-color: #18B660;
    --norm_secondary-color: #FEAA57;
    --norm_Purple-color: #C86EFF;
    --norm_bule-color: #6EA8F4;
    --Secondary_red_color: #FD565C;
    --Secondary_green_color: #40AD72;
    --Secondary_Color1: #FFEBEC;
    --Secondary_Color2: #DAFFEB;
    --button_dis_color: linear-gradient(90deg, #CCCEDC 15.38%, #CDCFDD 98.73%);
    --Secondary_moto_Color9: #E93a3a;
    --Secondary_moto_Color8: #FFDBDB;
    --text_color_L1: #1E2637;
    --text_color_L2: #768096;
    --text_color_L3: #B6BCC8;
    --text_color_L4: #FFF;
    --norm_purple1_color: #7B8EFF;
    --norm_Orange_color: #FBB84D;
    --norm_green_color: #3AC967;
    --norm_blue_color: #54B0FD;
    --norm_purple2_color: #C36FFF;
    --norm_brown_color: #B7805F;
    --norm_blue2_color: #2AD4C5;
    --norm_blue3_color: #7FADD1;
    --norm_Orange2_color: #FD8654;
    --bg_color_L1: #F7F8FF;
    --bg_color_L2: #FFF;
    --bg_color_L3: #F6F6F6;
    --Dividing-line_color: #E1E1E1;
    --sheet_nva_color: var(--main-color);
    --sheet_detail_bg_color: #F6F6F6;
    --pop_bg-color: linear-gradient(180deg, #FF6C6B 0%, #FF4A4A 68.59%);
    --icon1: rgba(7, 221, 209,.6);
    --icon2: rgba(7, 221, 209,.3);
    --tab1: #FB5755;
    --tab2: #FF745B;
    --iconSecondary: rgba(24, 182, 96,.3);
    --van-sidebar-text-color: var(--main-color);
    --van-picker-background: var(--bg_color_L2);
    --van-picker-option-text-color: var(--text_color_L2);
    --van-picker-confirm-action-color: var(--main-color);
    --van-checkbox-checked-icon-color: var(--main-color);
    --van-checkbox-label-color: var(--text_color_L2);
    --van-field-input-text-color: var(--text_color_L1);
    --van-radio-checked-icon-color: var(--main-color);
    --van-grid-item-content-background: var(--bg_color_L1);
    --van-text-color: var(--text_color_L1);
    --van-dialog-background: var(--bg_color_L2);
    --van-circle-color: var(--main-color);
    --van-circle-layer-color: var(--bg_color_L3);
    --van-calendar-range-edge-background: var(--main-color);
    --van-button-primary-background: var(--main-color);
    --van-button-primary-border-color: var(--main-color)
}

/* ==================== */
/* VANILLA TOAST STYLES */
/* ==================== */

.van-toast[data-v-6ab3f23e],
.van-toast[data-v-5eb72be7],
.van-toast[data-v-9cd12fb2],
.van-toast[data-v-7dee72bf],
.van-toast[data-v-35a27ba7],
.van-toast[data-v-3d4fafbb],
.van-toast[data-v-12a80a3e],
.van-toast[data-v-647954c7],
.van-toast[data-v-fa757a88] {
    word-break: break-word!important;
    animation: fadeInScale 0.2s ease-out !important;
}

/* ==================== */
/* BUTTON DEFAULT STYLES */
/* ==================== */

.cg-default.van-button[data-v-6ab3f23e],
.cg-default.van-button[data-v-5eb72be7],
.cg-default.van-button[data-v-9cd12fb2],
.cg-default.van-button[data-v-7dee72bf],
.cg-default.van-button[data-v-35a27ba7],
.cg-default.van-button[data-v-3d4fafbb],
.cg-default.van-button[data-v-12a80a3e],
.cg-default.van-button[data-v-647954c7],
.cg-default.van-button[data-v-fa757a88] {
    font-weight: 700;
    font-size: .4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cg-default.van-button .van-button__icon[data-v-6ab3f23e],
.cg-default.van-button .van-button__icon[data-v-5eb72be7],
.cg-default.van-button .van-button__icon[data-v-9cd12fb2],
.cg-default.van-button .van-button__icon[data-v-7dee72bf],
.cg-default.van-button .van-button__icon[data-v-35a27ba7],
.cg-default.van-button .van-button__icon[data-v-3d4fafbb],
.cg-default.van-button .van-button__icon[data-v-12a80a3e],
.cg-default.van-button .van-button__icon[data-v-647954c7],
.cg-default.van-button .van-button__icon[data-v-fa757a88] {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.cg-default.van-button .van-button__icon>img[data-v-6ab3f23e],
.cg-default.van-button .van-button__icon>img[data-v-5eb72be7],
.cg-default.van-button .van-button__icon>img[data-v-9cd12fb2],
.cg-default.van-button .van-button__icon>img[data-v-7dee72bf],
.cg-default.van-button .van-button__icon>img[data-v-35a27ba7],
.cg-default.van-button .van-button__icon>img[data-v-3d4fafbb],
.cg-default.van-button .van-button__icon>img[data-v-12a80a3e],
.cg-default.van-button .van-button__icon>img[data-v-647954c7],
.cg-default.van-button .van-button__icon>img[data-v-fa757a88] {
    height: 80%
}

/* ==================== */
/* LANDSCAPE ORIENTATION */
/* ==================== */

@media (orientation: landscape) {
    html.landscape[data-v-6ab3f23e],
    html.landscape[data-v-5eb72be7],
    html.landscape[data-v-9cd12fb2],
    html.landscape[data-v-7dee72bf],
    html.landscape[data-v-35a27ba7],
    html.landscape[data-v-3d4fafbb],
    html.landscape[data-v-12a80a3e],
    html.landscape[data-v-647954c7],
    html.landscape[data-v-fa757a88] {
        font-size:9vh!important
    }
}

/* ==================== */
/* APP FORCED DOWNLOAD DIALOG */
/* ==================== */

.isAppForcedDownloadEnabled-dialog[data-v-6ab3f23e],
.isAppForcedDownloadEnabled-dialog[data-v-5eb72be7],
.isAppForcedDownloadEnabled-dialog[data-v-9cd12fb2],
.isAppForcedDownloadEnabled-dialog[data-v-7dee72bf],
.isAppForcedDownloadEnabled-dialog[data-v-35a27ba7],
.isAppForcedDownloadEnabled-dialog[data-v-3d4fafbb],
.isAppForcedDownloadEnabled-dialog[data-v-12a80a3e],
.isAppForcedDownloadEnabled-dialog[data-v-647954c7],
.isAppForcedDownloadEnabled-dialog[data-v-fa757a88] {
    z-index: 9999999!important
}

/* ==================== */
/* NAVBAR STYLES WITH ANIMATIONS */
/* ==================== */

.navbar[data-v-12a80a3e] {
    height: 1.22667rem;
    z-index: 100;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    flex: none
}

.navbar.activity .navbar-fixed[data-v-12a80a3e] {
    background: var(--main_gradient-color)
}

.navbar.activity .navbar-fixed .navbar__content-left .van-icon[data-v-12a80a3e] {
    color: var(--text_color_L1)
}

.navbar.lottery .navbar-fixed[data-v-12a80a3e] {
    background: var(--bg_color_L2)
}

.navbar.lottery .navbar-fixed .navbar__content-left .van-icon[data-v-12a80a3e],
.navbar.lottery .navbar-fixed .navbar__content-center[data-v-12a80a3e] {
    color: var(--text_color_L1)
}

.navbar.main .navbar-fixed[data-v-12a80a3e] {
    background: var(--light-main_gradient-color, var(--bg_color_L2))
}

.navbar.main .navbar-fixed .navbar__content-left .van-icon[data-v-12a80a3e],
.navbar.main .navbar-fixed .navbar__content-center[data-v-12a80a3e] {
    color: #fff
}

.navbar-fixed[data-v-12a80a3e] {
    position: fixed;
    top: 0;
    left: 50%;
    width: 10rem;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    -webkit-user-select: none;
    user-select: none;
    z-index: 101;
    background: var(--bg_color_L2);
    color: var(--text_color_L1);
    transition: all 0.3s ease;
}

.navbar__content[data-v-12a80a3e] {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 1.22667rem;
    color: var(--text_color_L1)
}

.navbar__content-left[data-v-12a80a3e] {
    position: absolute;
    left: .32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%;
    top: 0
}

.navbar__content-left .van-icon[data-v-12a80a3e] {
    color: var(--text_color_L1);
    font-size: .48rem;
    transition: all 0.2s ease;
}

.navbar__content-left .van-icon[data-v-12a80a3e]:active {
    transform: scale(0.9);
}

.navbar__content-center[data-v-12a80a3e] {
    font-size: .48rem;
    line-height: .48rem
}

.navbar__content-center .headLogo[data-v-12a80a3e] {
    width: 2.98667rem;
    height: 1.12rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

.navbar__content-right[data-v-12a80a3e] {
    position: absolute;
    right: .32rem
}

@media screen and (max-width: 500px) {
    .navbar-fixed[data-v-12a80a3e] {
        width:100%;
        left: 0;
        -webkit-transform: translateX(0);
        transform: translate(0)
    }
}

/* ==================== */
/* LOADING VIEW STYLES WITH ANIMATIONS */
/* ==================== */

.ar-loading-view[data-v-647954c7] {
    background-color: #0000004d;
    width: 100%;
    height: 100%;
    z-index: 999;
    left: 0;
    position: fixed;
    animation: fadeIn 0.2s ease-out;
}

.ar-loading-view .loading-animat[data-v-647954c7] {
    width: 4rem;
    height: 4rem
}

.ar-loading-view .loading-wrapper[data-v-647954c7] {
    pointer-events: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    position: absolute;
    width: 100%
}

.ar-loading-view .loading-wrapper img[data-v-647954c7] {
    width: 2.66667rem;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

.ar-loading-view .loading-wrapper .van-loading[data-v-647954c7] {
    z-index: 999
}

.ar-loading-view .skeleton-wrapper[data-v-647954c7] {
    padding: .26667rem .13333rem;
    animation: shimmer 1.5s infinite;
    background: linear-gradient(90deg, var(--bg_color_L3) 25%, var(--bg_color_L2) 50%, var(--bg_color_L3) 75%);
    background-size: 200% 100%;
}

.com__box[data-v-647954c7] {
    position: relative;
    width: 2.66667rem;
    height: 1.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    z-index: 1000;
    animation: pulseGlow 2s ease-in-out infinite;
}

.loading[data-v-647954c7] {
    width: 1.6rem;
    height: 1.6rem;
    position: relative;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: animationContainer-647954c7 1s ease infinite;
    animation: animationContainer-647954c7 1s ease infinite
}

.shape[data-v-647954c7] {
    width: .66667rem;
    height: .66667rem;
    border-radius: 50%;
    position: absolute
}

.shape-1[data-v-647954c7] {
    background-color: #0c67d7;
    left: 0;
    -webkit-animation: animationShape1-647954c7 .3s ease infinite alternate;
    animation: animationShape1-647954c7 .3s ease infinite alternate
}

html:lang(ar) .shape-1[data-v-647954c7] {
    right: 0;
    left: unset
}

.shape-2[data-v-647954c7] {
    background-color: #cd371c;
    right: 0;
    -webkit-animation: animationShape2-647954c7 .3s ease infinite .3s alternate;
    animation: animationShape2-647954c7 .3s ease infinite .3s alternate
}

html:lang(ar) .shape-2[data-v-647954c7] {
    right: unset;
    left: 0
}

.shape-3[data-v-647954c7] {
    background-color: #2c9d3f;
    bottom: 0;
    -webkit-animation: animationShape3-647954c7 .3s ease infinite .3s alternate;
    animation: animationShape3-647954c7 .3s ease infinite .3s alternate
}

.shape-4[data-v-647954c7] {
    background-color: #eca712;
    right: 0;
    bottom: 0;
    -webkit-animation: animationShape4-647954c7 .3s ease infinite alternate;
    animation: animationShape4-647954c7 .3s ease infinite alternate
}

@-webkit-keyframes animationContainer-647954c7 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes animationContainer-647954c7 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes animationShape1-647954c7 {
    0% {
        -webkit-transform: translate(.13333rem,.13333rem);
        transform: translate(.13333rem,.13333rem)
    }
    to {
        -webkit-transform: translate(-.08rem,-.08rem);
        transform: translate(-.08rem,-.08rem)
    }
}

@keyframes animationShape1-647954c7 {
    0% {
        -webkit-transform: translate(.13333rem,.13333rem);
        transform: translate(.13333rem,.13333rem)
    }
    to {
        -webkit-transform: translate(-.08rem,-.08rem);
        transform: translate(-.08rem,-.08rem)
    }
}

@-webkit-keyframes animationShape2-647954c7 {
    0% {
        -webkit-transform: translate(-.13333rem,.13333rem);
        transform: translate(-.13333rem,.13333rem)
    }
    to {
        -webkit-transform: translate(.08rem,-.08rem);
        transform: translate(.08rem,-.08rem)
    }
}

@keyframes animationShape2-647954c7 {
    0% {
        -webkit-transform: translate(-.13333rem,.13333rem);
        transform: translate(-.13333rem,.13333rem)
    }
    to {
        -webkit-transform: translate(.08rem,-.08rem);
        transform: translate(.08rem,-.08rem)
    }
}

@-webkit-keyframes animationShape3-647954c7 {
    0% {
        -webkit-transform: translate(.13333rem,-.13333rem);
        transform: translate(.13333rem,-.13333rem)
    }
    to {
        -webkit-transform: translate(-.08rem,.08rem);
        transform: translate(-.08rem,.08rem)
    }
}

@keyframes animationShape3-647954c7 {
    0% {
        -webkit-transform: translate(.13333rem,-.13333rem);
        transform: translate(.13333rem,-.13333rem)
    }
    to {
        -webkit-transform: translate(-.08rem,.08rem);
        transform: translate(-.08rem,.08rem)
    }
}

@-webkit-keyframes animationShape4-647954c7 {
    0% {
        -webkit-transform: translate(-.13333rem,-.13333rem);
        transform: translate(-.13333rem,-.13333rem)
    }
    to {
        -webkit-transform: translate(.08rem,.08rem);
        transform: translate(.08rem,.08rem)
    }
}

@keyframes animationShape4-647954c7 {
    0% {
        -webkit-transform: translate(-.13333rem,-.13333rem);
        transform: translate(-.13333rem,-.13333rem)
    }
    to {
        -webkit-transform: translate(.08rem,.08rem);
        transform: translate(.08rem,.08rem)
    }
}

/* ==================== */
/* FIREBASE NOTIFICATION STYLES */
/* ==================== */

.firebase-notify-with-img.van-notify {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding-left: .64rem;
    padding-right: 50%;
    background-color: #fff;
    color: #333;
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    justify-content: start;
    animation: slideInUp 0.3s ease-out;
}

.firebase-notify-with-img.van-notify:after {
    content: "";
    position: absolute;
    right: .16rem;
    top: .26667rem;
    width: 50%;
    bottom: .26667rem;
    aspect-ratio: 1/1;
    background-image: var(--notify-icon);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right
}

/* ==================== */
/* SVG ICON STYLES */
/* ==================== */

.svg-icon {
    width: 1em;
    height: 1em;
    fill: var(--svgHoticon);
    vertical-align: middle;
    transition: all 0.2s ease;
}

.svg-icon:hover {
    transform: scale(1.1);
}

/* ==================== */
/* AR SEARCHBAR SELECTOR */
/* ==================== */

.ar-searchbar__selector[data-v-fa757a88] {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    width: 4.53333rem;
    height: 1.06667rem!important
}

.ar-searchbar__selector div[data-v-fa757a88] {
    line-height: 1.06667rem
}

/* ==================== */
/* SCROLLBAR CUSTOMIZATION */
/* ==================== */

#app::-webkit-scrollbar {
    width: 4px;
    transition: all 0.3s ease;
}

#app::-webkit-scrollbar-track {
    background: var(--bg_color_L3);
    border-radius: 10px;
}

#app::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

#app::-webkit-scrollbar-thumb:hover {
    background: #FF962C;
}

/* ==================== */
/* ADDITIONAL UTILITY CLASSES */
/* ==================== */

.success-state {
    animation: bounce 0.5s ease-out;
}

.error-state {
    animation: shake 0.4s ease-out;
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.gradient-text {
    background: var(--main_gradient-color);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s linear infinite;
}

/* ==================== */
/* MEDIA QUERY FOR REDUCED MOTION */
/* ==================== */

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}