:root {
    --background-one: #090909;
    --background-two: #292929;
    --background-three: #1d1d1d;


    
    --white: #ffffff;
    
    /*Template Color*/
    --gold-color: #D9AC4F; 
    --gold-color-dark: #8f6208; 
    --gold-color-light: #F6E3A3; 
    --text-color: #292d2e;
    
    /*Brand Color*/
    --primary-color: #ff0000; 
    --primary-color-dark: #c30000; 
    --primary-color-light: #fd7c7c; 
    --text-color: #fff;
    
    /* Updated Color  */
    --primary-color: #5e4cd4; 
    --primary-color-dark: #3b22e2; 
    --primary-color-light: #5e4cd4; 
    --primary-color-light: #aa54e9; 
    --text-color: #fff;
    --background-one: #3d2d98;
    /* --background-one: #231d59; */
    --background-two: #4433a1;
    --background-three: #231d59;
    --purple-gradient: linear-gradient(to right, var(--primary-color-dark), var(--primary-color-light));
    --gold-gradient: linear-gradient(to bottom, #FAE59F 0%, #C4933F 100%);
    
    /* --background-one: #9195A3;
    --background-two: #FFFFFF;
    --background-three: #eceaea;
    --text-color: #292d2e; */

    --grey-gradient: linear-gradient(180deg,#A9AAB5 0%,#6F7381 100%);
    --green: #259268;
    --orange: #FF8021;
    --red: #F95959;
    --grey: #A7A9AF;
    --violet: #B659FE;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    scrollbar-color: rgba(144, 147, 153, 0.3) rgba(255, 255, 255, 0);
    scrollbar-width: thin;

}

html {
    --background-one: #090909;
    --background-two: #292929;
    --background-three: #1d1d1d;
    --white: #ffffff;
    scroll-behavior: smooth;
}

body { 
    background: #1f1f20; 
    display: flex;
    justify-content: center;
}

a {
    color: transparent;
    text-decoration: none;
    transition: all 0.5s ease-out;
}

/* constants  */
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.title {
    border-left: 6px solid var(--primary-color);
    color: var(--text-color);
    padding-left: 10px;
    margin-left: 10px;
    font-size:clamp(1.5rem, 2vw + 1rem, 3rem);
}
#theme-switch-btn {
    position: absolute; 
    top: 10px; 
    right: 10px; 
    color: var(--white); 
    background: linear-gradient(180deg,var(--primary-color-light) 0%,var(--primary-color) 100%); 
    padding: 10px; 
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 36px;
}
.container {
    max-width: 550px;
    width: 100%;
    background: var(--background-two);
    overflow: hidden;
}

.global-style-menu {
    background: var(--background-two);
    position: relative;
}

.global-style-nav {
    padding: 15px 5% 20px;
    color: var(--text-color);
    justify-content: flex-start;
    i, span {
        font-size: clamp(0.75em, 1em + 1rem, 1.5em);
    }
    span {
        margin-left: 29%;
    }
    
}
.long-btn {
    text-align: center;
    width: 90% !important;
    border-radius: 22px !important;
    font-size: 18px;
    font-weight: 500;
    color: var(--white) !important;
    margin: 20px auto;
}
.container-gb {
    border: 0.5px solid #888888;
    border-radius: 12px;
    margin-top: 20px;
    padding: 10px;
}
.point-gb {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    i {
        /* width: 10%; */
        color: var(--primary-color);
        font-size: 8px;
        margin-top: 5px;
    }
    p {
        width: 95%;
        color: var(--text-color);
        font-weight: 200;
        font-size: 14;;
    }
}

.history-card-gb {
    border-radius: 12px;
    background: var(--background-two);
    padding: 15px;
    margin-top: 20px;
}

.history-gb-card-title {
    justify-content: space-between;
    margin-top: 10px;
    i {
        color: #888888;
    }
    .grey-txt {
        color: #888888;
    }
    .btn {
        text-align: center;
        width: 100px;
        color: var(--gold-color-dark);
        background: var(--gold-gradient);
    }
    
}

.with-border {
    padding-bottom: 5px;
    margin-top: 0;
    border-bottom: 1px solid #888888;
}

.history-gb-btns {
    padding: 10px 0%;
    overflow-x: scroll;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    .cards-hs {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: auto;
        height: 50px;
        padding: 0 20px;
        border-radius: 12px;
        background-color: var(--background-two);
        img {
            width: 20px;
            height: 20px;
        }
        span {
            color: var(--text-color);
            font-size: 12px;
        }
    }
}
.active-hs {
    background: var(--gold-gradient);
}
.nodata-img {
    width: 75%;
    margin-top: 40px;
}
.nodata-txt {
    margin-top: 25px;
    color: var(--grey);
    text-align: center;
}
    


/* ############# Home Page Start ###################### */
/* NavBar Start  */
.nav {
    padding: 0px 5%;
    background: linear-gradient(to left, var(--primary-color-dark), var(--primary-color-light));
    flex-wrap: nowrap;
    justify-content: space-between !important;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 550px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
    z-index: 444;
}

.nav-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    img {
        width: 85%;
    }
    div {
        gap: 10px;
        flex-wrap: nowrap;
        color: var(--white);
        font-size: clamp(0.25em, 1em + 1rem, 0.85em);
        font-weight: bold;
        img {
            width: 20%;
        }
    }
}

.btn {
    gap: 5px;
    flex-wrap: nowrap;
    border: none;
    border-radius: 12px;
    color: var(--white);
    width: 150px;
    padding: 6px;
    margin-top: 3px;
    background: linear-gradient(180deg,var(--primary-color-light) 0%,var(--primary-color) 100%);
    img {
        width: 20px;
    }
}
/* NavBar End */

/* Main content  */
.main-content {
    padding: 150px .32rem;
    background: var(--background-three);
}

/* Banner Slider start */
#slidy-container { 
  overflow: hidden; 
  margin: 5px 5px;
  border-radius: 12px;
  width: 97%;
  }
/* Banner Slider End */

/* Notification Bar Start */
.notification-bar {
    flex-wrap: nowrap;
    padding: 15px;
    gap: 10px;
    position: relative;
    p {
        font-weight: bold;
        color: var(--text-color);
        line-height: 1.2;
        letter-spacing: 1px;
        height: 20px;
        overflow: hidden;
        text-transform: capitalize;
        text-align: justify;
        font-size: 14px;
        font-weight: 300;
        span {
            animation: notifyUP 2s linear infinite;
            position: relative;
        }
    }

    button {
        margin: 0;
    }
}
@keyframes notifyUP {
    from {
        top: 30px;
    } 
    to {
        top: -30px;
    }
}
.notification-bar > img {
    width: 8%;
}
/* Notification Bar End */

/* Menu Box Start  */
.menu-box1, .menu-box2 {
    margin: 30px auto 10px;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0 10px;
    div {
        flex-direction: column;
        width: 33.33%;
        height: calc(100% - 22px);
        background: var(--purple-gradient);
        border-radius: 12px;
        padding: 10px;
        position: relative;
        img {
            position: relative;
            top: -22px;
            width: 100%;
            height: auto;
            }
            span {
            position: absolute;
            left: 10px;
            bottom: 10px;
            font-weight: bold;
            color: var(--white);
            text-align: left;
        }
    }
}

.menu-box2 {
    gap: 0;
    margin: 0 auto;
    background: linear-gradient(180deg,var(--primary-color-light) 0%,var(--primary-color) 100%);
    border-radius: 12px;
    width: 96%;
    div {
        background: none;
        img {
            top: 0;
        }
        span {
            position: relative !important;
            left: 0;
            bottom: 0;
            text-align: center;
        }
    }
}

.menu-box3 {
    margin: 10px auto 30px;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 10px;
    div {
        width: 50%;
        background: linear-gradient(180deg,var(--primary-color-light) 0%,var(--primary-color) 100%);
        border-radius: 12px;
        padding: 10px;
        position: relative;
        img {
            width: 50%;
            height: auto;
        }
        span {
            font-weight: bold;
            color: var(--text-color);
            text-align: left;
        }
    }
}
/* Menu Box End */

/* Lottery Section Start  */
.lottery-container {
    padding: 10px 10px 30px;
}
.controls {
    margin: 10px auto;
    display: flex;
    gap: 10px;
    overflow-x: scroll !important;
    max-width: 550px;
    width: 100%;
    button {
        display: inline-block;
        font-weight: bold;
        border: none;
        border-radius: 12px;
        color: var(--white);
        padding: 10px;
        margin-top: 10px;
        background: linear-gradient(180deg,var(--primary-color-light) 0%,var(--primary-color) 100%);
    }
}

#mix-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    div {
        border-radius: 12px;
        overflow: hidden;
        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}
/* Lottery Section End */

/* Winning Information Start  */
.winning-container {
    padding: 30px  10px;
}
.winning-card {
    background: var(--purple-gradient);
    flex-wrap: nowrap;
    gap: 10px;
    overflow: hidden;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    div {
        width: 33.33%;
    }
}
.winner-profile {
    flex-wrap: nowrap;
    gap: 5px;
    img {
        border-radius: 50%;
        width: 35%;
    }
    span {
        color: var(--white);
    }
}
.winner-banner img{
    object-fit: cover;
    width: 100px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
}
.winner-content {
    text-align: center;
    flex-direction: column;
    h1 {
        color: var(--white);
        font-size: 20px;
    }
    span {
        color: var(--orange);
    }
}
/* Winning Information End  */

/* Today's Earning Chart Start  */
.today-chart-container {
    padding: 0 10px;
}
.stage-container {
    position: relative;
    margin-top: 60px;
    gap: 20px;
    > img {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1;
    }
}
.top3 {
    flex-wrap: nowrap;
    position: relative;
    z-index: 22;
}

.top {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        .crown {
            width: 50px;
            position: absolute;
            top: -30px;
            left: 0;
        }
        .profile {
            width: 70%;
            border-radius: 50%;
        }
        .label {
            width: 70%;
        }
    }
    span {
        margin-top: 10px;
        color: var(--primary-color-dark);
        font-weight: 600;
    }
    button {
        border: none;
        border-radius: 12px;
        color: var(--black);
        padding: 10px;
        font-size: 8px;
        background: var(--gold-gradient);
    }
}
.place1 {
    position: relative;
    top: -40px;
}

.earning-card {
    background: linear-gradient(0deg, var(--background-one) , var(--background-two));
    border-radius: 8px;
    padding: 15px;
    flex-wrap: nowrap;
    gap: 10px;
    position: relative;
    margin-bottom: 10px;
    justify-content: space-evenly;
    span {
        color: var(--primary-color-light);
        font-weight: bold;
    }
    img {
        width: 15%;
        border-radius: 50%;
    }
    p {
        color: var(--text-color);
    }
    button {
        border: none;
        border-radius: 12px;
        color: var(--gold-color-dark);
        padding: 10px;
        font-size: 12px;
        background: var(--gold-gradient);
    }
}
/* Today's Earning Chart End */

/* Bottom NavBar Start  */
.bottomNav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 550px;
    background: linear-gradient(to top, var(--primary-color-dark), var(--primary-color-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
    z-index: 444;
    div {
        cursor: pointer;
        flex-direction: column;
        width: 20%;
        img {
            width: 50%;
        }
        
    }
}

.icon-lift {
    img {
        position: relative;
        top: -15px;
        scale: 2.5;
    }
}
/* Bottom NavBar End  */

/* ############# Home Page Stop ###################### */




/* ############# Login/Register/Reset Page Stop ###################### */
.topNav {
    background: linear-gradient(90deg, #6F7381 0%, #A9AAB5 100%);
    padding: 10px 5% 50px;
}
.topNav-menu {
    div {
        width: 33.33%;
        color: var(--white);
        i {
            font-size: clamp(0.75em, 1em + 1rem, 1.5em);
        }
    }
}
.topNav-logo img {
    width: 100%;
}

.topNav-iconText {
    gap: 5px;
    justify-content: flex-end;
    flex-wrap: nowrap;
    color: var(--white);
    font-size: clamp(0.5em, 1em + 1rem, 1em);
    font-weight: bold;
    img {
        width: 20%;
    }
}

.topNav-desc {
    position: relative;
    padding: 10px 5%;
    h1 {
        color: var(--white);
        font-size: clamp(0.75em, 1em + 1rem, 1.5em);
        margin-bottom: 10px;
    }
    p {
        color: var(--white);
        line-height: 1.2;
        letter-spacing: 1px;
        overflow: hidden;
        font-size: 12px;
        text-align: left;
    }
}


/* main login page start*/
.auth-content {
    padding: 10px 5%;
    min-height: 90vh;
}

.loginform {
    padding: 10px 0;
}

.login-options {
    padding: 10px 0 0;
    justify-content: space-evenly;
    border-bottom: 1px solid var(--text-color);
    img {
        width: 30px;
        height: 30px;
    }
    div {
        width: 50%;
        padding-bottom: 20px;
        flex-direction: column;
        p {
            margin-top: 10px;
            color: #888888;
            text-align: center;
        }
    }
}

.loginForm-main {
    padding: 15px 0;
    input, select {
        padding: 14.5px;
        border-radius: 12px;
        background: var(--background-two);
        border: none;
        outline: none;
        color: var(--text-color);
    }
}

.select-form {
    padding: 0px;
    input, select {
        padding: 14.5px;
        border-radius: 12px;
        background: var(--background-two);
        border: none;
        outline: none;
        color: var(--text-color);
        width: 95%;
    }
}

.agency-hero-1{
    background: linear-gradient(180deg,var(--primary-color) 0%, var(--primary-color-light) 50%, var(--primary-color-light) 100%);
    padding: 14px 0 200px;
    flex-direction: column;
    gap: 10px;
    p {
        font-size: 25px;
        color: var(--white);
    }
    span {
        background: var(--gold-gradient);
        padding: 5px 15px;
        border-radius: 12px;
        color: var(--gold-color-dark);
    }
    div {
        font-size: 14;
        color: var(--white);
        font-weight: 100;
        text-align: center;
        width: 100%;
    }
}

.phoneLogin {
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
    span {
        color: var(--text-color);
        img {
            width: 25px;
            height: 25px;
        }
    }
    div {
        margin-top: 10px;
        gap: 10px;
        align-items: flex-start;
        width: 100%;
    }
    select {
        width: 25%;
    }
    input {
        width: 70%;
    }
}

.inviteCode, 
.emailLogin,
.password-field {
    padding: 10px 0;
    span {
        justify-content: flex-start;
        gap: 5px;
        img {
            width: 25px;
            height: 25px;
        }
        p {
            color: var(--text-color);
        }
    }
    div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 12px;
        background: var(--background-two);
        padding: 14.5px;
        margin-top: 10px;
        img {
            width: 20px;
            height: 20px;
        }
        input {
            padding: 0 10px;
            width: 100%;
            height: 100%;
        }
    }
}

.emailLogin {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    input, div {
        width: 100%;
    }
}

.emailForget{
    
    flex-direction: column;
    align-items: flex-start;
    input, div {
        width: 100%;
    }
}

.remember-me {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #757575; 
    margin-top: 10px;
}

.remember-me input[type="checkbox"] {
    display: none; 
}

.remember-me label {
    position: relative;
    padding-left: 30px; 
    cursor: pointer;
}

.checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px; 
    height: 20px;
    border-radius: 50%;
    border: 1px solid #757575; 
    background-color: transparent; 
}


.remember-me input[type="checkbox"]:checked + label .checkbox-custom {
    background-color: var(--primary-color, #007bff); 
    border-color: var(--primary-color, #007bff);
}


.remember-me input[type="checkbox"]:checked + label .checkbox-custom::after {
    content: "\f00c"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 14px; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.auth-button-section {
    margin-top: 15px;
    flex-direction: column;
    gap: 15px;
    .btn {
        text-align: center;
        width: 90%;
        border-radius: 22px;
        font-size: 22px;
        font-weight: bold;
        color: var(--gold-color-dark);
        background: var(--gold-gradient);
    }
    .btn-border {
        background: transparent;
        color: var(--gold-color);
        border: 1px solid var(--gold-color);
    }
}

.auth-support-section {
    justify-content: space-evenly;
    margin-top: 15px;
    a {
        padding: 10px 0 0;
        flex-direction: column;
        img {
            width: 40px;
            height: 40px;
        }
        p {
            margin-top: 10px;
            color: #888888;
        }
    }
}

.inviteCode {
    flex-direction: column;
    align-items: flex-start;
    input, div {
        width: 100%;
    }
}
/* main login/reset/register page end  */

/* ############# Login/Reset/Register Page Stop ###################### */

/* ############# Customer Service Page Start ###################### */

.customer-service-menu {
    min-height: 100vh;
    background: var(--background-two);
    position: relative;
    img {
        width: 100%;
        background: linear-gradient(180deg,var(--primary-color-light) 0%,var(--primary-color) 100%); 
    }
}

.customer-service-nav {
    padding: 20px 5%;
    color: var(--text-color);
    justify-content: flex-start;
    i, span {
        font-size: clamp(0.75em, 1em + 1rem, 1.5em);
    }
    span {
        margin-left: 40px;
    }
    
}

.customer-contact {
    position: relative;
    top: -50px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: var(--background-two);
    padding: 30px 10px 50px;
}
.customer-contact div {
    padding: 15px 10px;
    border-radius: 12px;
    background-color: var(--background-three);
    margin-bottom: 10px;
    color: var(--text-color);
    justify-content: space-around;
    img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
    }
    p {
        font-size: clamp(0.5em, 1em + 1rem, 1em);
    }
    i {
        font-size: clamp(0.75em, 1em + 1rem, 1.5em);
    }
}
/* ############# Customer Service Page Stop ###################### */



/* ############# Activity Page Start ###################### */
.activityNav {
    background: var(--purple-gradient);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 333;
    width: 100%;
    max-width: 550px;
    padding: 15px 5%;
    img {
        width: 60px;
        height: auto;
    }

}
.activity-desc {
    padding: 90px 5% 20px;
    background: var(--purple-gradient);
    p, h1 {
        color: var(--white);
    }
}

.activity-content {
    min-height: 100vh;
    background-color: var(--background-three);
    padding: 20px 5%;
}

.activity-action-btns {
    justify-content: space-evenly;
    a {
        width: 33.33%;
        flex-direction: column;
        gap: 10px;
        img {
            width: 40px;
            height: 40px;
        }
        p {
            color: var(--text-color);
            text-align: center;
        }
    }
}

.gift-attandance-bonus-sec {
    gap: 10px;
    margin-top: 15px;
    a {
        width: 45%;
        border-radius: 12px;
        overflow: hidden;
        flex: 1;
        box-sizing: border-box;
        img {
            height: 100px;
            width: 100%;
        }
    }
}
.g-a-bonus-desc {
    padding-top: 10px;
    h1 {
        font-size: 15px;
        color: var(--gold-color-light);
    }
    p {
        margin-top: 10px;
        font-size: 12px;
        color: #c4c3c3;
    }
}

.activity-banners {
    padding: 20px 0;
    overflow: hidden;
    div {
        border-radius: 20px;
        background-color: var(--background-two);
        padding-bottom: 10px;
        margin-bottom: 15px;
        img {
            width: 100%;
            height: 150px;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }
        h1 {
            color: var(--text-color);
            text-align: left;
            margin: 10px;
            font-size:clamp(1rem, 1vw + 1rem, 1.75rem);
        }
    }
}
/* ############# Activity Page Stop ###################### */


/* ############# Invitation Bonus Page Start ###################### */
.invitation-bonus-content {
    background-color: var(--background-three);
    min-height: 100vh;
    padding: 0;
}
.invitation-hero {
    padding: 10px 5% 100px;
    flex-wrap: nowrap;
    gap: 10px;
    background: var(--primary-color);
    div {
        width: 30%;
        flex-direction: column;
        img {
            width: 90%;
        }
        h1 {
            font-size:clamp(1rem, 1vw + 1rem, 1.75rem);
            color: var(--white);
        }
        p {
            text-align: left;
            color: #bdbdbd;
            font-size: 13px;
        }
        h2 {
            font-size:clamp(0.5rem, 1vw + 1rem, 1rem);
            color: #bdbdbd;
            margin-top: 10px;
        }
    }
}
.c-hero-content {
    width: 60% !important ;
    align-items: flex-start;
}

.invitation-btns {
    background: var(--gold-gradient);
    margin: 0 auto;
    width: 95%;
    border-radius: 18px;
    position: relative;
    top: -60px;
    padding: 20px 0;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    a {
        flex-direction: column;
        img {
            width: 60px;
            height: 60px;
        }
        p {
            color: var(--gold-color-dark);
        }
    }
}

.invitation-bonus-cards {
    
}

.bonus-card {
    width: 95%;
    margin: 10px auto 20px;
    background: var(--background-two);
    border-radius: 18px;
    padding-bottom: 10px;
    overflow: hidden;
}
.i-b-sec1 {
    justify-content: space-between;
    border-bottom: 1px solid #888888;
    div {
        padding: 10px 5px;
        color: var(--gold-color-dark);
        justify-content: space-around;
        width: 40%;
        background: var(--gold-gradient);
        clip-path: polygon(0 0, 89% 0, 100% 100%, 0 100%);
        p span {
            background: var(--gold-color-dark);
            color: var(--white);
            border-radius: 50%;
            padding: 3px 8px;
        }
    }
    >p {
        color: var(--text-color);
        padding-right: 30px;
        font-weight: bold;
    }
}
.bonus-xmark {
    color: var(--red);
}

.i-b-sec2 {
    padding: 10px 15px;
    flex-direction: column;
    gap: 10px;
    div {
        background-color: var(--background-three);
        border-radius: 8px;
        padding: 12px;
        width: 100%;
        justify-content: space-around;
        p {
            color: var(--text-color);
        }
    }
}

.i-b-sec3-line {
    border: 0.5px dashed #888888;
    margin: 10px auto;
    position: relative;
    width: 90%;
    padding: 0 .13333rem;
}

.i-b-sec3-line::before {
    content: "";
    display: block;
    border-radius: 50%;
    background-color: var(--background-three);
    position: absolute;
    width: 25px;
    height: 25px;
    top: -10px;
    left: -8%;
}

.i-b-sec3-line::after {
    content: "";
    display: block;
    border-radius: 50%;
    background-color: var(--background-three);
    position: absolute;
    width: 25px;
    height: 25px;
    top: -10px;
    right: -8%;
}

.i-b-sec4 {
    padding: 10px;
    .count {
        width: 100%;
        margin: 10px 0;
        justify-content: space-evenly;
        div {
            p {
                text-align: center;
                color: var(--text-color);
            }
        }
    }
    >a {
        text-align: center;
        width: 90%;
        border-radius: 22px;
        font-size: 22px;
        font-weight: bold;
        color: var(--white);
        background: var(--grey-gradient);
    }
}
/* ############# Invitation Bonus Page Stop ###################### */




/* ############# Profile Page Start ###################### */

.profile-content {
    background: var(--background-three);
    padding: 0;
    min-height: 100vh;
}

.profile-info-wrapper {
    background: linear-gradient(90deg,var(--primary-color) 0%, var(--primary-color-light) 100%);
    padding: 50px 5% 120px;
    border-bottom-right-radius: 52px;
    border-bottom-left-radius: 52px;
    position: relative;
}
.profile-info {
    flex-wrap: nowrap;
    gap: 10px;
    img {
        border-radius: 50%;
        width: 30%;
    }
    div {
        flex-direction: column;
        align-items: flex-start;

        span {
            color: var(--white);
            font-size: 18px;
            img {
                width: 25%;
            }
        }
        .uid {
            background: var(--primary-color);
            border-radius: 12px;
            padding: 10px;
            color: var(--white);
            font-size: 14px;
            margin: 8px 0;
        }
        p {
            font-size: 12px;
        }
    }
}

.profile-action-section {
    width: 95%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    margin-top: -100px;
    background: var(--background-two);
}

.total-balance {
    p {
        color: var(--text-color);
        margin-bottom: 10px;
    }
    span {
        color: var(--text-color);
        font-size: 18px;
        font-weight: 600;
        i {
            color: #888888;
        }
    }
}

.profile-balance-btns {
    flex-wrap: nowrap;
    justify-content: space-evenly;
    gap: 5px;
    margin-top: 20px;
    a {
        flex-direction: column;
        align-items: center ;
        img {
            width: 40px;
            height: 40px;
        }
        p {
            color: var(--text-color); 
            margin-top: 10px;
        }
    }
}

.profile-history-section {
    padding: 10px 2%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0px;
}

.history-card {
    background-color: var(--background-two);
    padding: 8px;
    border-radius: 8px;
    flex-wrap: nowrap;
    gap: 10px;
    img {
        width: 40px;
        height: 40px;
    }
    div {
        p {
            font-size: 14px;
            color: var(--text-color);
        }
        span {
            font-size: clamp(10px, 2vw, 12px);
            color: #888888;
            /* font-weight: lighter; */
            line-height: 1.1;
        }
    }
}

.agency-settings,
.profile-settings {
    flex-direction: column;
    width: 95%;
    margin: -9px auto 10px;
    border-radius: 12px;
    background: var(--background-two);
    a {
        width: 100%;
        justify-content: space-between;
        padding: 10px;
        border-bottom: 1px solid #928dbf;
        div {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        img {
            width: 40px; 
            height: 40px;
        }
        p {
            color: var(--text-color);
        }
        span {
            color: var(--text-color);
        }
        i {
            color: var(--text-color);
        }
    }
}


.profile-services-section {
    width: 95%;
    margin: 20px auto 0;
    padding: 20px;
    border-radius: 12px;
    background: var(--background-two);
}

.services-title {
    p {
        color: var(--text-color);
        margin-bottom: 10px;
    }
}

.profile-services-btns {
    /* flex-wrap: nowrap; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-self: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
    a {
        flex-direction: column;
        align-items: center ;
        img {
            width: 30px;
            height: 30px;
        }
        p {
            color: var(--text-color); 
            margin-top: 10px;
            font-size: 14px;
            text-align: center;
        }
    }
}

.profile-log-button {
    text-align: center;
    width: 90%;
    border-radius: 22px;
    font-size: 22px;
    font-weight: 100;
    background: transparent;
    color: var(--text-color);
    border: 0.5px solid var(--primary-color);
    padding: 10px;
    margin: 10px auto;
    gap: 10px;
    img {
        width: 30px;
        height: 30px;
    }
}
/* ############# Profile Page Stop ###################### */



/* ############# Wallet Page Start ###################### */

.wallet-nav {
    background: transparent;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 540px;
}
.wallet-content {
    padding: 0;
    min-height: 100vh;
    background: var(--background-three);
}

.wallet-hero {
    background: linear-gradient(0deg,var(--primary-color) 0%, var(--primary-color-light) 50%, var(--primary-color-light) 100%);
    padding: 75px 0 75px;
    flex-direction: column;
    gap: 10px;
    img {
        width: 75px;
        height: 75px;
    }
    div {
        font-size: 25px;
        color: var(--white);
    }
}

.wallet-sec2 {
    background: var(--background-two);
    width: 95%;
    margin: 0 auto;
    position: relative;
    margin-top: -30px;
    border-radius: 12px;
    padding: 20px 0;
    text-align: center;
    .btn {
        text-align: center;
        width: 90%;
        border-radius: 22px;
        font-size: 18px;
        font-weight: 500;
        color: var(--gold-color-dark);
        background: var(--gold-gradient);
        margin: 20px auto;
    }
}

.two-wallets {
    justify-content: space-evenly;
}
.wallet-1, .wallet-2 {
    text-align: center;
    p {
        font-size: 22px;
        font-weight: 400;
        margin-top: 10px;
        color: var(--primary-color-light);
    }
    span {
        color: var(--text-color);
    }
}

.outer {
    padding: 15px;
    border-radius: 50%;
    background: linear-gradient(90deg,var(--primary-color) 0%, var(--primary-color-light) 100%);
}
.inner {
    padding: 10px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: var(--background-three);
    font-size: 25px;
    color: var(--text-color);
}
.wallet-2 .outer {
    background: var(--grey-gradient);
}

.wallet-btns {
    p {
        font-size: 16px;
        
    }
}

.wallet-cards-wrap {
    padding: 20px 5%;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
}

.wallet-card {
    width: 100%;
    height: 100px;
    border-radius: 12px;
    background: var(--grey-gradient);
    flex-direction: column;
    position: relative;
    z-index: 23;
    color: var(--text-color);
    img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 22;
        opacity: 0.3;
    }
}
.colored-card {
    background: var(--gold-gradient);
    color: var(--gold-color-dark);
}


/* ############# Wallet Page Stop ###################### */




/* ############# Acency Page Start ###################### */
.agency-content {
    padding: 0;
    min-height: 100vh;
    background: var(--background-three);
    text-align: center;
    .long-btn {
        background: var(--gold-gradient);
        color: var(--gold-color-dark) !important;
    }
}

.agency-hero {
    background: linear-gradient(180deg,var(--primary-color) 0%, var(--primary-color-light) 50%, var(--primary-color-light) 100%);
    padding: 14px 0 200px;
    flex-direction: column;
    gap: 10px;
    p {
        font-size: 25px;
        color: var(--white);
    }
    span {
        background: var(--gold-gradient);
        padding: 5px 15px;
        border-radius: 12px;
        color: var(--gold-color-dark);
    }
    div {
        font-size: 14;
        color: var(--white);
        font-weight: 100;
        text-align: center;
        width: 80%;
    }
}

.agency-sec2 {
    width: 90%;
    margin: 0 auto;
    background: var(--background-two);
    position: relative;
    margin-top: -180px;
    border-radius: 12px;
    overflow: hidden;
}

.table-heading {
    flex-wrap: nowrap;
    background: var(--gold-gradient);
    padding: 15px 0;
    border-bottom: 1px solid var(--text-color);
    div {
        text-align: center;
        width: 50%;
        color: var(--gold-color-dark);
    }
}

.table-data {
    flex-wrap: nowrap;
    padding: 8px 0;
    background: var(--background-two);
    /* border-bottom: 1px solid var(--text-color); */
    div {
        text-align: center;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    p {
        font-size: 14px;
        color: #888888;
        width: 75%;
    }
    span {
        font-size: 18px;
        color: var(--text-color)
    }
}

.agency-settings {
    background: transparent;
    border-radius: 0;

    a {
        border-radius: 12px;
        margin-bottom: 15px;
        background: var(--background-two);
    }
}

.promotion-data {
    padding: 20px;
    width: 95%;
    margin: 0 auto;
    border-radius: 12px;
    background: var(--background-two);
}

.promotion-content {
    width: 100%;
    justify-content: flex-start;
    img {
        width: 30px;
        height: 30px;
    }
    p {
        color: var(--text-color);
        font-size: 20px;
        margin-left: 10px;
    }
}
/* ############# Acency Page Stop ###################### */


/* ############# Deposit Page Start ###################### */

.Deposit-content {
    background: var(--background-three);
    padding: 10px 5%;
    min-height: 100vh;
}

.card-balance {
    width: 100%;
    position: relative;
    img {
        width: 100%;
    }
    .card-bal {
        position: absolute;
        top: 10%;
        left: 10%;
        p {
            margin-bottom: 12px;
            color: var(--white);
        }
        span {
            font-size: 25px;
        }
    }
    #cip {
        position: absolute;
        bottom: 10%;
        left: 10%;
        width: 20px;
        height: 20px;
    }
}

.transaction-cards-wrap {
    margin-top: 20px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
}

.transaction-card {
    width: 100%;
    height: 100px;
    border-radius: 12px;
    background: var(--background-two);
    flex-direction: column;
    position: relative;
    z-index: 23;
    color: var(--text-color);
    img {
        width: 50%;
        height: 50px;
    }
    span {
        font-size: 12px;
        margin-top: 10px;
    }
}
.colored-transaction-card {
    background: var(--gold-gradient);
    color: var(--gold-color-dark);
}

.title-bg-content-section {
    background: var(--background-two);
    border-radius: 12px;
    padding: 10px;
    margin-top: 20px;
}

.channel-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.deposit-channels {
    background-color: var(--background-three);
    padding: 20px;
    border-radius: 10px;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.deposit-channels.active-dep {
    background: var(--gold-gradient);
    color: var(--gold-color-dark);
}
.deposit-channels h3 {
    margin-top: 0;
    font-weight: 400;
}
.deposit-channels p {
    margin-bottom: 0;
    font-weight: 200;
}


.deposit-channels-two {
    background-color: var(--background-three);
    padding: 20px;
    border-radius: 10px;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.deposit-channels-two.active-dep {
    background: var(--gold-gradient);
    color: var(--gold-color-dark);
}
.deposit-channels-two h3 {
    margin-top: 0;
    font-weight: 400;
}
.deposit-channels-two p {
    margin-bottom: 0;
    font-weight: 200;
}


.deposit-amt-cc {
    text-align: center;
}
.container-dp-amt {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.card-dp-amt {
    border-radius: 8px;
    justify-content: center;
    background-color: var(--background-three);
    border: 1px solid var(--text-color);
    height: 60px;
    color: var(--text-color);
}

.input-container-dp-amt {
    background: var(--background-three);
    margin-top: 20px;
    justify-content: space-between;
    padding: 20px;
    input{
        background-color: var(--background-three);
        border: none;
        outline: none;
        color: var(--text-color);
        width: 100%;
        padding-left: 10px;
    }
    span{
        color: var(--primary-color);
        font-size: 22px;
        border-right: 1px solid #888888;
        padding-right: 10px;
    }
    i {
        font-size: 22px;
        color: var(--text-color);
    }
}

.input-container-dp-amt-otp {
    background: var(--background-three);
    margin-top: 20px;
    justify-content: space-between;
    padding: 20px;
    input{
        background-color: var(--background-three);
        border: none;
        outline: none;
        color: var(--text-color);
        width: 90%;
        padding-left: 10px;
    }
    span{
        color: var(--primary-color);
        font-size: 12px;
        border-left: 1px solid #888888;
        padding-left: 10px;
    }
    i{
        font-size: 22px;
        color: var(--text-color);
    }
}

.button-dp-amt {
    background: var(--grey-gradient);
    margin-top: 0;
}

.active-dp-amt {
    background: var(--gold-gradient);
    color: var(--gold-color-dark);
    
}


.recharge-instructions {
    width: 100%;
    margin: 20px 0;
    border-radius: 12px;
}




/* ############# Deposit Page Stop ###################### */



/* ############# Withdrawal Page Start ###################### */
.withdraw-content {
    background: var(--background-three);
    padding: 10px 5%;
    min-height: 90vh;
     text-align: center;
}
.bank-details {
    margin-top: 20px;
    background-color: var(--background-two);
    border-radius: 12px;
    justify-content: space-between;
    padding: 20px;
    div {
        flex-direction: column;
        border-right: 1px solid var(--text-color);
        padding-right: 10px;
        img {
            width: 30px;
            height: 30px;
        }
        span {
            color: var(--text-color);
            font-size: 12px;
        }
    }
    p, i {
        color: var(--text-color);
        font-size: clamp(14px, 7vw, 18px)
    }
}

.withdrawal-sec-card {
    margin-top: 20px;
    background: var(--background-two);
    border-radius: 12px;
    padding-top: 5px;
    padding-bottom: 20px;
    text-align: center;
}
.withdrawal-amt-details {
    width: 90%;
    margin: 10px auto;
    div {
        justify-content: space-between;
        p {
            font-size: 14px;
            color: #888888;
            span {
                color: var(--primary-color);
            }
        }
        span {
            color: var(--primary-color);
        }
    }
    
}

.withdrawal-history {
    margin-top: 20px;
}

.btn-border-wt{
    background: transparent;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    font-weight: 200;
}
/* ############# Withdrawal Page Stop ###################### */



/* ############# Game History Page Start ###################### */
.game-history-content {
    background: var(--background-three);
    padding: 10px 3%;
    min-height: 90vh;
    text-align: center;
}

/* ############# Game History Page Stop ###################### */


/* ############# Transaction History Page Start ###################### */
.transaction-history-content {
    background: var(--background-three);
    padding: 10px 5%;
    min-height: 90vh;
    text-align: center;
}

.transaction-card-wrap {
    background-color: var(--background-two);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.transaction-heading {
    font-size: 18px;
    color: var(--gold-color-dark);
    background: var(--gold-gradient);
    padding: 10px;
    text-align: left;
}

.transactionitems {
    padding: 10px;
    div {
        justify-content: space-between;
        background-color: var(--background-three);
        padding: 10px;
        margin: 10px 0;
        p {
            color: #888888;
        }
        span {
            color: var(--text-color);
        }
    }
    .blank {
        padding: 30px 0;
    }
}
/* ############# Transaction History Page Stop ###################### */



/* ############# Notification Page Start ###################### */
.notification-content {
    background: var(--background-three);
    padding: 10px 6%;
    min-height: 90vh;
    text-align: center;
}

.notification-card {
    margin-top: 20px;
    padding: 20px 0;
    border-bottom: 0.5px solid #888888;
    .sec-1 {
        justify-content: space-between;
        color: var(--text-color);
        i {
            color: var(--primary-color);
        }
        span {
            font-size: 18px;
            gap: 10px;
            i {
                font-size: 25px;
            }
        }
    }
    .sec-2 {
        color: #888888;
        text-align: left;
        font-size: 12px;
        margin: 7px 0 10px;
    }
    .sec-3 {
        color: #888888;
        font-size: 14px;
        text-align: left;
    }
}
/* ############# Notification Page Stop ###################### */


/* ############# Gift Page Start ###################### */
.gift-validation-sec {
    width: 95%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    background: var(--background-three);
    p {
        font-size: 16px;
        color: #888888;
    }
    span {
        margin-top: 20px;
        color: var(--text-color);
    }
    input {
        width: 100%;
        background: var(--background-two);
        border: none;
        border-radius: 22px;
        height: 50px;
        padding: 20px;
        color: var(--text-color);
        margin: 15px 0;
    }
    button {
        width: 100% !important;
        color: var(--gold-color-dark) !important;
        background: var(--gold-gradient);
    }
}

.gift-history {
    background: var(--background-three);
    border-radius: 12px;
    width: 95%;
    margin: 20px auto;
    padding: 20px;
    img {
        background: none;
    }
}
/* ############# Gift Page Stop ###################### */
.pymtText{
    color: white; 
    margin:20px 0px;
}

.pymtDiv{
    text-align:center;
    padding-top:30px
}

.nav-left{
    padding-top: 10px;
    padding-bottom: 10px;
}

.with-list{
    line-height: 18px;
    font-size: 13px;
    text-align: left;
    margin: 20px;
    color: #c2bfb9;
    list-style-type: disc;
}

.with-list-div{
    border: 3px solid #747171;
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 15px;
    padding: 5px 10px;
}

.with-list li{
    margin-bottom: 7px;
}

.head-text{
    padding-top: 16px;
    color: var(--text-color);
    font-size: 20px;
}

.switch-btn{
    margin-left: 37px;
}

.nav-bar{
    display: flex;
    justify-content: space-between;
}

.alert-msg{
    position: fixed;
    top: 40%;
    /* bottom: 37%; */
    left: 50%;
    z-index: 343;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0px;
    max-width: 95%;
    border-radius: 20px;
    transform: translateX(-50%);
  
    display: inline-block;
    
}

.alert-content{
    color: #F6E3A3;
    text-align: center;
    margin: 25px 10px;
    font-size: 18px;
}

.uid-text{
    font-size: 18px;
    color: white;
}

.agency-div{
    width:95%; 
    padding:25px 0px
}

.top-right-btn{
    position: absolute; 
    top: 10px; 
    right: 10px; 
    color: var(--white); 
    background: linear-gradient(180deg,var(--primary-color-light) 0%,var(--primary-color) 100%); 
    padding: 10px; 
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 36px;
    padding: 8px;
}

.table-data-text{
    padding: 12px;
    text-align: left;
    color: #d2cdcd;
    font-size: 13px;
    line-height: 20px;
}

.withdrawal-div
{
    justify-content: space-between;
    display: flex;
    margin: 10px 0px;
}

.withdrawal-span
{
    color: #c2bfb9;
    margin: 9px 17px;
    font-size: 13px;
}

.all-btn
{
    padding: 5px;
    width: 65px;
    margin-right: 23px;
}

.subOrdDiv{
    border-bottom: 2px solid #757287;
    padding: 14px 4px;
    font-size: 14px;
}

.result-btn{
    margin-right: 5px;
    font-size: 12px;
    background-color: #259268;
    color: white;
    padding: 5px;
    border-radius: 5px;
}


