@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --color-primary: #cc171d;
    --color-gold: #FFB300;
    --color-gold-dark: #e09000;
    --color-gold-glow: rgba(255, 179, 0, 0.35);
    --color-bg-base: #0a0a0a;
    --color-bg-card: #141414;
    --color-bg-elevated: #111111;
    --color-bg-deep: #0d0d0d;
    --color-bg-input: #484848;
    --color-border: rgba(255, 179, 0, 0.15);
    --color-border-subtle: rgba(255, 179, 0, 0.25);
    --color-text-main: #f0f0f5;
    --color-text-muted: #cccccc;
    --font-main: "Poppins", sans-serif;
}

a {
    text-decoration: none;
    all: unset;
    cursor: pointer;
}
a:focus {
    outline: none;
}
*:focus {
    outline: none;
}
button:active,
button:focus,
.btn:active,
.btn:focus {
    box-shadow: none !important;
    outline: none !important;
}
img {
    display: inline-block;
    height: auto;
    max-width: 100%;
}
body {
    overflow-x: hidden !important;
    color: var(--color-text-main);
    background: var(--color-bg-base);
    font-family: var(--font-main);
}
button {
    border: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0 !important;
}

/* ================ light dark theme ================ */

/* LIGHT THEME */

body.light-mode,
.light-mode .sidebar,
.light-mode .header {
    background: #c5c4c4;
    color: black;
}
.light-mode .dashcard-box,
.light-mode .rewards-datefilter .date-input,
.light-mode .modal-content {
    background: #a2a2a2;
    color: #000000;
}
.light-mode .navbar-nav .nav-link,
.light-mode .inbox-mainbox p,
.light-mode .dash-profiletext p,
.light-mode .reward-totalbonus p {
    color: #000;
}
.light-mode .rewards-datefilter label,
.light-mode .rewards-datefilter small {
    color: #4a3030;
}
.light-mode .withdraw-subbtn,
.light-mode .addbank-detailbtn,
.light-mode .tab-btn.active,
.light-mode .date-input,
.light-mode .inbox-item.active,
.light-mode .withinfo-box {
    background: #757575;
}
.light-mode .withdraw-input,
.light-mode .select-wrapper select {
    background: #8b8b8b;
}

/* ================ custom ================ */

.navbar-nav .nav-link,
.inbox-mainbox p,
.dash-profiletext p,
.inbox-item h6,
.reward-totalbonus p,
.reward-activityround,
.rewardacti-viewlink,
.withdraw-subbtn {
    font-family: var(--font-main);
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
}
.dashcard-box p,
.referral-btn,
.otp-btn,
.withinfo-box p,
.withdraw-input,
.withdraw-input::placeholder,
.select-wrapper select {
    font-weight: 300;
    font-size: 20px;
    font-family: var(--font-main);
    color: #ffffff;
}

/* ================ login ================ */

.loginmain-backimg{background: url("../images/movin_bg.png") no-repeat center; background-size: cover;}
.login-container {
    background: #191919;
   
    height: 100vh;
    padding: 0px 50px 0px 50px; display: flex; align-items: center;
}
.logininput {
    background: #ffffff;
    box-shadow: 1px 4px 6px 0px #0000005a;
    border: none;
    padding: 15px;
}
.logininput,
.logininput::placeholder {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 20px;
    color: var(--color-bg-input);
}
.logininput:disabled {
    background: #d6d6d6;
    color: #888888;
    cursor: not-allowed;
    box-shadow: none;
}
.forgetpass-link {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    text-decoration: underline;
}
.loginbtn-design {
    background: var(--color-primary);
    padding: 20px;
}
.register-link a,
.loginbtn-design {
    font-family: var(--font-main);
    font-weight: 400;
    color: #ffffff;
}

/* ================ register ================ */

.recaptcha-box {
    background: #fafafa;
    border-radius: 3px;
    padding: 8px 15px;
    cursor: pointer;
}
.recaptcha-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-bg-input);
    font-weight: 500;
    font-family: var(--font-main);
}
#robotCheck {
    display: none;
}
.custom-check {
    width: 26px;
    height: 26px;
    border: 2px solid #c1c1c1;
    background: white;
    position: relative;
}
.custom-check::after {
    content: "✔";
    color: #00a860;
    font-size: 25px;
    position: absolute;
    left: 2px;
    top: -7px;
    opacity: 0;
    transition: 0.2s;
}
#robotCheck:checked + .custom-check::after {
    opacity: 1;
}
.recaptcha-right p {
    color: #a6a6a6;
    font-family: var(--font-main);
    font-size: 7px;
}
.recaptcha-logo {
    width: 48px;
    height: 46px;
}

.terms-check {
    font-family: var(--font-main);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 300;
}
.terms-check input {
    display: none;
}
.custom-box {
    width: 24px;
    height: 24px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.custom-box::after {
    content: "";
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0;
}
.terms-check input:checked + .custom-box::after {
    opacity: 1;
}

/* ================ sidebar header ================ */

.header {
    background: var(--color-bg-elevated);
    padding: 20px 30px;
    border-bottom: 1px solid var(--color-border);
}
.offcanvas-lg.show,
.offcanvas-end.show,
.offcanvas-lg.offcanvas-end {
    width: 300px;
    background: var(--color-bg-elevated);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--color-border);
}
.sidebar {
    width: 300px;
    height: 100vh;
    background: var(--color-bg-elevated);
    padding: 60px 30px;
    border-right: 1px solid var(--color-border);
    position: fixed;
    left: 0;
    top: 0;
}
.bottom-sidebar {
    display: none !important;
}
.inbox-roundbtn {
    width: 40px;
    height: 40px;
    background: var(--color-bg-input);
    box-shadow: 1px 2px 3px 0px #0000005a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link.dashboard.active {
    color: var(--color-gold) !important;
}
.nav-link.rewards.active {
    color: #ff7302 !important;
}
.nav-link.community.active {
    color: #f7f500 !important;
}
.nav-link.wallet.active {
    color: #00a23f !important;
}

.sidebar ul li:hover {
    background: none !important;
}

/* ================ dashboard ================ */

.movin-bgimg{
    background: url("../images/movin_bg.png") no-repeat center;
    background-size: cover;
    min-height: 100vh;
}
.dash-container {
    margin: 40px 40px 100px 330px;
}
.dashpro-roundbox {
    background: #707070;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: #ffffff;
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.dashpro-roundbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashcard-box {
    background: linear-gradient(135deg, #161616 0%, #0d0d0d 100%);
    padding: 30px 20px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.dashcard-box:hover {
    border-color: var(--color-border-subtle);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 179, 0, 0.12);
}
.dashcard-box.active {
    background: linear-gradient(
        145deg,
        #1a1500 0%,
        #0d0d0d 100%
    );
    border: 1px solid var(--color-gold);
    box-shadow: 0 0 20px var(--color-gold-glow), 0 4px 16px rgba(0,0,0,0.5);
}

.dashcard-box h6 {
    font-weight: 500;
    font-size: 42px;
    font-family: var(--font-main);
    color: #ffffff;
}
.dashcard-box h5 {
    font-weight: 500;
    font-size: 36px;
    font-family: var(--font-main);
    color: #ffffff;
}
.referral-inputbox {
    background: var(--color-bg-deep);
    width: 480px;
    border: 1px solid var(--color-border-subtle);
    padding: 7px 10px;
    border-radius: 6px;
}
.referral-inputbox,
.referral-inputbox::placeholder,
.withdraw-label {
    font-weight: 300;
    font-size: 16px;
    font-family: var(--font-main);
    color: #ffffff;
}
.referral-btn {
    background: linear-gradient(
        90deg,
        var(--color-gold) 0%,
        var(--color-gold-dark) 100%
    );
    color: #000;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 6px 15px;
    box-shadow: 0 0 10px var(--color-gold-glow);
    transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

/* ================ Package Purchase Cards ================ */

.pkg-mv-sub {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
    display: block;
}

.pkg-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 12px 0;
    opacity: 1;
}

.pkg-val {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    padding-left: 8px;
}

/* Info rows: prevent overflow in flex rows */
.purchase-contentbox .d-flex {
    min-width: 0;
}

/* Label truncates, value stays on one line */
.purchase-contentbox .d-flex span:first-child,
.purchase-contentbox .d-flex span {
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.purchase-contentbox button {
    width: 100%;
}

/* ================ === ================ */


/*----------- inbox modal ---------------*/
.modal-content {
    background: var(--color-bg-elevated);
    color: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.modal-header h5,
.reward-activitybox p {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-main);
    color: var(--color-gold);
}

.date-filter label,
.date-filter small {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-main);
}
.date-input {
    background: var(--color-bg-input);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.date-input input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
}
.date-input input[type="date"] {
    text-transform: uppercase;
    position: relative;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-main);
    font-style: bold;
}
.date-input input[type="date"]::-webkit-calendar-picker-indicator {
    width: 26px;
    height: 26px;
    cursor: pointer;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
        hue-rotate(152deg) brightness(103%) contrast(103%);
}
.dateinput-timetext1 {
    margin-left: 48px;
}
.dateinput-timetext2 {
    margin-left: 30px;
}

.inbox-item {
    background: var(--color-bg-card);
    color: var(--color-text-main);
    padding: 9px 30px;
    border-bottom: 1px solid var(--color-border);
}
.inbox-item p {
    font-size: 13px;
    font-weight: 300;
    font-family: var(--font-main);
    color: var(--color-text-muted);
}
.inbox-item h6 {
    color: #fff;
}
.inbox-item.active {
    background: #222;
    color: #ffffff;
    border-left: 3px solid var(--color-gold);
}
.inbox-item.active h6 {
    color: var(--color-gold);
}
.pagination span {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-main);
    font-style: bold;
}

/*----------- language modal ---------------*/
.lang-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.lang-list a {
    text-decoration: none;
    color: black;
}
.lang-list img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
}
.lang-list img:hover {
    transform: scale(1.1);
}
.lang-list p {
    margin-top: 8px;
    font-weight: 600;
}

/* ================ rewards ================ */

.rewards-datefilter label,
.rewards-datefilter small {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-main);
    font-style: bold;
}
.rewards-datefilter .date-input {
    background: #363636;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rewards-datefilter .date-input input {
    width: 360px;
}

.reward-activityround {
    background: #bababa;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: #620003;
    display: flex;
    justify-content: center;
    align-items: center;
}
.activity-content {
    flex: 1;
    align-items: center;
}
.reward-activitybox h6 {
    font-size: 32px;
    font-weight: 500;
    font-family: var(--font-main);
}
.reward-activitybox small {
    font-size: 16px;
    font-weight: normal;
    font-family: var(--font-main);
}

/* ================ wallet ================ */

.walllink-purchasepack a {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-main);
}

/*------ purchase modal ------*/

#purchaseModal.show .modal-dialog {
    max-width: 1690px;
}

#purchaseModal .modal-content {
    background: var(--color-bg-deep);
}


.row .col-md-3:nth-child(1) .purchase-contentbox button,
.row .col-sm-6:nth-child(1) .purchase-contentbox button,
.row .col-12:nth-child(1) .purchase-contentbox button { background: #CC171D; border: 2px solid #CC171D; color: #fff; }
.row .col-md-3:nth-child(2) .purchase-contentbox button,
.row .col-sm-6:nth-child(2) .purchase-contentbox button,
.row .col-12:nth-child(2) .purchase-contentbox button { background: #FFDA2B; border: 2px solid #FFDA2B; color: #111; }
.row .col-md-3:nth-child(3) .purchase-contentbox button,
.row .col-sm-6:nth-child(3) .purchase-contentbox button,
.row .col-12:nth-child(3) .purchase-contentbox button { background: #00A23F; border: 2px solid #00A23F; color: #fff; }
.row .col-md-3:nth-child(4) .purchase-contentbox button,
.row .col-sm-6:nth-child(4) .purchase-contentbox button,
.row .col-12:nth-child(4) .purchase-contentbox button { background: #01C7DD; border: 2px solid #01C7DD; color: #fff; }
.row .col-md-3:nth-child(1) .purchase-contentbox,
.row .col-sm-6:nth-child(1) .purchase-contentbox,
.row .col-12:nth-child(1) .purchase-contentbox {
    border: 1px solid #CC171D; background: linear-gradient(0deg, #000000 65.38%, #CC171D 100%);
}

.row .col-md-3:nth-child(2) .purchase-contentbox,
.row .col-sm-6:nth-child(2) .purchase-contentbox,
.row .col-12:nth-child(2) .purchase-contentbox {
    border: 1px solid #FFC74D; background: linear-gradient(0deg, #000000 75.96%, #FFC74D 100%);
}

.row .col-md-3:nth-child(3) .purchase-contentbox,
.row .col-sm-6:nth-child(3) .purchase-contentbox,
.row .col-12:nth-child(3) .purchase-contentbox {
    border: 1px solid #00A040; background: linear-gradient(0deg, #000000 65.38%, #00A040 100%);
}

.row .col-md-3:nth-child(4) .purchase-contentbox,
.row .col-sm-6:nth-child(4) .purchase-contentbox,
.row .col-12:nth-child(4) .purchase-contentbox {
    border: 1px solid #01C7DD; background: linear-gradient(0deg, #000000 65.38%, #01C7DD 100%);
}

.purchase-contentbox {box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.353);
    padding: 28px 20px;
    background: linear-gradient(135deg, #161616 0%, #0d0d0d 100%);
    border: 1px solid var(--color-border-subtle);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    width: 100%;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
/* .purchase-contentbox:hover {
    border-color: var(--color-gold);
    box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.353);
} */
.purchase-contentbox button {box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.353);
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-main);
    padding: 12px 30px;
}
.purchase-contentbox h6 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-main);
    color: #ffffff;
    line-height: 1.3;
}
.purchase-contentbox h5 {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-main);
    color: #ffffff;
    line-height: 1.1;
}
.purchase-contentbox p,
.placement-btn {
    font-family: var(--font-main);
    color: #ffffff;
}
.pkg-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65) !important;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 8px 0;
}
.pkg-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}
.pkg-image-wrap .pkg-image {
    width: 85% !important;
    height: auto !important;
    max-height: 220px;
    object-fit: contain;
    display: block;
}

.purchase-input {
    background: var(--color-bg-deep);
    border: 1px solid var(--color-border-subtle);
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 18px 25px;
}
.purchase-input,
.purchase-input::placeholder {
    font-size: 20px;
    font-weight: 300;
    font-family: var(--font-main);
    color: #ffffff;
}
.placement-btn {
    background: var(--color-bg-card);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

/*------ withdraw modal ------*/
.withinfo-box {
    background: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 30px;
}
.withinfo-box h6 {
    font-size: 42px;
    font-weight: normal;
    font-family: var(--font-main);
}

.withdraw-input {
    width: 100%;
    padding: 15px 30px;
    margin-top: 10px;
    border: 1px solid var(--color-border-subtle);
    border-radius: 8px;
    outline: none;
    background: var(--color-bg-deep);
    box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
}
.withdraw-input,
.withdraw-input::placeholder {
    color: var(--color-text-main);
}
#withdrawModal .withdraw-label {
    margin: 10px 0px;
    color: var(--color-text-muted);
}
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    outline: none;
    background: var(--color-bg-deep);
    box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border: 1px solid var(--color-border-subtle);
    border-radius: 8px;
    appearance: none;
    color: var(--color-text-main);
}
.select-wrapper::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--color-gold);
    content: "";
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%);
}
.receive-box {
    background: var(--color-bg-elevated);
    padding: 6px 30px;
    box-shadow: inset 0px 4px 8px 0px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-top: 15px;
}
.receive-box span {
    font-size: 12px;
    font-weight: 300;
    font-family: var(--font-main);
    color: var(--color-gold);
}
.receive-box h5 {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font-main);
}

.otp-box {
    position: relative;
    width: 100%;
}
.otp-btn {
    background: linear-gradient(
        90deg,
        var(--color-gold) 0%,
        var(--color-gold-dark) 100%
    );
    position: absolute;
    right: 12px;
    top: 58%;
    transform: translateY(-50%);
    padding: 6px 20px;
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
}
.withdraw-subbtn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(
        90deg,
        var(--color-gold) 0%,
        var(--color-gold-dark) 100%
    );
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
}

/*------ transfer modal ------*/

.tabs {
    display: flex;
    margin: 10px 0;
}
.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    font-weight: 300;
    font-family: var(--font-main);
}
.tab-btn.active {
    background: var(--color-bg-card);
    text-decoration: none;
    border-bottom: 2px solid var(--color-gold);
    color: var(--color-gold);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* ================ profile ================ */

.dashcard-box h4 {
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-main);
    color: #fff;
}
.profile-notverify {
    font-size: 20px;
    font-weight: 300;
    font-family: var(--font-main);
    color: var(--color-primary);
}

/*----- addbank-detailbtn ------*/

.addbank-detailbtn {
    background: #bababa;
}
.addbank-detailbtn p {
    font-size: 20px;
    font-weight: 300;
    font-family: var(--font-main);
    color: #000000;
}
#addBank3Modal .withdraw-subbtn,
#bankdetailModal .withdraw-subbtn {
    margin-top: 400px;
}

/*================ responsive css style ===================*/

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .referral-inputbox,
    .referral-inputbox::placeholder,
    .withdraw-label,
    .inbox-item p,
    .reward-activityround,
    .reward-activitybox small,
    .receive-box span,
    .profile-notverify {
        font-size: 9px;
    }
    .date-filter label,
    .date-filter small,
    .pagination span,
    .reward-totalbonus p,
    .logininput,
    .logininput::placeholder,
    .terms-check {
        font-size: 11px;
    }
    .forgetpass-link,
    .rewardacti-viewlink,
    .dashcard-box h4 {
        font-size: 13px;
    }
    .register-link a,
    .loginbtn-design,
    .dash-profiletext p,
    .walllink-purchasepack a,
    .receive-box h5 {
        font-size: 16px;
    }
    .withdraw-input::placeholder,
    .select-wrapper select,
    .otp-btn,
    .withdraw-subbtn,
    .withdraw-input,
    .placement-btn,
    .purchase-input,
    .purchase-input::placeholder {
        font-size: 15px;
    }

    .bottom-sidebar {
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.702);
        position: fixed;
        left: 4.65%;
        border-radius: 50px;
        right: 4.65% !important;
        bottom: 3%;
        width: 90%;
        height: 60px;
        background: #000000;
        z-index: 9999;
        padding: 0px 20px;
        display: block !important;
    }
    .bottom-sidebar ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .offcanvas-body li {
        margin-bottom: 30px;
    }

    .mobile-logo {
        width: 165px;
        height: 36px;
        display: block !important;
    }
    .sidebar-menubtn {
        display: block !important;
    }
    .sidebar-logo,
    .web-header,
    .sidebar {
        display: none !important;
    }
    .inbox-mainbox {
        margin: 0px !important;
    }
    .dash-container {
        margin: 30px 20px 100px 20px;
    }
    .header {
        padding: 15px 20px;
    }
.loginmain-backimg{ display: flex; justify-content: center; align-items: center;}
    .login-container {
        padding: 30px 20px 20px 20px; height: auto;
        background: transparent;
    }
    .login-logo {
        width: 270px;
    }
    .login-container form {
        margin-top: 0px !important;
    }
    .logininput {
        padding: 13px;
        margin: 5px 0px !important;
    }
    .remember-me {
        font-size: 13px;
    }
    .loginbtn-design {
        font-size: 10px;
        padding: 15px;
        height: 43px;
        margin-top: 5px;
    }
    .register-link {
        padding: 18px 0px !important;
    }

    .dashpro-roundbox {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }
    .dash-profiletext img {
        width: 70px;
        height: 70px;
    }
    .dashcard-box {
        padding: 15px 9px;
    }
    .dashcard-box p {
        font-size: 11px;
    }
    .dashcard-box h6 {
        font-size: 20px;
    }
    .dash-container .col-md-3 {
        padding-top: 17px !important;
        padding-right: 8px !important;
        padding-left: 8px !important;
    }
    .dashcard-box h5 {
        font-size: 20px;
        padding-bottom: 10px;
    }
    .referral-inputbox {
        width: 226px;
    }

    .referral-btn {
        font-size: 9px;
        padding: 6px 10px;
    }
    .referral-linkimg {
        width: 26px;
        height: 26px;
    }
    .sidebar {
        padding: 30px 30px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .modal-dialog {
        margin: 20px;
    }
    .modal-header h5 {
        font-size: 17px;
    }
    .date-input input[type="date"],
    .rewards-datefilter label,
    .rewards-datefilter small {
        font-size: 10px;
        font-weight: 600;
    }
    .date-input input[type="date"]::-webkit-calendar-picker-indicator {
        width: 19px;
        height: 19px;
    }
    .date-input {
        padding: 5px 5px !important;
    }
    .date-filter {
        padding: 0px !important;
    }
    .inbox-item h6 {
        font-size: 14px;
    }

    .rewards-datefilter .date-input input {
        width: 99px;
    }
    .reward-activityround {
        width: 38px;
        height: 38px;
    }
    .activity-content .d-flex {
        align-items: end;
    }
    .wallet-container .dashcard-box h5 {
        font-size: 16px;
        padding-bottom: 0px;
    }
    .wallet-container .dashcard-box img {
        width: 38px;
        height: 38px;
    }
    .withinfo-box p,
    .addbank-detailbtn p {
        font-size: 14px;
    }
    .withinfo-box h6 {
        font-size: 31px;
    }
    .withdraw-input,
    .select-wrapper select,
    .purchase-input {
        padding: 11px 30px;
    }
    #withdrawModal .withdraw-label {
        margin: 5px 0px;
    }
    .withdraw-subbtn {
        padding: 13px;
    }
    .tab-btn {
        padding: 11px;
        font-size: 17px;
    }
    #reportModal .tabs {
        margin: 0px 0;
    }

    .profile-settimg {
        width: 11px !important;
        height: 11px !important;
    }
    .profile-container .dashcard-box h5 {
        font-size: 16px;
        padding-bottom: 0px;
    }
    .profile-container .dashcard-box img {
        width: 38px;
        height: 38px;
    }
    .profile-container .dashcard-box {
        padding: 13px !important;
    }
    #loginpassModal .withdraw-label,
    #resetpassModal .withdraw-label {
        font-size: 11px;
        line-height: 1.5;
        display: block;
    }

    .select-wrapper::after {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 11px solid #000;
    }

    #purchaseModal .modal-body {
        display: block !important;
        gap: 5px;
    }
    .purchase-contentbox {
        padding: 30px 10px;
        margin-bottom: 20px;
    }
}

/* 175% */
@media only screen and (min-width: 768px) and (max-width: 991px) {
        .login-container {
        padding: 0px 20px 0px 20px;
    }
    .login-logo {
        width: 200px;
        height: 50px;
    }

    .logininput {
        padding: 11px;
    }
    .logininput,
    .logininput::placeholder,
    .register-link a,
    .loginbtn-design {
        font-size: 13px;
    }
    .loginbtn-design {
        padding: 12px;
    }
    .register-link {
        padding: 20px 0px !important;
    }
    .terms-check {
        font-size: 9px;
    }

    .referral-inputbox,
    .referral-inputbox::placeholder,
    .withdraw-label,
    .inbox-item p,
    .reward-activityround,
    .reward-activitybox small,
    .receive-box span,
    .profile-notverify {
        font-size: 9px;
    }
    .date-filter label,
    .date-filter small,
    .pagination span,
    .reward-totalbonus p,
    .logininput,
    .logininput::placeholder,
    .terms-check {
        font-size: 12px;
    }
    .forgetpass-link,
    .rewardacti-viewlink,
    .dashcard-box h4 {
        font-size: 10px;
    }
    .register-link a,
    .loginbtn-design,
    .dash-profiletext p,
    .walllink-purchasepack a,
    .receive-box h5 {
        font-size: 16px;
    }
    .withdraw-input::placeholder,
    .select-wrapper select,
    .otp-btn,
    .withdraw-subbtn,
    .withdraw-input {
        font-size: 15px;
    }

    .mobile-logo {
        width: 165px;
        height: 36px;
        display: block !important;
    }
    .sidebar-menubtn {
        display: block !important;
    }
    .sidebar-logo {
        display: none;
    }
    .inbox-mainbox p {
        display: none;
    }
    .inbox-mainbox {
        margin: 0px !important;
    }
    .dash-container {
        margin: 30px 20px 100px 20px;
    }
    .header {
        padding: 15px 20px;
    }

    .dashpro-roundbox {
        width: 80px;
        height: 80px;
        font-size: 48px;
    }
    .dash-profiletext img {
        width: 70px;
        height: 70px;
    }
    .dashcard-box {
        padding: 15px 9px;
    }
    .dashcard-box p {
        font-size: 11px;
    }
    .dashcard-box h6 {
        font-size: 20px;
    }
    .dash-container .col-md-3 {
        padding-top: 17px !important;
        padding-right: 8px !important;
        padding-left: 8px !important;
    }
    .dashcard-box h5 {
        font-size: 20px;
        padding-bottom: 10px;
    }
    .referral-inputbox {
        width: 226px;
    }

    .referral-btn {
        font-size: 9px;
        padding: 6px 10px;
    }
    .referral-linkimg {
        width: 26px;
        height: 26px;
    }
    .sidebar {
        padding: 30px 30px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .modal-dialog {
        margin: 20px;
    }
    .modal-header h5 {
        font-size: 17px;
    }
    .date-input input[type="date"],
    .rewards-datefilter label,
    .rewards-datefilter small {
        font-size: 10px;
        font-weight: 600;
    }
    .date-input input[type="date"]::-webkit-calendar-picker-indicator {
        width: 19px;
        height: 19px;
    }
    .date-input {
        padding: 5px 5px !important;
    }
    .date-filter {
        padding: 0px !important;
    }
    .inbox-item h6 {
        font-size: 14px;
    }

    .rewards-datefilter .date-input input {
        width: 99px;
    }
    .reward-activityround {
        width: 38px;
        height: 38px;
    }
    .activity-content .d-flex {
        align-items: end;
    }
    .wallet-container .dashcard-box h5 {
        font-size: 16px;
        padding-bottom: 0px;
    }
    .wallet-container .dashcard-box img {
        width: 38px;
        height: 38px;
    }
    .withinfo-box p,
    .addbank-detailbtn p {
        font-size: 14px;
    }
    .withinfo-box h6 {
        font-size: 31px;
    }
    .withdraw-input,
    .select-wrapper select {
        padding: 11px 30px;
    }
    #withdrawModal .withdraw-label {
        margin: 5px 0px;
    }
    .withdraw-subbtn {
        padding: 13px;
    }
    .tab-btn {
        padding: 11px;
        font-size: 17px;
    }
    #reportModal .tabs {
        margin: 0px 0;
    }

    .profile-settimg {
        width: 11px !important;
        height: 11px !important;
    }
    .profile-container .dashcard-box h5 {
        font-size: 16px;
        padding-bottom: 0px;
    }
    .profile-container .dashcard-box img {
        width: 38px;
        height: 38px;
    }
    .profile-container .dashcard-box {
        padding: 13px !important;
    }
    #loginpassModal .withdraw-label,
    #resetpassModal .withdraw-label {
        font-size: 11px;
        line-height: 1.5;
        display: block;
    }

    .select-wrapper::after {
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 11px solid #000;
    }

    #purchaseModal .modal-body {
        display: block !important;
        gap: 5px;
    }
    .purchase-contentbox {
        padding: 20px 14px;
        margin-bottom: 20px;
    }
    .purchase-contentbox h6 {
        font-size: 16px;
    }
    .purchase-contentbox h5 {
        font-size: 36px;
    }
    .pkg-image-wrap .pkg-image {
        max-height: 180px;
    }
    #purchaseModal.show .modal-dialog {
        max-width: 400px;
    }
}

/* 150% */
@media only screen and (min-width: 992px) and (max-width: 1039px) {
        .login-container {
        padding: 0px 20px 0px 20px;
    }
    .login-logo {
        width: 250px;
        height: 60px;
    }
    .logininput {
        padding: 11px;
    }
    .logininput,
    .logininput::placeholder,
    .register-link a,
    .loginbtn-design {
        font-size: 15px;
    }
    .loginbtn-design {
        padding: 12px;
    }
    .terms-check {
        font-size: 12px;
    }

    .sidebar {
        width: 185px;
        padding: 30px 15px;
    }
    .dash-container {
        margin: 20px 15px 100px 200px;
    }
    .dashcard-box h6 {
        font-size: 20px;
    }
    .dashcard-box {
        padding: 13px;
    }
    .dashcard-box p {
        font-size: 10px;
    }
    .referral-inputbox {
        width: 220px;
    }
    .dashpro-roundbox {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
    .navbar-nav .nav-link,
    .dash-profiletext p {
        font-size: 14px;
    }
    .dash-profiletext img {
       width: 70px;
        height: 70px;
    }
    .nav-link img {
        width: 35px;
        height: 35px;
    }
    .inbox-roundbtn {
        width: 30px;
        height: 30px;
    }
    .inbox-roundbtn img {
        width: 14px;
        height: 14px;
    }
    .header {
        padding: 13px 30px;
    }
    .navbar-nav {
        padding-top: 20px !important;
    }
    .navbar-nav .nav-link {
        padding: 5px 0px !important;
    }
    .referral-inputbox,
    .referral-inputbox::placeholder {
        font-size: 11px;
    }
    .referral-btn {
        font-size: 13px;
    }
    .referral-linkimg {
        width: 31px;
        height: 31px;
    }
    .dash-container .col-md-3 {
        padding-top: 17px !important;
    }

    .reward-activityround {
        width: 50px;
        height: 50px;
    }
    .reward-activityround,
    .rewardacti-viewlink {
        font-size: 10px;
    }
    .rewards-datefilter .date-input input {
        width: 180px;
    }
    .rewards-datefilter .date-input {
        padding: 2px 10px;
    }
    .rewards-datefilter label,
    .rewards-datefilter small {
        font-size: 10px;
    }
    .reward-activitybox small {
        font-size: 12px;
    }
    .dateinput-timetext1 {
        margin-left: 33px;
    }
    .date-input input[type="date"] {
        font-size: 10px;
    }
    .date-input input[type="date"]::-webkit-calendar-picker-indicator {
        width: 19px;
        height: 19px;
    }
    .reward-totalbonus p {
        font-size: 14px;
    }

    .wallet-container .dashcard-box img,
    .profile-container .dashcard-box img {
        width: 38px;
        height: 38px;
    }
    .wallet-container .walllink-purchasepack img {
        width: 38px;
        height: 38px;
    }
    .walllink-purchasepack a {
        font-size: 15px;
    }
    .wallet-container .dashcard-box {
        gap: 5px !important;
    }

    .dashcard-box h4 {
        font-size: 10px;
    }
    .dashcard-box h5 {
        font-size: 20px;
    }
    .profile-container .dashcard-box {
        padding: 13px 5px !important;
    }
    .profile-settimg {
        width: 20px !important;
        height: 20px !important;
    }
    .profile-notverify {
        font-size: 13px;
    }

    #purchaseModal.show .modal-dialog {
        max-width: 980px;
    }
    .purchase-contentbox {
        padding: 20px 10px;
    }
    .purchase-contentbox h6 {
        font-size: 14px;
    }
    .purchase-contentbox h5 {
        font-size: 32px;
    }
    .purchase-contentbox button {
        font-size: 15px;
        padding: 8px 20px;
    }
    .pkg-image-wrap .pkg-image {
        max-height: 160px;
    }
}

/* 125% */
@media only screen and (min-width: 1040px) and (max-width: 1279px) {
    .login-container {
        padding: 0px 30px 0px 30px;
    }
    .login-logo {
        width: 300px;
        height: 65px;
    }
    .logininput {
        padding: 13px;
    }
    .logininput,
    .logininput::placeholder {
        font-size: 17px;
    }
    .loginbtn-design {
        padding: 15px;
    }
    .terms-check {
        font-size: 14px;
    }

    .sidebar {
        width: 215px;
        padding: 40px 15px;
    }
    .dash-container {
        margin: 20px 15px 100px 230px;
    }
    .dashcard-box h6 {
        font-size: 22px;
    }
    .dashcard-box {
        padding: 15px;
    }
    .dashcard-box p {
        font-size: 12px;
    }
    .referral-inputbox {
        width: 250px;
    }
    .dashpro-roundbox {
        width: 70px;
        height: 70px;
        font-size: 33px;
    }
    .navbar-nav .nav-link,
    .dash-profiletext p {
        font-size: 16px;
    }
    .dash-profiletext img {
       width: 70px;
        height: 70px;
    }
    .nav-link img {
        width: 40px;
        height: 40px;
    }
    .inbox-roundbtn {
        width: 35px;
        height: 35px;
    }
    .inbox-roundbtn img {
        width: 18px;
        height: 18px;
    }
    .header {
        padding: 15px 30px;
    }
    .navbar-nav {
        padding-top: 20px !important;
    }
    .navbar-nav .nav-link {
        padding: 5px 0px !important;
    }
    .referral-inputbox,
    .referral-inputbox::placeholder {
        font-size: 13px;
    }
    .referral-btn,
    .reward-totalbonus p {
        font-size: 15px;
    }
    .referral-linkimg {
        width: 38px;
        height: 38px;
    }

    .reward-activityround {
        width: 65px;
        height: 65px;
    }
    .reward-activityround,
    .rewardacti-viewlink {
        font-size: 13px;
    }
    .rewards-datefilter .date-input input {
        width: 250px;
    }
    .rewards-datefilter .date-input {
        padding: 2px 10px;
    }
    .rewards-datefilter label,
    .rewards-datefilter small {
        font-size: 13px;
    }
    .reward-activitybox small {
        font-size: 12px;
    }

    .wallet-container .dashcard-box img,
    .profile-container .dashcard-box img {
        width: 38px;
        height: 38px;
    }
    .wallet-container .walllink-purchasepack img {
        width: 38px;
        height: 38px;
    }
    .walllink-purchasepack a {
        font-size: 15px;
    }
    .wallet-container .dashcard-box {
        gap: 5px !important;
    }

    .dashcard-box h4 {
        font-size: 13px;
    }
    .dashcard-box h5 {
        font-size: 25px;
    }
    .profile-container .dashcard-box {
        padding: 13px 10px !important;
    }
    .profile-notverify {
        font-size: 13px;
    }
    .profile-settimg {
        width: 20px !important;
        height: 20px !important;
    }

    #purchaseModal.show .modal-dialog {
        max-width: 1180px;
    }
    .purchase-contentbox {
        padding: 24px 12px;
    }
    .purchase-contentbox h6 {
        font-size: 16px;
    }
    .purchase-contentbox h5 {
        font-size: 36px;
    }
    .pkg-image-wrap .pkg-image {
        max-height: 180px;
    }
}

/* 110% */
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
    .login-logo {
        width: 320px;
    }
    .logininput {
        padding: 13px;
    }
    .logininput,
    .logininput::placeholder {
        font-size: 17px;
    }
    .loginbtn-design {
        padding: 15px;
    }

    .sidebar {
        width: 240px;
        padding: 40px 20px;
    }
    .dash-container {
        margin: 20px 15px 100px 260px;
    }
    .dashcard-box h6 {
        font-size: 30px;
    }
    .dashcard-box {
        padding: 15px;
    }
    .dashcard-box p {
        font-size: 14px;
    }
    .referral-inputbox {
        width: 320px;
    }
    .dashpro-roundbox {
        width: 80px;
        height: 80px;
        font-size: 35px;
    }
    .navbar-nav .nav-link,
    .dash-profiletext p {
        font-size: 16px;
    }
    .dash-profiletext img {
        width: 70px;
        height: 70px;
    }
    .header {
        padding: 15px 30px;
    }
    .navbar-nav {
        padding-top: 20px !important;
    }
    .navbar-nav .nav-link {
        padding: 5px 0px !important;
    }

    .reward-activityround {
        width: 70px;
        height: 70px;
    }
    .reward-activityround {
        font-size: 16px;
    }
    .rewards-datefilter .date-input input {
        width: 300px;
    }
    .rewards-datefilter .date-input {
        padding: 4px 10px;
    }
    .rewards-datefilter label,
    .rewards-datefilter small {
        font-size: 14px;
    }

    .dashcard-box h4 {
        font-size: 15px;
    }
    .dashcard-box h5 {
        font-size: 28px;
    }
    .profile-container .dashcard-box {
        padding: 17px !important;
    }
    .profile-notverify {
        font-size: 13px;
    }

    #purchaseModal.show .modal-dialog {
        max-width: 1320px;
    }
    .purchase-contentbox {
        padding: 24px 14px;
    }
    .purchase-contentbox h6 {
        font-size: 18px;
    }
    .purchase-contentbox h5 {
        font-size: 40px;
    }
}

/* 100% */
@media only screen and (min-width: 1500px) and (max-width: 1549px) {
    .sidebar {
        width: 265px;
        padding: 40px 30px;
    }
    .dash-container {
        margin: 40px 15px 100px 290px;
    }
    .dashcard-box h6 {
        font-size: 30px;
    }
    .dashcard-box {
        padding: 15px;
    }
    .dashcard-box p {
        font-size: 16px;
    }
    .referral-inputbox {
        width: 380px;
    }
    .dashpro-roundbox {
        width: 80px;
        height: 80px;
        font-size: 38px;
    }
    .navbar-nav .nav-link,
    .dash-profiletext p {
        font-size: 18px;
    }
    .dash-profiletext img {
        width: 70px;
        height: 70px;
    }

    .reward-activityround {
        width: 75px;
        height: 75px;
    }
    .reward-activityround {
        font-size: 18px;
    }

    .dashcard-box h4 {
        font-size: 16px;
    }
    .dashcard-box h5 {
        font-size: 30px;
    }

    #purchaseModal.show .modal-dialog {
        max-width: 1470px;
    }
    .purchase-contentbox {
        padding: 30px 18px;
    }
    .purchase-contentbox h6 {
        font-size: 20px;
    }
    .purchase-contentbox h5 {
        font-size: 44px;
    }
}

/* 90% */
@media only screen and (min-width: 1550px) and (max-width: 1820px) {
    .sidebar {
        width: 280px;
        padding: 40px 30px;
    }
    .dash-container {
        margin: 40px 40px 100px 300px;
    }
    .dashcard-box h6 {
        font-size: 35px;
    }
    .dashcard-box {
        padding: 15px;
    }
    .dashcard-box p {
        font-size: 18px;
    }
    .referral-inputbox {
        width: 440px;
    }
    .dashpro-roundbox {
        width: 95px;
        height: 95px;
        font-size: 43px;
    }

    .dashcard-box h4 {
        font-size: 20px;
    }
    .dashcard-box h5 {
        font-size: 33px;
    }

    #purchaseModal.show .modal-dialog {
        max-width: 1600px;
    }
    .purchase-contentbox {
        padding: 40px 20px;
    }
    .purchase-contentbox h6 {
        font-size: 22px;
    }
    .purchase-contentbox h5 {
        font-size: 48px;
    }
}

/* ================ Button Interactions ================ */

/* Login / Register / Forgot Password submit buttons */
.loginbtn-design {
    transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.loginbtn-design:not(:disabled):hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 23, 29, 0.45);
}
.loginbtn-design:not(:disabled):active {
    filter: brightness(0.88);
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(204, 23, 29, 0.25);
}

/* Card-style action buttons (Withdraw, Transfer, Reports, etc.) */
button.dashcard-box {
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}
button.dashcard-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
    border-color: var(--color-gold);
}
button.dashcard-box:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Referral copy / share / QR buttons */
.referral-btn {
    transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.referral-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.referral-btn:active {
    filter: brightness(0.88);
    transform: scale(0.96);
    box-shadow: none;
}

/* Modal submit buttons (Withdraw / Transfer / Convert) */
.withdraw-subbtn {
    transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.withdraw-subbtn:not(:disabled):hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.withdraw-subbtn:not(:disabled):active {
    filter: brightness(0.88);
    transform: translateY(1px);
    box-shadow: none;
}

/* Tab buttons – subtle hover on inactive tab */
.tab-btn:not(.active):hover {
    background: var(--color-bg-card);
    color: rgba(255, 255, 255, 0.9);
}
.tab-btn {
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.tab-btn:active {
    transform: scale(0.97);
}
/* Small desktop and up */
@media (min-width: 1024px) {
    .login-container {
        position: absolute;
        right: 0;
        width: 35%;
    }
}

/* Large desktop and up */
@media (min-width: 1280px) {
    .login-container {
        position: absolute;
        right: 0;
    }
}

/* Extra large desktop */
@media (min-width: 1440px) {
    .login-container {
        position: absolute;
        right: 0;
    }
}


/* ===== Rainbow Border Utility ===== */
.rainbow-border {
    position: relative;
    isolation: isolate;
}

.rainbow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(
        to right,
        rgba(218, 1, 12, 1),
        rgba(235, 108, 26, 1),
        rgba(252, 215, 39, 1),
        rgba(27, 155, 57, 1),
        rgba(27, 206, 226, 1)
    );
    z-index: -1;
}

.rainbow-border--thick::before {
    inset: -4px;
}

.rainbow-border--animated::before {
    background: linear-gradient(
        0deg,
        rgba(218, 1, 12, 1),
        rgba(235, 108, 26, 1),
        rgba(252, 215, 39, 1),
        rgba(27, 155, 57, 1),
        rgba(27, 206, 226, 1),
        rgba(218, 1, 12, 1)
    );
    animation: rainbow-spin 3s linear infinite;
}

@keyframes rainbow-spin {
    to { filter: hue-rotate(360deg); }
}

.disable-purchase {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}