/* For Webkit browsers (Chrome, Safari) */
html {
    scroll-behavior: smooth;
}

a {
    cursor: pointer;
}

:root {
    --main-gradient: linear-gradient(90deg, #d752f0, #6a38f2);
    --main-gradient-rev: linear-gradient(-90deg, #d752f0, #6a38f2);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #ff73d9, #8f5fff);
    /* Gradient background */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d982ff, #735cff);
    /* Gradient thumb */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d982ff, #735cff);
    /* Darker gradient on hover */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #d982ff #8f5fff;
    /* Thumb color and track color */
}

.common-input {
    height: 55px;
}

/* Optional: Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.login-body {
    display: flex;
    flex-direction: row;
}

.account {
    width: 100%;
}

.account__left {
    flex: 1;
}

.account__right {
    flex: 1;
    padding: 100px;
}

/* INDEX */
.time-zone {
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.text {
    color: #333333;
    font-size: clamp(0.6875rem, 0.459rem + 0.475vw, 0.875rem);
    font-weight: 400;
}

.flag {
    width: 24px;
    height: 16px;
    margin-left: 10px;
}

.claim-now {
    font-size: 20px;
    border-radius: 25px;
}

.nav-menu--mobile .nav-submenu__link {
    font-size: 14px;
}

.statistics {
    padding: 10px;
}

.popular-item {
    background: linear-gradient(to right,
            rgba(209, 81, 240, 1) 0%,
            rgba(107, 57, 242, 1) 100%);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.game-item img {
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    object-fit: cover;
}

.play-button {
    background-color: #8a2be2;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 5px;
}

.selling-product {
    top: 40%;
}

.slick-arrow {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: none;
}

.performance-content__item {
    position: relative;
}

.performance-content__number {
    position: absolute;
}

.performance-content__number h2 {
    color: #fff;
    font-size: 5vw;
    margin: 0;
}

.performance-content__item:nth-child(1) {
    background: #b4faff;
}

.performance-content__item:nth-child(1) .performance-content__text {
    color: #7ababe;
}

.performance-content__item:nth-child(2) .performance-content__text {
    color: #8e80c5;
}

.performance-content__item:nth-child(3) .performance-content__text {
    color: #8e80c5;
}

.performance-content__item:nth-child(4) .performance-content__text {
    color: #7ababe;
}

.performance-content__item:nth-child(1) .performance-content__number {
    left: 4%;
    top: 2%;
}

.performance-content__item:nth-child(2) .performance-content__number {
    right: 4%;
    top: 2%;
}

.performance-content__item:nth-child(3) .performance-content__number {
    left: 4%;
    bottom: 2%;
}

.performance-content__item:nth-child(4) .performance-content__number {
    right: 4%;
    bottom: 2%;
}

.wrap-live {
    background-color: #2600372e;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.donation-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ffffff;
}

.donation-item:last-child {
    border-bottom: none;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.name {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.amount {
    font-size: 16px;
    font-weight: 600;
    color: #6c5ce7;
}

.bet-wrap {
    width: 100%;
    padding: 10px;
}

.bet-header {
    display: grid;
    grid-template-columns: 20% auto auto auto auto;
    background: #292929;
    padding: 10px;
    margin-bottom: 5px;
}

.bet-header div {
    text-align: center;
    color: #ff59c7;
}

.bet-header div:first-child {
    text-align: left;
}

.bet-header div:last-child {
    text-align: right;
}

.bet-item {
    display: grid;
    grid-template-columns: 20% auto auto auto auto;
    background: linear-gradient(to right,
            #292929 0%,
            #292929 8%,
            #292929 31%,
            #292929 100%);
    margin-bottom: 10px;
    padding: 10px;
}

.bet-item img {
    max-height: 45px;
    margin-right: 10px;
}

.bet-item div {
    text-align: center;
    color: #fff;
    align-self: center;
}

.bet-item div:first-child {
    text-align: left;
    display: flex;
    align-items: center;
}

.bet-item div:last-child {
    text-align: right;
}

.seller-item {
    background-size: cover !important;
}

.seller-item.bg-one {
    background: url(../images/shapes/depo-bg.jpg) no-repeat;
}

.seller-item.bg-two {
    background: url(../images/shapes/withdrawal-bg.jpg) no-repeat;
}

.daily_wrap {
    /* background-color: #1c2532;
    */
    padding: 0;
}

.daily_wrap_img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: -10px;
    position: relative;
}

.daily_wrap_img img {
    width: 100%;
}

.daily_table_wrap {
    background: hsl(0deg 0% 100%);
    padding: 20px 10px 10px 10px;
    /* border-bottom-left-radius: 10px; */
    /* border-bottom-right-radius: 10px; */
}

.battle_card_title {
    font-size: 20px;
    max-height: 52px;
    max-width: 160px;
    line-height: 26px;
    font-weight: 700;
    margin-bottom: 17px;
    color: #fff;
}

.daily_wrap_img_inn {
    padding: 20px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.battle_card_timer {
    padding: 9px 15px;
    width: 160px;
    height: 51px;
    background: hsla(0, 0%, 100%, 0.18);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.battle_card_label {
    position: absolute;
    left: -1px;
    top: -2px;
    transform: translateY(-50%);
    font-weight: 800;
    font-size: 9px;
    line-height: 120%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000;
    opacity: 0.9;
    background: #fed700;
    border-radius: 8px 8px 8px 0;
    padding: 2px 6px;
    white-space: nowrap;
}

.battle_card_timer_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
}

.battle_card_block_value {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum"on, "lnum"on;
    color: #fff;
}

.battle_card_block_name {
    color: #ffffffb8;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
}

.battle_card_timer_dot {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum"on, "lnum"on;
    color: #fff;
    align-self: flex-start;
}

.battle_card_prize {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    background: #fed700;
    box-shadow: 0 6.88237px 13.1093px -6.88237px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-weight: 800;
    color: #000;
    height: 36px;
    width: fit-content;
}

.battle_card_prize_title {
    font-size: 9px;
    line-height: 120%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.9;
    width: 32px;
    margin-right: 6px;
    white-space: pre-line;
    flex-shrink: 0;
}

.battle_card_prize_amount {
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum"on, "lnum"on;
    font-weight: 800;
}

.daily_table_wrap table thead tr {
    color: #8b40f1;
    font-size: 11px;
    font-weight: 600;
}

.daily_table_wrap table img {
    width: 27px;
}

.table_user {
    display: inline-flex;
    align-items: center;
    grid-gap: 10px;
}

.table_user_content {
    display: flex;
    flex-direction: column;
}

.table_user_content span {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.02em;
    color: #8b40f1;
    font-weight: 500;
}

.table_user_content span.name {
    color: #000000;
}

.daily_table_wrap table tr th {
    padding: 5px;
}

.daily_table_wrap table tr {
    border-bottom: 1px solid #ff59c763;
}

.daily_view {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px 5px 0px;
    gap: 10px;
}

.daily_view a {
    font-weight: 600;
    font-size: 12px;
    /* min-width: 150px; */
    width: 100%;
}

.btn-more {
    background-color: #e9e9e9;
    color: #8b40f1;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    border: none;
}

.btn-more span {
    display: block;
    background-color: white;
    border-radius: inherit;
    color: #ad48f0;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 7px 20px;
}

.btn-challenge {
    background: var(--main-gradient);
    border-radius: 5px;
    padding: 5px 10px;
    color: #ffffff;
}

.arrow_slider_wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.arrow_slider {
    display: flex;
    grid-gap: 6px;
    /* margin: 10px 0; */
    justify-content: space-between;
}

.arrow_slider .slide-arrow {
    cursor: pointer;
    background: var(--main-gradient);
    padding: 6px 13px;
    border-radius: 50%;
    color: #ffffff;
}

.daily_icon {
    width: 25px;
    margin-right: 10px;
}

.login-button {
    position: relative;
    display: inline-block;
    padding: 1px;
    background: var(--main-gradient);
    border-radius: 25px;
    cursor: pointer;
}

.login-button span {
    display: block;
    padding: 12px 20px;
    background-color: white;
    border-radius: 23px;
    color: #ad48f0;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.login-button:hover span {
    background: transparent;
    color: white;
}

.member-page-title {
    color: #c2b7fa;
    font-size: 90px;
}

/* LOBBY */
.product-lobby .title {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to bottom, #ff00ff, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    padding-bottom: 20px;
}

.product-lobby .card {
    padding: 15px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    cursor: pointer;
}

.product-lobby .card:hover {
    transform: scale(1.05);
}

.product-lobby .card img {
    border-radius: 15px;
}

.product-lobby .card-body {
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 0;
    color: #000;
}

.product-lobby .game-preview__hover {
    background-color: rgba(27, 34, 51, 0.8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 1;
    padding: 19px 10px 13px;
    transition: opacity 0.1s ease-in-out;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    transform: translateZ(1px);
    border-radius: 8px;
}

.product-lobby .game-preview__btn-play {
    height: 65px;
    min-width: 65px;
    background-color: red;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.9);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lobby .game-preview__btn-play i {
    font-size: 20px;
}

.product-lobby .card:hover .game-preview__btn-play,
.product-lobby .card:hover .game-preview__hover {
    opacity: 1;
}

/* VIP */
.vip-top-banner {
    text-align: center;
    background: #0b0b3b url("../images/vip/vip-banner.jpg") no-repeat top center;
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    border: none;
}

.vip-top-banner .title {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(to bottom, #ff33ff, #9933ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.vip-top-banner .subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.vip-top-banner .progress-bar {
    height: 4px;
    background-color: #a020f0;
    margin: 20px 0;
    position: relative;
}

.vip-top-banner .progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: #7b7b7b;
}

.vip-top-banner .cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.vip-top-banner .card {
    width: calc(20% - 10px);
    /* 5 cards in one row, with some space */
    color: #000;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background: none;
}

.vip-top-banner .card img {
    width: 100%;
    border-radius: 10px;
}

.vip-top-banner .card-title {
    font-size: 18px;
    margin-top: 10px;
    color: #fff;
}

.vip-top-banner .card-subtitle {
    font-size: 14px;
    color: #a020f0;
}

.vip-top-banner .level-up {
    font-size: 14px;
    color: #a020f0;
    margin-top: 20px;
}

.vip-section .container-fluid {
    max-width: 90%;
}

.card_overview {
    display: block;
    margin: 30px auto;
    position: relative;
    width: 100%;
    padding: 30px 0;
}

.rank_slider_container {
    overflow: hidden;
    /* Add this line to hide overflowing content */
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.rank_slider_wrapper {
    color: #fff;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    margin: 46px auto 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.rank_slider_slide {
    background: #f6e7f5;
    margin: 0 auto;
    padding: 20px 12px 30px;
    /* opacity: 0.5; */
}

.rank_slider_slide,
.rank_slider_slide_out {
    border-radius: 0.75rem;
    position: relative;
    width: 100%;
}

.rank_slider_slide_out {
    border: 2px solid transparent;
    /* Optional: Add your inactive slide styles here */
}

.swiper-slide-active {
    opacity: 1;
}

.rank_slider_image {
    align-items: center;
    display: flex;
    height: 100px;
    justify-content: center;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: -50px;
    width: 100px;
}

.rank_slider_image img {
    align-items: center;
    display: block;
    justify-content: center;
    pointer-events: none;
    text-align: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.rank_slider_slider_body {
    padding: 10px 0 20px;
    position: relative;
    text-align: center;
    top: 20px;
    z-index: 2;
}

.rank_slider_title {
    margin: 10px auto 0;
    text-align: center;
    width: 100%;
}

.rank_slider_slider_body h4 {
    color: #adbdff;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 5px;
    text-align: center;
}

.rank_slider_slider_body h5 {
    color: #adb6c4;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 5px;
    text-align: center;
}

.rank_slider_slider_body h6 {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-top: 5px;
    text-align: center;
}

.rank_slider_title h5 {
    color: #ffffff;
}

.rank_slider_rule_1 {
    margin: 5px auto 0;
    padding: 0;
    width: 100%;
}

.rank_slider_rule_box {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    margin: 0 auto;
    width: 100%;
}

.rank_slider_rule_box_item {
    background: #e7eede;
    border-radius: 0.5rem;
    display: block;
    display: flex;
    flex-direction: column;
    min-height: 60px;
    text-align: center;
    border: 1px solid #00bcd4;
}

.rank_slider_rule_box_item h5 {
    color: #000;
    font-family: Montserrat-Medium;
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
}

.rank_slider_rule_box_item h4 {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #fe0002;
}

.rank_slider_rule_2,
.rank_slider_rule_3 {
    margin-top: 10px;
    text-align: center;
}

.rank_slider_slider_body hr {
    background-color: var(--color-green1);
    border: none;
    height: 1px;
    margin: 0 auto;
    width: 70%;
}

.rank_slider_rule_3 hr {
    margin-top: 10px;
}

.rank_slider_rule_4 {
    margin: 5px auto;
    padding: 0;
    width: 100%;
}

.rank_slider_tr_3 {
    grid-gap: 2px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 2px;
}

.rank_slider_tr_2 {
    grid-gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
}

.rank_slider_rule_4 div {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-top: 5px;
    text-align: center;
}

.rank_slider_slide_out.active .rank_slider_slide {
    background: linear-gradient(to bottom,
            rgba(114, 213, 9, 1) 0%,
            rgba(50, 56, 56, 1) 100%);
    opacity: 1;
}

.rank_slider_slide_out.active .rank_slider_slide.rank_slider_slide:before {
    background: linear-gradient(180deg, #12442b, #85e6a1);
}

.rank_slider_slide_out.active .rank_slider_slide_bottom .btn {
    background: #85e6a1;
    color: #000;
}

.rank_slider_slide_bottom .btn {
    background-color: #1134c1;
    border: none;
    border-radius: 1.2rem;
    color: #fff;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 40px;
}

.vip-card-container {
    background: linear-gradient(to bottom,
            rgba(244, 245, 249, 1) 0%,
            rgba(246, 229, 245, 1) 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    /* width: 300px; */
    text-align: center;
}

.vip-row {
    display: grid;
    grid-template-columns: 43% auto;
    align-items: center;
    margin-bottom: 20px;
}

.vip-card {
    flex: 1;

    text-align: left;
}

.vip-card h2 {
    margin: 10px 0 0;
    font-size: 18px;
    color: white;
}

.vip-card p {
    margin: 5px 0 0;
    font-size: 14px;
    color: white;
}

.vip-info-wrap {
    flex: 2;
}

.info-box {
    background-color: #6a0dad;
    border-radius: 10px;
    padding: 10px;
    /* width: 150px; */
    color: white;
}

.info-box p {
    margin: 0;
    font-size: 16px;
}

.info-box span {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.section-title {
    font-size: 16px;
    color: #6a0dad;
    margin: 20px 0 10px;
}

.section-content {
    font-size: 14px;
    color: #333;
}

.level-wrap {
    display: flex;
    justify-content: center;
    grid-gap: 1rem;
}

.level-up strong {
    color: #fff;
}

.level_pagediv {
    z-index: 1;
    top: 50%;
    left: 0%;
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.left_level_pre button {
    background: #6a0dadbf;
    color: #fff;

    z-index: 99;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.right_level_next button {
    background: #6a0dadbf;
    color: #fff;

    border-radius: 50%;
    width: 50px;
    height: 50px;

    z-index: 99;
}

/* PROMO */
/*promotion*/
.intro_promotion {
    /* min-height: 150px; */
    padding-bottom: 30px;
}

.intro_promotion_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 25px;
    color: hsl(var(--main));
}

.intro_promotion_subtitle {
    line-height: 1.4;
    font-weight: 500;
    font-size: 16px;
    color: #55657e;
    margin-bottom: 5px;
}

.mobile_promo {
    display: none;
    /* margin-top: 15px; */
    width: 100%;
}

.filter-list li {
    position: relative;
    display: inline-block;
    padding: 6px 20px;
    margin: 0 2px;
    margin-bottom: 0;
    border-radius: 23px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.filter-list li {
    color: #5b5b5b;
}

.filter-list li:hover {
    background: var(--main-gradient);
    color: #ffffff;
}

.filter-list li.mixitup-control-active {
    background: var(--main-gradient);
    color: #fff;
}

.select-menu select {
    width: 100%;
    height: 40px;
    line-height: 35px;
    background-color: #fff;
    border: none;
    border-radius: 25px;
    color: #000;
    padding: 10px;
}

.promo_filter_wrap {
    display: flex;
    align-items: center;
    background-color: #f2e5fa;
    border-radius: 25px;
    padding: 8px;
    justify-content: space-between;
}

.promo_box_wrap {
    background-color: none;
    border-radius: 10px;
    overflow: hidden;
}

.promo_box_wrap img {
    width: 100%;
}

.promo_box_wrap_inn {
    padding: 15px;

    background-color: #f2e5fa;
}

.promo_box_wrap_inn p {
    font-weight: 800;

    font-size: 21px;

    margin-bottom: 15px;

    line-height: 1.5;

    color: #5830f2;
}

.promo_box_wrap_inn span {
    color: #ffffff;

    font-size: 13px;
}

.promo_box_wrap_a a {
    color: #ffffff;

    background: var(--main-gradient);

    border: none;

    padding: 5px 15px;

    border-radius: 25px;

    font-size: 15px;

    display: block;

    width: fit-content;

    font-weight: 600;

    margin: auto;
}

.filt-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    margin: 30px 0;
}

.modal-dialog.promo {
    max-width: 800px !important;
    border-radius: 20px;
}

.modal-content.promo {
    border: none;
    background: #ffffff;
    border-radius: 20px;
    /* border: 1px solid #d9353d; */
}

button.close-promo {
    background: none;
    border: none;
    font-size: 33px;
    padding: 11px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
}

.grlist {
    color: var(--text-color);
}

.pm-title-wrapper {
    font-size: 16px;
    font-weight: 700;
    background: var(--main-gradient);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 20px 20px 0px 0px;
}

.pmtable-wrapper {}

table.promo-table tr th {
    color: #fff;
    background: #d9353d;
    padding: 4px;
    text-align: center;
    border: 1px solid var(--text-color);
}

table.promo-table tr td {
    border: 1px solid var(--text-color);
    padding: 5px;
    color: var(--text-color);
    text-align: center;
}

.gr-title {
    margin-top: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #d9353d;
}

.grlist ul {
    padding-left: 20px;
    margin-top: 5px;
}

.grlist ul li {
    padding-bottom: 8px;
    font-size: 14px;
    list-style: disc;
}

.promo-pop-cont {
    padding: 15px;
    border: 1px solid #d9353d;
    border-radius: 0px 0px 20px 20px;
}

.promo-nav button {
    background: #1e2024;
    padding: 10px 30px;
    color: #fff;
    border-radius: 20px;
}

.promo-modal-tnc {
    font-size: 14px;
    font-family: Calibri;
    color: #ffffff;
    list-style: none !important;
}

.promo-modal-tnc li span {
    color: orangered;
    margin-right: 10px;
}

.promo_table tr th {
    background: #80f801;
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
    font-size: 12px;
    color: #000;
}

.promo_table tr td {
    font-size: 12px;
    color: #000;
    padding: 10px;
    border: 1px solid #000;
    background: #d7d7d7;
    text-align: center;
}

.basic-text {
    font-size: 12px;
    color: #fff;
}

.promo_table {
    width: 100%;
}

.promo-text {
    padding: 20px;
}

table.promo-table tr th {
    color: #fff;
    background: #d9353d;
    padding: 4px;
    text-align: center;
    border: 1px solid var(--text-color);
}

table.promo-table tr td {
    border: 1px solid var(--text-color);
    padding: 5px;
    color: var(--text-color);
    text-align: center;
}

.gr-title {
    margin-top: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #d9353d;
}

.grlist ul {
    padding-left: 20px;
    margin-top: 5px;
}

.grlist ul li {
    padding-bottom: 8px;
    font-size: 14px;
    list-style: disc;
}

.promo-pop-cont {
    padding: 15px;
    border: 1px solid #d9353d;
    border-radius: 0px 0px 20px 20px;
}

.promo-nav button {
    background: #1e2024;
    padding: 10px 30px;
    color: #fff;
    border-radius: 20px;
}

.promo-modal-tnc {
    font-size: 14px;
    font-family: Calibri;
    color: #ffffff;
    list-style: none !important;
}

.promo-modal-tnc li span {
    color: orangered;
    margin-right: 10px;
}

.promo_table tr th {
    background: #ed1d49;
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.promo_table tr td {
    font-size: 12px;
    color: #000;
    padding: 10px;
    border: 1px solid #000;
    background: #d7d7d7;
    text-align: center;
}

.basic-text {
    font-size: 12px;
    color: #fff;
}

.promo_table {
    width: 100%;
}

.promo-text {
    padding: 20px;
    color: #7b7b7b;
}

.promo h4 {
    font-size: 16px;
    font-weight: bold;
}

.promo p {}

.promo {
    font-size: 12px;
}

.promo h5 {
    font-size: 14px;
    font-weight: bold;
}

.promo ul li,
.promo ol li {
    margin-bottom: 10px;
}

.promo ul,
.promo ol {
    padding-left: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #727272;
}

.promo ul li {
    list-style: circle;
}

.promo ol li {
    list-style: auto;
}

.promo table tr th,
.promo table tr td {
    padding: 10px;
    text-align: center;
}

.tab_search {
    background: #ffffff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: #a2a4a1;
}

.searchinput {
    border: none;
    border-radius: 10px;
    background: none;
    padding: 4px 10px;
    width: 100%;
}

/* SLOTS */
.slot-product {
    background: #f4f5f9;
    background-image: url("../images/shapes/working-process-gradient-bg.png");
    background-position: top center;
    background-size: 100%;
}

.filter-sidebar {
    background-color: #fff;
}

.common-tab .nav-item .nav-link.active {
    background-color: #843ff1 !important;
    border: 1px solid #843ff1 !important;
}

.common-tab .nav-item .nav-link {
    border: 1px solid #843ff1;
    border-radius: 25px;
}

.sidebar {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    grid-gap: 2rem;
    padding: 0 44px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    grid-gap: 2rem;
    cursor: pointer;
}

.sidebar-item img {
    /* width: 40px; */
    /* height: 40px; */
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.sidebar-item:hover span,
.sidebar-item.active span {
    color: #8a2be2;
}

.sidebar-item:hover img,
.sidebar-item.active img {
    filter: none;
}

.sidebar-item span {
    font-size: 16px;
    color: #888888;
    flex: 2;
}

.sidebar-item span.highlight {
    color: #8a2be2;
}

.inn_product_wrap {
    display: grid;
    grid-gap: 20px;
    flex-flow: wrap;
    grid-template-columns: repeat(6, 1fr);
}

.inn_product_wrap a {
    display: block;
    position: relative;
}

.inn_product_wrap a img {
    width: 100%;
}

.game-prod {
    border: 1px solid #843ff1;
    border-radius: 10px;
    overflow: hidden;
}

.game-prod-name {
    color: #6c7ba8;
    padding: 10px 5px;
    text-align: center;
    font-size: 12px;
}

.slot-product .game-preview__hover {
    background-color: rgba(27, 34, 51, 0.8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 1;
    padding: 10px 15px;
    transition: opacity 0.1s ease-in-out;
    -webkit-transform: translateZ(0);
    -webkit-perspective: 1000;
    transform: translateZ(1px);
    border-radius: 8px;
}

.slot-product .game-preview__btn-play {
    background-color: #843ff1;
    border-radius: 25px;
    opacity: 0;
    /* transform: scale(.9); */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    color: #ffffff;
    max-height: 40px;
}

.inn_product_wrap a:hover .game-preview__btn-play,
.inn_product_wrap a:hover .game-preview__hover {
    opacity: 1;
}

.game-preview__btn-play:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.game-preview__btn-play i {
    color: #fff;
    font-size: 20px;
}

.slot-banner {
    position: relative;
}

.jackpot-number {
    position: absolute;
    bottom: 17%;
    width: 100%;
    font-size: 3vw;
    color: #fff;
    font-weight: bolder;
    text-align: center;
}

/* INFO */

.info-bg {
    min-height: 887px;
}

.info-nav {

    /* Adjust this value based on your design */
}

/* Custom scrollbar styling */
.info-nav::-webkit-scrollbar {
    width: 6px;
}

.info-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.info-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.info-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.info-nav ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    background: #fff;
    border-radius: 15px;
    padding: 1rem;
    grid-gap: 10px;
    display: flex;
    flex-direction: column;
}

.info-content {
    /* margin-top: 20px; */
}

.info-content p {
    font-size: 13px;
    color: #000000;
}

.info-content p strong {
    color: #b2b6c5;
}

.info-title h5 {
    color: #803ef2;
    text-transform: uppercase;
    position: relative;
    font-size: 30px;
    font-weight: 700;
}

.info-title h5::after {
    content: "";
    width: 15%;
    height: 3px;
    background: #ff7d01;
    position: absolute;
    left: 0;
    bottom: -5px;
    display: none;
}

.info-content .accordion-item {
    margin-bottom: 10px;
    background: none;
    border: none;
}

.info-content .accordion-body {
    background: #e1e1e17a;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    padding: 10px;
}

.info-center .accordion-body p {
    color: #000000;
}

.info-nav ul li a {
    height: 50px;
    color: #a7a7a7;
    align-items: center;
    display: flex;
    border-radius: 15px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.info-nav ul li a.active,
.info-nav ul li a:hover {
    color: #fff;
    background: var(--main-gradient);
}

.info-center {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    min-height: 700px;
}

.info-content ul {
    font-size: 13px;
    color: #803ef2;
    margin-bottom: 10px;
    padding-left: 20px;
}

.info-content ul li {
    list-style: circle;
}

.info-center .accordion-button {
    background: var(--main-gradient);
    border-radius: 6px;
    color: #ffffff;
    width: 100%;
    text-align: initial;
    font-size: 14px;
    padding: 12px;
    border: none;
    box-shadow: none;
}

.info-wrapper {
    font-size: 13px;
    margin-top: 20px;
    color: #6c6c6c;
}

/* BANK */

.bank-table tr.trans td {
    background: #f9f4fc;
    color: #cc50f0;
    border: 1px solid #cc50f0;
    padding: 2px;
    font-size: 15px;
    font-weight: 200;
}

.bank-table tr.trans1 td {
    background: #f9f4fc;
    color: #cc50f0;
    border: 1px solid #cc50f0;
    padding: 2px;
    font-size: 13px;
}

.bank-table tr.dwbox td {
    background: var(--main-gradient);
    color: #fff;
    border: 1px solid #9c9c9c;
    padding: 2px;
}

/* P2E */
.p2e .a.paginate_button {
    color: #000;
    display: block;
}

.p2e a.paginate_button.current {
    color: #fff;
}

.p2e .btn-apply {
    background: linear-gradient(to bottom,
            rgba(84, 63, 22, 1) 0%,
            rgba(173, 132, 57, 1) 99%);
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: 6px 20px;
}

.dataTables_length label select {
    background: #7a7a7a;
    border: none;
    padding: 8px;
    border-radius: 5px;
    color: #fff;
}

.dataTables_scroll {
    margin-top: 25px;
}

table.dataTable.compact thead th,
table.dataTable.compact thead td {
    background: #7a7a7a;
    color: #fff;
    padding: 6px;
    text-align: center;
    font-size: 12px;
}

.dataTables_paginate {
    display: flex;
    gap: 10px;
}

.dataTables_length label {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    max-width: 30%;
    color: #000000;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.btn-apply {
    background: var(--main-gradient);
    color: #fff;
    font-weight: bold;
    border-radius: 25px;
}

.history-play-to-earn {
    margin: 10px 0px;
}

.blog_title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 25px;
    color: hsl(var(--main));
}

.play2earn {
    padding: 40px;
}

.play2earn-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.p2e-ttl-1 {
    background: #e3d7fd;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 15px;
    font-weight: bold;
}

.p2e-info-content {
    padding: 10px;
    border: 1px solid #37393f;
    border-top: none;
    padding-bottom: 0;
}

.p2e-amount {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.p2e-amount-box {
    width: 100%;
    background: #e9e9e9;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-bar {
    width: 100%;
    background-color: #494949;
    border-radius: 25px;
    margin: 10px 0;
}

.progress-bar-fill {
    height: 20px;
    background: var(--main-gradient);
    transition: width 0.5s;
    border-radius: 25px;
}

.p2e-btn-group {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.p2e-btn-group a {
    background: var(--main-gradient);
    color: #ffffff !important;
    padding: 5px 10px;
    display: block;
    text-align: center;
    width: 40%;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 25px;
}

.p2e-btn-group a:hover {
    background: var(--main-gradient-rev);
    color: #fff !important;
}

.btn-p2e {
    color: #b94bf0;
    font-weight: bold;
}

.p2e-table {
    max-width: 1000px !important;
}

.vip_modal .modal-content {
    background: #ffffff;
}

.vip_modal .modal-body h5 {
    color: #000;
}

.vip_modal .modal-dialog {
    max-width: 700px;
}

.vip_modal .close {
    color: #000000;
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 10px;
    line-height: 1;
}

.vip_modal h4 {
    border-bottom: 1px solid #000000;
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: hsl(var(--main));
}

.clm-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* DAILY */
.daily-wrap {
    text-align: center;
}

.daily-bg {
    position: relative;
}

.daily-bg ul {
    position: absolute;
    bottom: 55px;
    display: flex;
    gap: 10px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0px auto;
    list-style: none;
}

.daily-content {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0px auto;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #c94ff0;
}

.daily-bg ul li a {
    position: relative;
    display: block;
}

.daily-bg ul li a img {
    filter: grayscale(0.8);
}

.daily-bg ul li a.claimed img {
    filter: none;
}

.daily-bg ul li a.active img {
    filter: none;
}

.modal-congrat h5 {
    color: hsl(var(--main));
    font-size: 38px;
    font-weight: bold;
    text-align: center;
}

.congrat-text {
    text-align: center;
    font-size: 20px;
}

.color-text1 {
    color: hsl(var(--main));
    font-weight: bold;
}

.color-text2 {
    color: hsl(var(--main));
    font-weight: bold;
}

.img-wrap-top {
    position: absolute !important;
    bottom: -27px;
    left: 0;
    right: 0;
    margin: 0px auto;
    z-index: 1;
}

img.img-wrap {
    height: 80%;
    margin-top: 20px;
    z-index: 1;
    position: relative;
}

.tokenredeem {
    display: block;
    margin: 0px auto;
    margin-top: 35px;
    background: #ed1d49;
    border: none;
    z-index: 10;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 18px;
}

.token-pt {
    z-index: 10;
}

.image-wrap {
    height: 250px;
    position: relative;
    text-align: center;
}

.daily-wrap-in {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #9050f7;
}

.daily_modal .close {
    position: absolute;
    right: 30px;
    top: 35px;
    color: #000000;
    opacity: 1;
    font-size: 47px;
    z-index: 2;
    line-height: 1;
}

.daily_modal .modal-body {
    background: none;
}

.daily_modal .modal-content {
    background: none;
    border: none;
}

/* REFERRAL-PROGRAM */
.bonus_footer_right_href {
    color: #9a43f0;
}

.bonus_box {
    background: #f2e5fa;
    border-radius: 0.75rem;
    color: #fff;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    margin: 10px auto;
    min-height: 260px;
    padding: 0;
    position: relative;
    width: 100%;
}

.bonus_box_custom {
    grid-template-columns: 275px 1fr;
}

.bonus_left_box {
    background: #dbc3e9;
    border-radius: 0.75rem;
    float: left;
    margin: 10px;
    min-height: 250px;
    position: relative;
}

.copy_overview_inner {
    padding: 10px;
}

.copy_title {
    color: #c44ef0;
    font-size: 24px;
    min-height: 68px;
    padding: 10px 10px 0;
    font-weight: 700;
}

.copy_value_title {
    color: #000000;
    font-size: 10px;
    margin-bottom: 10px;
    padding: 0 5px;
}

.copy_value {
    align-items: center;
    border-radius: 0.25rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 10px;
    height: 34px;
    justify-content: space-between;
    letter-spacing: -0.02em;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 0 0 0 0px;
    text-align: left;
}

.copybtn {
    background: var(--main-gradient);
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    font-size: 15px;
    border-radius: 4px;
}

.copy_value input {
    height: 34px;
    background-color: #f2e5fa;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    padding: 5px;
    width: 100%;
}

.bonus_right_box_top {
    background: #dbc3e9;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 108px;
    padding: 10px 16px;
    border-radius: 0.75rem;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bonus_data_block {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
}

.bonus_data_block h4 {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 20px;
    margin-top: 18px;
    text-align: center;
}

.bonus_data_block span {
    line-height: 40px;
    font-weight: 600;
    color: #000;
}

.bonus_right_box_bottom {
    background: #dbc3e9;
    display: grid;
    justify-items: flex-start;
    margin-bottom: 10px;
    margin-top: 15px;
    min-height: 140px;
    position: relative;
    border-radius: 0.75rem;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    grid-template-columns: minmax(120px, 240px) 90px 2fr;
    align-items: center;
    grid-gap: 30px;
}

.bonus_plan_title {
    align-items: center;
    color: #000000;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    font-style: italic;
    margin: 0 auto;
    padding-left: 30px;
    max-width: 240px;
    justify-content: center;
    font-weight: 700;
    line-height: 1.3;
}

.bonus_plan_txt {
    min-width: 150px;
    display: flex;
    grid-column-end: auto;
    grid-column-start: auto;
    align-items: center;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    font-size: 24px;
    justify-content: left;
    padding-left: 20px;
    text-align: left;
    font-weight: 700;
    position: relative;
}

.trophy_m {
    display: none;
}

.bonus_plan_txt_tooltit,
.bonus_plan_txt_tooltit2 {
    display: none;
    position: absolute;
    font-size: 10px;
    color: #fff;
    width: 260px;
    font-weight: 500;
    top: 33px;
    z-index: 999;
    background-color: #0e2649c2;
    padding: 5px;
    border-radius: 10px;
}

.bonus_ques,
.bonus_ques2 {
    color: #ce50f0;
    margin-left: 10px;
    cursor: pointer;
    font-size: 18px;
}

.bonus_card_overview_title {
    margin: 0 auto;
    padding: 0;
}

.bonus_card_overview_title h2 {
    color: #fff;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    font-weight: 700;
}

.bonus_card_overview_inner {
    display: flex;
    color: #fff;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    min-height: 98px;
    position: relative;
}

.bonus_card_item {
    align-items: center;
    background: #f2e5fa;
    border-radius: 8px;
    display: flex;
    width: 32%;
}

.bonus_card_item_icon {
    margin: 0 10px;
    position: relative;
    width: 80px;
}

.bonus_card_item_div {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
}

.bonus_card_item_title {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 0;
}

.bonus_card_item_number {
    color: #ffaa17;
    font-size: 20px;
    font-weight: 800;
    line-height: 32px;
    margin-bottom: 0;
}

.bonus_card_item_people {
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 0;
}

.bonus_invite_box_title {
    color: #000000;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    font-weight: 400;
}

.bonus_content_box {
    background: #f2e5fa;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
}

.bonus_left_content_box {
    padding: 30px 0 30px 30px;
    width: 45%;
}

.bonus_left_title {
    color: hsl(var(--main));
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
}

.bonus_left_text {
    color: #000000;
    font-size: 11px;
    font-weight: 500;
    line-height: 20px;
}

.bonus_left_money {
    color: hsl(var(--main));
    font-size: 16px;
    font-weight: 900;
}

.bonus_right_content_box {
    align-items: center;
    display: flex;
    flex: 1 1;
    justify-content: center;
}

.bonus_right_content_box img {
    width: 270px;
    padding: 10px;
}

.bonus_invite_list {
    background: #f2e5fa;
    border-radius: 18px 18px 18px 18px;
    margin-top: 24px;
    opacity: 1;
    padding-bottom: 30px;
    padding-top: 24px;
}

.bonus_table_title {
    color: hsl(var(--main));
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    text-align: center;
}

.bonus_invite_list .bonus_table_ul {
    display: flex;
    flex-direction: column;
    padding: 0 36px;
}

.bonus_invite_list .bonus_table_ul .bonus_table_li {
    cursor: pointer;
    display: flex;
    width: 100%;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li {
    background: hsl(0deg 0% 100%);
    border-radius: 8px;
    height: 32px;
    line-height: 32px;
    margin-bottom: 8px;
}

.bonus_table_text {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50%;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.bonus_table_invite_nav {
    align-items: center;
    color: #000000;
    display: flex;
    font-size: 16px;
    font-weight: 800;
    justify-content: center;
    min-height: 40px;
    text-align: center;
    width: 190px;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(3) {
    background: #d251ef;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:nth-last-child(2) {
    background: #b24aef;
}

.bonus_invite_list .bonus_table_ul .bonus_table_list_li:last-child {
    background: #6333da;
}

.bonus_box .bonus_card_overview {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.bonus_card_overview_title h2 {
    color: #000000;
    display: block;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 22px;
    margin-top: 22px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.questiontool_wrap {
    position: relative;
}

.bonus_bets_box {
    background: #f2e5fa;
    border-radius: 8px;
    margin-top: 20px;
    min-height: 620px;
    padding-bottom: 20px;
    width: 100%;
}

.bonus_bets_top {
    display: flex;
    justify-content: space-around;
}

.bonus_bets_top_left {
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-top: 30px;
    padding-left: 35px;
    width: 49%;
}

.bonus_bets_bgc {
    background-color: hsla(0, 0%, 100%, 0.1);
    border-radius: 10px;
    padding: 20px 20px 25px 25px;
    font-weight: 600;
}

.bonus_bets_desc {
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}

.bonus_bets_top_example {
    color: #000000;
    line-height: 26px;
    margin-top: 10px;
    padding-right: 12px;
    width: 100%;
    margin-bottom: 0;
}

.bonus_bets_top_example_title {
    font-size: 16px;
    margin-bottom: 0;
}

.bonus_bets_top_example_desc {
    font-size: 14px;
    margin-left: 15px;
    margin-bottom: 0;
}

.bonus_bets_top_right {
    align-items: center;
    justify-content: center;
    position: relative;
    width: 49%;
    display: flex;
}

.bonus_card_overview_desc {
    color: #ae48e9;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 15px auto;
}

.bonus_bets_top_right img {
    width: 55%;
    padding: 10px;
}

.bonus_bets_bottom {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    padding: 20px;
    flex-wrap: nowrap;
}

.bonus_bets_bottom_box {
    background-color: #dbc3e9;
    border-radius: 15px 15px 15px 15px;
    box-sizing: border-box;
    padding: 20px;
}

.bonus_bets_bottom_left {
    width: 48%;
}

.bonus_bets_bottom_right {
    width: 48%;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.bonus_bets_bottom_right h2 {
    align-items: center;
    display: flex;
    font-size: 18px;
    font-weight: 500;
    height: 30px;
    justify-content: center;
}

.bonus_bets_number {
    position: relative;
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: 30px;
    font-weight: 700;
    height: 60px;
    justify-content: center;
    position: relative;
}

.bonus_bets_number_text {
    color: #6333da;
    font-weight: 600;
    height: 30px;
    text-align: center;
    margin-bottom: 0;
}

.bonus_ranking_overview {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    position: relative;
    width: 100%;
}

.bonus_ranking_inner {
    grid-column-gap: 10px;
    color: #fff;
    display: grid;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
}

.bonus_ranking_item {
    background: #f2e5fa;
    border-radius: 0.75rem;
    display: grid;
    min-height: 110px;
    padding: 10px;
}

.bonus_item_title {
    color: #6333da;
    font-size: 22px;
    height: 42px;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    font-weight: 700;
}

.bonus_ranking_data {
    background: #dbc3e9;
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    margin: 0 auto;
    min-height: 280px;
    width: 100%;
}

.bonus_ranking_level2 {
    padding-top: 80px;
}

.bonus_ranking_level1 {
    padding-top: 20px;
}

.bonus_ranking_level3 {
    padding-top: 80px;
}

.bonus_userinfo_body {
    display: grid;
    font-size: 10px;
    grid-template-rows: 30px 100px 20px 20px;
    justify-content: center;
    justify-items: center;
    text-align: center;
}

.bonus_userinfo_ranking_level {
    font-size: 12px;
    padding-top: 15px;
}

.bonus_userinfo_avatar_bg {
    border: 1px solid #f39d42;
    border-radius: 50%;
    display: block;
    height: 80px;
    margin: 10px auto;
    overflow: hidden;
    padding: 3px;
    position: relative;
    width: 80px;
}

.bonus_userinfo_body .bonus_userinfo_score,
.bonus_userinfo_body .bonus_userinfo_username {
    align-items: center;
    color: #fff;
    display: block;
    justify-content: center;
    margin: 10px auto;
    text-align: center;
    transform: scale(0.8);
    font-size: 16px;
}

.bonus_userinfo_body .bonus_userinfo_score {
    color: #ffaa17;
}

.bonus_ranking_lottery {
    grid-gap: 10px;
    display: grid;
    margin: 0 auto;
    min-height: 280px;
    padding: 0 8px;
    width: 100%;
}

.bonus_lottery_item {
    background-color: #dbc3e9;
    border-radius: 0.25rem;
    color: #3f526e;
    display: -ms-flexbox;
    display: grid;
    flex-wrap: wrap;
    font-size: 10px;
    grid-template-columns: minmax(60px, 100px) 1fr 100px;
    margin: 0 auto;
    min-height: 50px;
    padding: 0 10px;
    position: relative;
    width: 100%;
}

.bonus_lottery_item div {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 12px 3px;
    text-align: center;
    font-size: 16px;
}

.bonus_username {
    color: #3f526e;
}

.bonus_yellow {
    color: #8f5fff;
}

.bonus_footer_overview {
    background: #f2e5fa;
    border-radius: 15px;
    display: flex;
    margin-bottom: 30px;
    opacity: 1;
    padding: 15px 15px 15px 24px;
    flex-direction: row;
}

.bonus_footer_left {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 315px;
}

.bonus_footer_right {
    flex: 1 1;
    width: 100%;
    margin-left: 25px;
}

.bonus_footer_right .bonus_footer_right_content {
    background: #dbc3e9;
    border-radius: 15px;
    height: 100%;
    opacity: 1;
    padding: 26px 23px 18px 29px;
    width: 100%;
}

.bonus_footer_right_content .bonus_footer_right_text {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
}

.bonus_footer_last_text {
    margin-bottom: 0;
}

.bonus_footer_right_href {
    color: hsl(var(--main));
    display: block;
    font-size: 16px;
    font-weight: 600;
}

/* MISSION */
.mission-bg ul {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.mission-bg ul li a {
    display: block;
    position: relative;
}

.ms-wrap {
    position: absolute;
    top: 0px;
    padding: 15px;
    text-align: center;
    width: 100%;
    color: #fff;
}

.ms-ttl {
    text-transform: uppercase;
}

.ms-amt {
    font-weight: bold;
    color: #fbe621;
    text-transform: uppercase;
}

.ms-btn {
    position: absolute;
    bottom: -5px;
}

.mission_modal .modal-content {
    background: #fff url(../images/shapes/pattern-curve-four.png) no-repeat center top;
}

.mission_modal .modal-dialog {
    max-width: 800px;
}

.mission_modal .modal-body h5 {
    color: #cb54f1;
}

.mission_modal .close {
    position: absolute;
    right: 0px;
    color: #fff;
}

.mission_modal ul,
.mission_modal ol {
    padding-left: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #787878;
    font-size: 12px;
}

.mission_modal ul li {
    list-style: circle;
    margin-bottom: 15px;
}

.mission_modal ol li {
    list-style: auto;
    margin-bottom: 10px;
}

.mission_modal .modal-body {
    padding: 20px 30px;
    color: #7b7b7b;
}

.mission_modal h4 {
    border-bottom: 1px solid #fff;
    display: inline-flex;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: hsl(var(--main));
}

.mission_modal table tr td {}

.mission_modal table tr td,
.mission_modal table tr th {
    padding: 10px;
    text-align: center;
    font-size: 12px;
}

.mission_modal .close {
    color: #000000;
    font-size: 34px;
    opacity: 1;
    position: absolute;
    right: 10px;
    top: 0px;
}

.clm-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.clm-btn button {
    background: var(--main-gradient);
    border-radius: 25px;
    font-size: 12px;
    padding: 10px 14px;
    color: #fff;
    font-weight: 600;
    border: none;
    margin: 0;
}

.clm-btn button:hover {
    background: var(--main-gradient-rev);
}

/* WHEEL */
.wheel_product .wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    height: 880px;
    margin-bottom: -120px;
}

.wheel-wrap .wheel_product_bg {
    width: 100%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 20px;
}

.wheel-wrap .wheel_product_frame {
    width: 55.5%;
    position: absolute;
    bottom: 5%;
    z-index: 5;
    left: 0;
    right: 0;
    margin: 0px auto;
    animation: wheelRotate 7s cubic-bezier(0.37, -0.15, 0.3, 0.94) infinite;
}

.wheel-wrap .wheel_product_zeus {
    width: 38%;
    position: absolute;
    left: -0%;
    bottom: 25%;
    z-index: 2;
}

@keyframes wheelRotate {
    0% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(1turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.wheel-wrap .wheel_product_arrow {
    width: 9%;
    position: absolute;
    bottom: 43%;
    z-index: 6;
    top: auto;
    left: 0;
    right: 0;
    margin: 0px auto;
}

.wheel-wrap .lightning {
    position: absolute;
    width: 28%;
    height: 50%;
    right: 1.3%;
    bottom: 25%;
    mix-blend-mode: lighten;
}

.wheel-wrap .wheel_product_img {
    width: 64%;
    position: absolute;
    right: 18%;
    bottom: -2%;
    transform: rotate(0deg);
    animation: wheelRotate 7s cubic-bezier(0.37, -0.15, 0.3, 0.94) infinite;
    z-index: 4;
}

.wheel-wrap .wheel_product_content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.wheel_product.wheel-wrap {
    position: relative;
    overflow: hidden;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 820px;
    margin-bottom: 40px;
    z-index: 0;
}

.slider_title.wheel-ttl {
    color: #e2e7f3;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.wheel-all ul {
    display: flex;
    justify-content: center;
    margin-bottom: 55px;
    gap: 20px;
    font-weight: bold;
}

span.yell-text {
    color: #ffffff;
    font-weight: bold;
}

.whl-btn {
    background: #9142f1;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: flex;
    gap: 5px;
    color: #00ff8c;
}

a.btn-spin {
    background: var(--main-gradient);
    padding: 8px 20px;
    margin: 0px;
    display: flex;
    border-radius: 25px;
    color: #fff;
}

.wheel-all .btn-more {
    background: var(--main-gradient);
    padding: 2px;
    margin: 0px;
    display: flex;
    border-radius: 25px;
    font-size: 15px;
    color: #ad48f0;
}

.wheel-bg {
    display: block;
}

/*Redemption*/
.red-bg {
    background: url("../images/reward-redemption/rr-bg.png") no-repeat center top;
}

.redemp-title {
    padding-bottom: 15px;
}

.redemption-wrapper {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 55px;
    margin-top: 45px;
    display: flex;
}

.redemp-box {
    position: relative;
    margin: 15px 2px 35px;
    display: inline-block;
    text-transform: uppercase;
}

.redemp-box {
    background: url("../images/reward-redemption/bg-reward.png") no-repeat;
    background-size: 100%;
    width: 312px;
    height: 226px;
    margin: 0 auto;
    padding: 13px 25px;
    position: relative;
}

.redemp-inner {
    position: relative;
    top: -40px;
}

.prize-credit {
    padding-bottom: 15px;
}

.point-text {
    line-height: 8px;
    color: #c498ff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000,
        -1px -1px 0 #000, 0px 1px 0 #000, 0px -1px 0 #000, -1px 0px 0 #000,
        1px 0px 0 #000, 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000,
        -2px -2px 0 #000, 0px 2px 0 #000, 0px -2px 0 #000, -2px 0px 0 #000,
        2px 0px 0 #000, 1px 2px 0 #000, -1px 2px 0 #000, 1px -2px 0 #000,
        -1px -2px 0 #000, 2px 1px 0 #000, -2px 1px 0 #000, 2px -1px 0 #000,
        -2px -1px 0 #000;
}

.require-text {
    font-size: 14px;
    font-weight: 100;
    padding: 9px 0;
    color: #fff;
}

.claim-btn-wrap {
    margin-top: -30px;
}

.point-text.top {
    margin-top: -15px;
}

.prize-item {
    margin-top: -40px;
}

.prize-sub {
    font-size: 11px;
    font-weight: 600;
}

.require-text.top {
    min-height: 78px;
}

.bg-daily img {
    display: block;
    margin: 0px auto;
}

.max-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* top: -75px; */
}

.top-btn {
    display: flex;
    position: relative;
}

.top-btn-wrap {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pred-btn-point {
    display: flex;
    position: relative;
    align-items: center;
    font-weight: bold;
}

.subtitle-wrap {
    position: relative;
}

.sub-box.redemp {
    position: relative;
    top: 2px;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 100;
    justify-content: center;
    margin-bottom: 20px;
}

.top-btn {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.red-txt {
    position: absolute;
    /* right: -11px; */
    color: #ff0000;
    font-weight: 400;
}

.pred-btn {
    background: none;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
    justify-content: center;
}

span.red-pnt {
    color: #edc983;
}

.pt-btn {
    font-size: 20px;
}

.red-txt-gd {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    background: #f5e489;
    background: linear-gradient(to bottom, #f5e489 0%, #d88127 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 20px;
    filter: drop-shadow(2px 2px 0px black);
}

.submit-btn {
    background: none;
    border: none;
    display: block;
    margin: 0px auto;
}

img.img-sh {
    position: absolute;
    z-index: 1;
    left: 0px;
}

img.img-sh2 {
    z-index: 2;
}

.transc-l img {
    display: block;
    margin: 0px auto;
}

.btn-live {
    display: flex;
    align-items: center;
}

.text-trs {
    color: #859cbf;
    font-size: 20px;
    line-height: 21px;
}

.fnt-wh {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.rep_modal .modal-dialog {
    background: none;
}

.rep_modal .modal-content {
    background: none;
    border: none;
}

.rep_modal .daily-wrap-in {
    box-shadow: none;
    border: none;
    background: url("../images/reward-redemption/bg-reward.png") no-repeat center top;
    background-size: contain;
    min-width: 312px;
}

.rep_modal img.img-wrap {
    height: 85% !important;
    position: relative;
    top: -78px;
}

.modal-congrat {
    position: relative;
}

.rep_modal .modal-congrat h5 {
    position: absolute;
    top: 57%;
    left: 0;
    right: 0;
    margin: auto;
    color: #c498ff;
    font-size: 28px;
}

.rep_modal .congrat-text {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 67px;
}

.rep_modal .color-text1 {
    color: #c498ff;
}

.rep_modal .close {
    position: absolute;
    right: 30px;
    top: 0;
    color: #db9bfc;
    opacity: 1;
    font-size: 47px;
    z-index: 9999;
}

.reptnc_modal .modal-content {
    background: none;
    padding: 0px;
}

.modal_body_view {
    background: #1c2532;
    padding: 10px 0px;
    border-radius: 10px;
}

.reptnc_modal .modal_body_view {
    background: #070315;
    border: 1px solid #db9bfc;
    box-shadow: 0px 0px 19px 4px #6b12ae;
    padding: 10px;
}

.reptnc_modal .tnc-content ul,
.reptnc_modal .tnc-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.reptnc_modal .tnc-content ul li {
    list-style: circle;
}

.reptnc_modal .tnc-content ol li {
    list-style: auto;
}

.reptnc_modal .close {
    position: absolute;
    right: 30px;
    top: 18px;
    color: #db9bfc;
    opacity: 1;
    font-size: 35px;
    line-height: 1;
}

.tnc-content {
    padding-top: 13px;
    border-top: 1px solid #93acd3;
    font-size: 12px;
    color: #93acd3;
}

.reptnc_modal .modal_body_view h5 {
    color: #db9bfc;
    margin: 0;
    padding-bottom: 15px;
}

.reptnc_modal .tnc-content {
    color: #ffffff;
    border-top: 1px solid #db9bfc;
}

.rep_modal .claim-btn-wrap {
    position: absolute;
    bottom: 0px;
    left: 0;
    margin: 0px auto;
    right: 0;
}

/* BLOG */
.blog-details-content__thumb {
    max-height: 100%;
}

.blog-details-content__thumb img {
    object-fit: revert;
}

/* CONTACT */
.dashboard-widget {
    background: var(--main-gradient);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

/* DOWNLOAd */
.download-tab {
    display: block;
}

.download-item__thumb {
    flex: 2;
    height: auto;
}

.download-item__info {
    flex: 3;
}

.downloadbody {
    text-align: center;
}

.downloadbox {
    text-align: center;
    width: 23%;
    margin: 0 5px;
    display: inline-block;
    height: 173px;
}

.ndl-btn {
    background: var(--main-gradient);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 25px;
    display: block;
    margin: auto;
    margin-top: 10px;
    width: 78%;
}

.ndl-btn:hover,
.ndl-btn:focus {
    color: #ffffff;
    background: var(--main-gradient-rev);
}

.adl-btn {
    background: var(--main-gradient);
    color: #ffffff;
    font-size: 13px;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 25px;
    display: block;
    margin: auto;
    width: 78%;
    margin-top: 10px;
}

.adl-btn:hover,
.adl-btn:focus {
    color: #ffffff;
    background: var(--main-gradient-rev);
}

.dl {
    max-width: 500px;
    margin: auto;
    margin-top: 10px;
}

.dl table {
    border-collapse: collapse;
    width: 100%;
    font-size: 12px;
}

.dl table th {
    border: 1px solid #cb54f1;
    text-align: center;
    padding: 8px;
    background: #f2e5fa;
    color: #cb54f1;
    text-transform: uppercase;
    font-weight: 500;
}

.dl table td {
    text-align: left;
    padding: 8px;
    background-color: #efefef;
    border: 1px solid #cb54f1;
    color: #cb54f1;
}

.dl .username_custom {
    color: #813ef1;
    font-weight: bold;
}

.downloadboxContent {
    padding: 20px;
    border: 1px solid #ce9c2d;
    background: #000000;
}

.download-item__right {
    display: none;
    max-width: 30%;
}

.rotating-circle-text {
    position: absolute;
    width: 158px;
    height: 158px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-circle-text span {
    position: absolute;
    font-size: 12px;
    color: #333;
    transform-origin: 158px 158px;
    /* Center point of circle */
    animation: rotateAroundCircle 10s linear infinite;
}

@keyframes rotateAroundCircle {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(-0deg);
    }

    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

.download-item__content {
    max-width: 70%;
}

.view_modal .modal-content {
    background: none;
    padding: 0px;
    border: none;
}

.view_modal .modal-body {
    padding: 0px;
}

.modal_body_view {
    background: #f5f5f5;
    padding: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.modal_body_view h5 {
    background: var(--main-gradient);
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.view_modal button.close {
    color: #fff;
    position: absolute;
    right: 15px;
    top: 10px;
}

.tnc-content {
    padding: 10px;
    margin: 15px;
    font-size: 12px;
    color: #000000;
    border-top: none;
}

/* CIRCLE */
/* Container styling */
.circle {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Badge styling */
.circle__badge {
    position: absolute;
    /* width: 50px; */
    /* height: 50px; */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    /* Ensures the badge appears above the text */
    padding: 10px;
}

.circle__badge img {
    width: 75%;
    height: auto;
}

/* Circular text styling */
.text-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Ensures the text appears behind the badge */
}

.setting-content .card {
    min-height: 400px;
    /* Adjust this value as needed */
}

.footer-section {
    background-color: #f4f5f9;
    background-position: center top;
    background-image: url("../images/shapes/footer-bg.png");
}

.product-lobby {
    background-color: #f4f5f9;
    background-image: url("../images/shapes/working-process-gradient.png");
    background-position: top center;
    background-size: 100%;
}

.event-page {
    background-color: #f4f5f9;
}

.history-sec {
    background-color: #ffffff;
}

.m-slot-banner {
    display: none;
    text-align: center;
}

.blog-main-title {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to bottom, #ff00ff, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
    padding-bottom: 20px;
    display: none;
    padding-top: 20px;
}

.trophy_m {
    display: none;
}

.vip-tnc {
    list-style: disc;
    padding-left: 20px;
    color: #7b7b7b;
}

.otp-section {
    text-align: center;
    margin-top: 20px;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.otp-input {
    flex: 1;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.resend-text {
    margin-top: 10px;
    color: #6f42c1;
    font-weight: bold;
}

.position-relative.d-flex {
    gap: 5px;
    /* Adjust gap between the select and input */
}

.country-code-select {
    width: 40%;
    font-size: 14px;
}

.btn-main:hover::after {
    background: var(--main-gradient-rev);
}

.reg_form i {
    text-align: center;
    display: block;
    margin: 0px auto;
    font-size: 130px;
    color: #6f39f2;
    margin-bottom: 10px;
}

.reg_form h4 {
    text-align: center;
    color: #000000;
    font-weight: bold;
}

.reg_form p {
    text-align: center;
    color: #676767;
    font-size: 12px;
}

.reg_form .form_wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.reg_form .btn_login_modal {
    margin: 0px;
    background: var(--main-gradient);
    display: block;
    max-width: 200px;
    padding: 10px 20px;
    color: #fff;
    border-radius: 25px;
    font-size: 15px;
}

.btn-main a {
    color: #fff;
}

.selling-product .bg--gradient,
.selling-product .bg-pattern {
    height: 100%;
}

.start-30 {
    left: 30%;
}

.top-performance {
    background: #f4f5f9;
}

/* Update the button styles */
.btn.btn-outline-light.pill {
    position: relative;
    background: transparent;
    border: none;
    z-index: 1;
    padding: 15px 24px;
}

.btn.btn-outline-light.pill::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    /* Border width */
    background: #888888;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.btn.btn-outline-light.pill:hover {
    background: none;
    color: #000;
}

.btn.btn-outline-light.pill:hover::before {
    opacity: 0;
}

.post-item__tag {
    background: #f5f7f9;
    color: #888888 !important;
}

.account-content {
    max-width: 80%;
    margin-left: 0;
}

.account-content .common-input {
    border-top: none;
    border-left: none;
    border-right: none;
    background-color: transparent !important;
    border-bottom: 2px solid #888888;
    border-radius: 0;
}

.form-label {
    color: #888888;
}

.language-select {
    position: relative;
    align-items: center;
    border-radius: 25px;
    /* Rounded edges */
    background: var(--main-gradient);
    /* Gradient colors */
    padding: 1px;
    border: 1px solid transparent;
    height: 42px;
}

.language-select-wrap {
    display: flex;
    background-color: #fff;
    border-radius: 25px;
    padding: 7px 20px;
}

.language-select .select {
    border: none;
    border-radius: 20px;
    padding: 5px 10px;
    font-weight: 500;
    color: #333;
    appearance: none;
    /* Remove default dropdown arrow */
}

.language-select .select:focus {
    outline: none;
}

.mobile-menu .btn-main {
    height: 42px;
    align-content: center;
}

.selling-product .slick-arrow {
    top: 40%;
}

.slick-dots li.slick-active button {
    background: #fff;
}

.slick-dots li button {
    border: 1px solid #fff;
}

input[type="date"] {
    -webkit-appearance: none;
    width: 100% !important;
    display: block;
}

/* Mobile Bottom Menu */
.popular-mobile {
    padding: 40px 0;
}

.mobile-bottom-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #262842;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-menu__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-bottom-menu__item {
    text-align: center;
}

.mobile-bottom-menu__link {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.mobile-bottom-menu__icon {
    font-size: 20px;
    margin-bottom: 4px;
}

@media (max-width: 991px) {
    .mobile-bottom-menu {
        display: block;
    }

    main {
        padding-bottom: 60px;
    }
}

/* Mobile Bottom Menu Styles */
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #262842;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-menu__inner {
    padding: 0;
}

.mobile-bottom-menu__items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-bottom-menu__item i {
    font-size: 30px;
    margin-bottom: 4px;
}

.mobile-bottom-menu__item span {
    font-size: 12px;
}

.mobile-bottom-menu__item:hover,
.mobile-bottom-menu__item.active {
    color: #ffd700;
}

.bottom-footer {
    /* padding-bottom: 80px; */
}

/* Add padding to main content to prevent overlap with bottom menu */
@media (max-width: 991px) {
    main {
        padding-bottom: 60px;
    }
}

/* TOKEN */
.btn-tk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-tk h5 {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-bottom: 10px;
    padding: 15px;
    background: var(--main-gradient);
    border-radius: 10px 10px 0px 0px;
    color: #ffffff;
}

.btn-token {
    background: #5f5f5f;
    min-width: 150px;
    padding: 10px;
    text-align: center;
    display: flex;
    color: #fff;
    gap: 14px;
    justify-content: center;
    border-radius: 8px;
    align-items: center;
    font-size: 17px;
}

.point-wrp {
    display: flex;
    gap: 15px;
    justify-content: center;
}

span.img-point img {
    height: 30px;
}

.point-btm {
    border-top: 1px solid #627794;
    width: 92%;
    padding-bottom: 20px;
}

.ply-point {
    text-align: center;
    padding: 15px;
    color: #000000;
    font-weight: bold;
}

.point-btm ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.balance-modal .close {
    float: right;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 1px 0 #007bff;
    opacity: 1;
    top: 5px;
    position: absolute;
    right: 10px;
}

.left_container_bonus_box {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    background: rgb(105, 108, 255);
    cursor: pointer;
}

.left_container_bonus_box:hover {
    background: rgb(67 69 165);
    box-shadow: 0px 0px 3px 1px rgb(105, 108, 255);
}

.left_container_bonus_box:hover .left_container_bonus_txt_btm {
    color: #fff;
}

.left_container_bonus_txt {
    position: absolute;
    flex-direction: column;
    display: flex;
    bottom: 13px;
    left: 1rem;
}

.left_container_bonus_txt a {
    color: #fff;
}

.balance-modal .modal-body {
    padding: 0px;
}

.balance-modal .modal-content {
    background: none;
    border-radius: 11px;
}

.modal_body_balance {
    background: #fff;
    border-radius: 10px;
}

/* ANNOUNCEMENT MODAL */
#announcementpopup .modal-content {
    margin: 0 auto;
    text-align: center;
    max-width: 75%;
}

#announcementpopup .ann-close {
    right: 0;
    bottom: -35px;
    color: #fff;
    opacity: 1;
    position: absolute;
    z-index: 111;
    text-align: center;
    left: 48%;
    font-size: 27px;
    font-weight: 100;
    border: 2px solid #fff;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-gradient);
}

/* Pending Transaction Styles */
.pending-card {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pending-header {
    position: relative;
}

.status-timer {
    background: var(--main-gradient);
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
}

.status-timer h6 {
    color: #fff;
    margin: 0;
}

.timer {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.transaction-type {
    text-align: right;
}

.transaction-type .amount {
    font-size: 1.5rem;
    color: #ffd700;
}

.transaction-type .amount span {
    font-size: 1rem;
    margin-right: 5px;
    color: rgb(0 0 0 / 70%);
}

.alert-message {
    color: #ff4d4d;
    font-size: 0.9rem;
    margin: 15px 0;
    padding: 10px;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 8px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-cancel {
    background-color: #ffffff00;
    color: #c04df0 !important;
    border: 1px solid #c04df0 !important;
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-info {
    background: var(--main-gradient);
    color: #fff;
    flex: 1;
    padding: 12px;
    border: 1px solidd transparent;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #ad48f0;
    color: #fff !important;
}

.btn-info:hover {
    background: var(--main-gradient);
}

.transaction-details {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgb(135 135 135 / 10%);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #ad48f0;
}

.detail-value {
    color: #818181;
    text-align: right;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    #announcementpopup .modal-content {
        max-width: 100%;
    }
}

.language-select .btn {
    max-width: 120px;
}



.language-select .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.mobile-menu {
    padding: 15px;
}

.mobile-menu .btn-main {
    width: 100%;
}

.mobile-menu .language-select {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}

.language-select::before {
    display: none;
}

.head_bal a {
    cursor: pointer;
}