 :root {
     --glass: rgba(18, 20, 24, 0.72);
     --primary: #E1306C;
     --primary-dark: #C2185B;
     --cherry-red: #E1306C;
     --cherry-glow: rgba(225, 48, 108, 0.4);
     --primary-light: #FD79A8;
     --primary-glow: rgba(225, 48, 108, 0.4);
     --accent: #00f2ff;

     /* Package purchase styles */
     --bg-dark: #0A0A0F;
     --card-dark: #12141D;
     --primary: #E1306C;
     --primary-light: #FD79A8;
     --primary-glow: rgba(225, 48, 108, 0.5);
     --secondary: #8A2BE2;
     --accent: #00C9FF;
     --text: #FFFFFF;
     --text-dim: #94A3B8;
     --success: #00D4AA;
     --radius: 22px;


     /* Dark Theme (Default) */
     --bg: #070812;
     --bg2: #0B0D1B;
     --bg-body: #0a0a0f;
     --bg-card: rgba(15, 18, 25, 0.9);
     --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
     --text-main: #ffffff;
     --text-sub: #94a3b8;
     --text-light: #cbd5e1;
     --border-color: rgba(225, 48, 108, 0.15);
     --shadow-color: rgba(0, 0, 0, 0.5);

     /* dashboard styles */
     --text: #ffffff;
     --muted: rgba(255, 255, 255, 0.70);
     --stroke: rgba(255, 255, 255, 0.08);
     --shadow: 0 22px 60px rgba(0, 0, 0, 0.40);

     /* header styles */
     --gt-header-h: 75px;
     --gt-sidebar-closed: 92px;
     --gt-left-gap: 20px;
 }

/* [data-theme="light"] {
     --bg-body: #f8fafc;
     --bg-card: rgba(255, 255, 255, 0.95);
     --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     --text-main: #1e293b;
     --text-sub: #475569;
     --text-light: #64748b;
     --border-color: rgba(225, 48, 108, 0.2);
     --shadow-color: rgba(0, 0, 0, 0.1);
 }*/

 html {
    width: 100vw !important;
    overflow-x: hidden;
 }

 body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     background: var(--bg-gradient);
     color: var(--text-main);
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
         width: 100vw !important;
    overflow-x: hidden;
/*     overflow-x: hidden;*/
 }

     .mrgn-top {
        margin-top: 120px;
    }

/* Inner header styles start */

.gt-header {
        position: fixed;
        top: 15px;
        left: 0;
        right: 0;
        height: var(--gt-header-h);
        z-index: 1200;
        /*padding-left: calc(var(--gt-sidebar-closed) + (var(--gt-left-gap) * 1.5));*/
        padding-right: 30px;
        display: flex;
        align-items: center;
        pointer-events: none;
    }

    .gt-header-bar {
        pointer-events: auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 20px;
        background: var(--glass);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }

    .gt-search-wrapper {
        position: relative;
        width: 300px;
        margin-right: auto;
    }

    .gt-search-input {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        padding: 10px 15px 10px 45px;
        color: white;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .gt-search-input:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--primary);
        box-shadow: 0 0 15px rgba(225, 48, 108, 0.2);
        outline: none;
        width: 340px;
    }

    .gt-search-icon {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-sub);
        opacity: 0.5;
        pointer-events: none;
    }

    .gt-nav-icon-btn {
        position: relative;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        color: white;
        text-decoration: none;
        transition: 0.3s;
        margin-right: 15px;
    }

    .gt-nav-icon-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent);
        border-color: var(--accent);
    }

    .gt-noti-dot {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 8px;
        height: 8px;
        background: var(--primary);
        border-radius: 50%;
        box-shadow: 0 0 10px var(--primary);
        animation: pulse-red 2s infinite;
    }

    @keyframes pulse-red {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.7);
        }

        70% {
            transform: scale(1);
            box-shadow: 0 0 0 6px rgba(225, 48, 108, 0);
        }

        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(225, 48, 108, 0);
        }
    }

    .dash-profile-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 5px 15px 5px 5px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
        color: white;
    }

    .dash-profile-btn:hover,
    .show>.dash-profile-btn {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--primary);
    }

    .dash-profile-img {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        object-fit: cover;
        border: 2px solid var(--primary);
    }

    .dash-profile-name {
        font-size: 0.9rem;
        font-weight: 700;
        display: block;
        white-space: nowrap;
    }

    @media (max-width: 576px) {
        .dash-profile-name {
            max-width: 60px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .footer {
            margin-top: 0 !important;
        }

        .btn-package {
            width: 100% !important;
        }
    }

    .dash-profile-status {
        font-size: 0.65rem;
        color: var(--accent);
        font-weight: 600;
        text-transform: uppercase;
    }

    .dropdown-menu-elite {
        background: rgba(15, 17, 26, 0.98);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(225, 48, 108, 0.3);
        border-radius: 18px;
        padding: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        margin-top: 12px !important;
    }

    .dropdown-item-elite {
        color: #cbd5e1;
        border-radius: 10px;
        padding: 10px 15px;
        font-weight: 600;
        transition: 0.2s;
    }

    .dropdown-item-elite:hover {
        background: rgba(225, 48, 108, 0.1);
        color: white;
        padding-left: 20px;
    }

    @media (max-width: 992px) {
        .gt-header {
            padding-left: 20px;
            padding-right: 20px;
        }

        .gt-search-wrapper {
            width: 150px;
        }

        /*.mrgn-top {
            margin-top: 70px;
        }*/
    }

    .profile-image-container {
        position: relative;
        width: 40px;
        height: 40px;
    }

    .dash-profile-img {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
        border: 2px solid var(--primary);
        background: #1a1a2e;
    }

    .online-indicator {
        position: absolute;
        bottom: 4px;
        right: 2px;
        width: 12px;
        height: 12px;
        background: #00ff88;
        border: 2px solid #0f111a;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }

    .upload-label {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--accent);
        cursor: pointer;
        transition: 0.3s;
        display: block;
        width: 100%;
    }

    .upload-label:hover {
        color: white;
        text-shadow: 0 0 10px var(--accent);
    }

/*Inner header styles end*/

 /* landing page styles start */

 /* --- Section Titles --- */
 .section-tag {
     color: var(--cherry-red);
     text-transform: uppercase;
     letter-spacing: 3px;
     font-weight: 700;
     font-size: 0.9rem;
 }

 /* --- ANIMATED BACKGROUND ELEMENTS --- */
 .floating-shapes {
     position: fixed;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: -1;
     overflow: hidden;
 }

 .shape {
     position: absolute;
     border-radius: 50%;
     filter: blur(40px);
     opacity: 0.3;
     animation: float 20s infinite ease-in-out;
 }

 .shape-1 {
     width: 400px;
     height: 400px;
     background: var(--primary);
     top: -100px;
     left: -100px;
     animation-delay: 0s;
 }

 .shape-2 {
     width: 300px;
     height: 300px;
     background: #6d28d9;
     bottom: -50px;
     right: 20%;
     animation-delay: -5s;
 }

 .shape-3 {
     width: 250px;
     height: 250px;
     background: #0891b2;
     top: 40%;
     left: 80%;
     animation-delay: -10s;
 }

 @keyframes float {
     0%, 100% {
         transform: translateY(0) rotate(0deg);
     }

     33% {
         transform: translateY(-30px) rotate(120deg);
     }

     66% {
         transform: translateY(20px) rotate(240deg);
     }
 }

 /* --- ADVANCED THEME TOGGLE --- */
 .theme-switch-wrapper {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 9999;
 }

 .theme-toggle {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background: var(--primary);
     border: 2px solid rgba(255, 255, 255, 0.1);
     color: white;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     box-shadow: 0 10px 30px var(--primary-glow);
     position: relative;
     overflow: hidden;
 }

 .theme-toggle::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
     transform: translateX(-100%);
 }

 .theme-toggle:hover::before {
     animation: shine 0.8s ease;
 }

 @keyframes shine {
     0% {
         transform: translateX(-100%);
     }

     100% {
         transform: translateX(100%);
     }
 }

 /* --- PREMIUM NAVBAR --- */
 .navbar {
     backdrop-filter: blur(20px);
     background: rgba(10, 10, 15, 0.8) !important;
     border-bottom: 1px solid var(--border-color);
     padding: 20px 0;
     transition: all 0.3s ease;
     width: 100vw !important;
 }

 [data-theme="light"] .navbar {
     background: rgba(248, 250, 252, 0.9) !important;
 }

 .navbar-brand {
     font-weight: 800;
     font-size: 2rem;
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     letter-spacing: -0.5px;
 }

 .nav-link {
     color: var(--text-sub) !important;
     font-weight: 600;
     margin: 0 10px;
     position: relative;
     padding: 8px 0 !important;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--primary);
     transition: width 0.3s ease;
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     width: 100%;
 }

 /* --- HERO SECTION --- */
 .hero-section {
     padding: 180px 0 120px;
     position: relative;
     overflow: hidden;
 }

 .hero-title {
     font-size: clamp(3rem, 7vw, 5.5rem);
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 1.5rem;
 }

 .hero-gradient {
     background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #6d28d9 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-subtitle {
     font-size: 1.25rem;
     color: var(--text-sub);
     max-width: 600px;
     line-height: 1.6;
 }

 /* --- PACKAGES SECTION --- */

 .strategic-box {
    text-align: left !important;
    padding: 50px 40px !important;
    /* Use your glass variable for a smoother blend */
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--glass) 100%) !important;
    border: 1px solid rgba(225, 48, 108, 0.3) !important;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    /* Multi-layered shadow for depth instead of one heavy blur */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
                0 0 20px var(--primary-glow) !important;
    transition: all 0.4s ease;
}

.strategic-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 2;
}

.strategic-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(225, 48, 108, 0.05), transparent 70%);
    pointer-events: none;
}

.strategic-box:hover {
/*    transform: translateY(-10px) rotate(0deg) !important;*/
    border-color: var(--primary) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 
                0 0 40px var(--primary-glow) !important;
}

/* Fix for the text contrast */
.strategic-box .purpose-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

    .text-gradient-cherry {
        background: linear-gradient(90deg, var(--primary), var(--primary-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 1.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .text-gradient-cyan {
        background: linear-gradient(90deg, #00f2ff, #00c9ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 1.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .purpose-text {
        font-size: 1.25rem;
        line-height: 1.6;
        color: var(--text-sub);
        font-weight: 500;
        position: relative;
        z-index: 1;
    }

    .highlight-primary {
        color: var(--primary-light);
        font-weight: 700;
        text-shadow: 0 0 15px var(--primary-glow);
    }

    .quote-wrapper {
        position: relative;
        padding-left: 30px;
    }

    .quote-icon {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.2rem;
        color: var(--primary);
        opacity: 0.5;
    }

    /* Divider Effect */
    .divider-glow {
        height: 1px;
        width: 100%;
        background: linear-gradient(90deg, transparent, var(--stroke), transparent);
        position: relative;
    }

    .divider-glow::after {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 40px; height: 2px;
        background: var(--primary);
        box-shadow: 0 0 15px var(--primary);
    }

    /* Mission Icon Grid */
    .mission-icons {
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }

    .m-icon-item {
        text-align: center;
        flex: 1;
    }

    .icon-circle {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--stroke);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        color: var(--accent);
        transition: 0.3s;
    }

    .m-icon-item span {
        font-size: 0.75rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
        color: var(--text-sub);
    }

    .strategic-box:hover .icon-circle {
        border-color: var(--accent);
        box-shadow: 0 0 15px var(--accent-glow);
        transform: translateY(-3px);
    }
 .packages-section {
     padding: 100px 0;
 }

 .package-card {
     background: var(--bg-card);
     border: 1px solid var(--border-color);
     border-radius: 25px;
     padding: 40px 30px;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: hidden;
     height: 100%;
 }

 .package-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
 }

 .package-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 30px 60px -12px var(--primary-glow);
     border-color: var(--primary);
 }

 .package-badge {
     display: inline-block;
     padding: 8px 20px;
     background: rgba(225, 48, 108, 0.1);
     color: var(--primary);
     border-radius: 50px;
     font-weight: 700;
     font-size: 0.85rem;
     margin-bottom: 20px;
     border: 1px solid rgba(225, 48, 108, 0.2);
 }

 .package-price {
     font-size: 3.5rem;
     font-weight: 800;
     color: var(--text-main);
     margin: 20px 0;
 }

 .package-features {
     list-style: none;
     padding: 0;
     margin: 30px 0;
 }

 .package-features li {
     padding: 10px 0;
     color: var(--text-sub);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 [data-theme="light"] .package-features li {
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
 }

 .package-features li i {
     color: var(--primary);
     margin-right: 10px;
 }

 .btn-package {
     width: 100%;
     padding: 15px;
     background: linear-gradient(135deg, var(--primary), var(--primary-dark));
     color: white;
     border: none;
     border-radius: 12px;
     font-weight: 700;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .btn-package:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px var(--primary-glow);
 }

 .btn-package.locked {
     background: #64748b;
     cursor: not-allowed;
     opacity: 0.6;
 }

 /* --- MATRIX VISUALIZATION --- */
 /* .matrix-section {
            padding: 100px 0;
            background: rgba(0, 0, 0, 0.02);
            position: relative;
        }

        [data-theme="light"] .matrix-section {
            background: rgba(225, 48, 108, 0.02);
        }

        .matrix-visual {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .matrix-node {
            width: 60px;
            height: 60px;
            background: var(--bg-card);
            border: 2px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 800;
            position: absolute;
            box-shadow: 0 10px 20px var(--shadow-color);
        } */

 .mlm-card {
     background: var(--glass-card);
     border: 1px solid rgba(225, 48, 108, 0.3);
     border-radius: 24px;
     padding: 40px;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     height: 100%;
     position: relative;
     overflow: hidden;
 }

 .mlm-card:hover {
     transform: scale(1.05);
     border-color: var(--cherry-red);
     box-shadow: 0 0 40px var(--cherry-glow);
 }

 .mlm-card i {
     font-size: 2.5rem;
     margin-bottom: 20px;
     background: linear-gradient(45deg, #E1306C, #FD79A8);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* --- Referral Level Table --- */
 .level-badge {
     background: var(--cherry-red);
     padding: 5px 15px;
     border-radius: 50px;
     font-size: 0.8rem;
     font-weight: 700;
 }

 /* --- Animated Glowing Button --- */
 .btn-glow {
     background: var(--cherry-red);
     color: white;
     font-weight: 700;
     padding: 18px 45px;
     border-radius: 50px;
     border: none;
     box-shadow: 0 0 20px var(--cherry-glow);
     transition: 0.3s;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .btn-glow:hover {
     box-shadow: 0 0 40px var(--cherry-red);
     transform: translateY(-3px);
     color: white;
 }


 /* --- EARNINGS CALCULATOR --- */
 .calculator-section {
     padding: 100px 0;
 }

 .calculator-card {
     background: var(--bg-card);
     border-radius: 25px;
     padding: 50px;
     border: 1px solid var(--border-color);
 }

 .slider-container {
     margin: 30px 0;
 }

 .slider-value {
     font-size: 2rem;
     font-weight: 800;
     color: var(--primary);
     margin-bottom: 10px;
 }

 /* --- FEATURES SECTION --- */
 .gt-features {
     padding: 100px 0;
 }

 .gt-packages {
     padding: 100px 0;
     position: relative;
 }

 .gt-section-title {
     text-align: center;
     margin-bottom: 60px;
 }

 .gt-section-subtitle {
     color: var(--gt-primary);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 15px;
 }

 .gt-section-main-title {
     font-size: 3.5rem;
     font-weight: 800;
     margin: 0;
     color: white;
 }

 .gt-features-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 30px;
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 40px;
 }

 .gt-feature-card {
     /* background: #12141D; */
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 40px;
     text-align: center;
     transition: all 0.3s ease;
 }

 .gt-feature-card:hover {
     transform: translateY(-5px);
     border-color: var(--primary);
     box-shadow: 0 15px 30px rgba(225, 48, 108, 0.4);
 }

 .gt-feature-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--primary), #8A2BE2);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 30px;
     color: white;
     font-size: 2rem;
 }

 .gt-feature-title {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .gt-feature-description {
     color: var(--gt-text-dim);
     line-height: 1.6;
 }

 /* --- FOOTER --- */
 .footer {
     background: var(--bg-card);
     border-top: 1px solid var(--border-color);
     padding: 80px 0 40px;
     margin-top: 100px;
 }

 .footer a {
     text-decoration: none;
     color: #8e8e8e;
     margin-left: 5px;
 }

 .footer-links h5 {
     color: var(--text-main);
     margin-bottom: 25px;
     font-weight: 700;
 }

 .footer-links a {
     color: var(--text-sub);
     text-decoration: none;
     display: block;
     margin-bottom: 12px;
     transition: all 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--primary);
     transform: translateX(5px);
 }

 .copyright {
     text-align: center;
     padding-top: 40px;
     margin-top: 40px;
     border-top: 1px solid var(--border-color);
     color: var(--text-sub);
 }

 /* --- RESPONSIVE DESIGN --- */
 @media (max-width: 768px) {
     .hero-section {
         padding: 150px 0 80px;
         text-align: center;
     }

     .hero-title {
         font-size: 2.8rem;
     }

     .package-card {
         margin-bottom: 30px;
     }

     .calculator-card {
         padding: 30px 20px;
     }

    .gt-features-grid{
        grid-template-columns: repeat(1, 1fr);
    }

 }

 /* --- CUSTOM SCROLLBAR --- */
 ::-webkit-scrollbar {
     width: 10px;
 }

 ::-webkit-scrollbar-track {
     background: var(--bg-body);
 }

 ::-webkit-scrollbar-thumb {
     background: var(--primary);
     border-radius: 5px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: var(--primary-dark);
 }

 /* --- UTILITY CLASSES --- */
 .text-gradient {
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .glass-effect {
     backdrop-filter: blur(10px);
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 [data-theme="light"] .glass-effect {
     background: rgba(0, 0, 0, 0.05);
     border: 1px solid rgba(0, 0, 0, 0.1);
 }

 /* landing page styles end */


 /* Dashboard styles start */
 .dash-body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     background:
         radial-gradient(at 10% 10%, rgba(225, 48, 108, 0.16) 0px, transparent 55%),
         radial-gradient(at 90% 90%, rgba(0, 242, 255, 0.10) 0px, transparent 55%),
         linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
     color: var(--text);
     min-height: 100vh;
     overflow-x: hidden;
 }

 /* ============ SIDEBAR  ============ */
 .sidebar {
     position: fixed;
     left: 18px;
     top: 24px;
     height: calc(100vh - 48px);
     width: 92px;
     /* closed width */
     border-radius: 28px;
     background: var(--glass);
     border: 1px solid var(--stroke);
     backdrop-filter: blur(18px);
     -webkit-backdrop-filter: blur(18px);
     box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
     z-index: 1000;

     display: flex;
     flex-direction: column;
     padding: 16px 10px;
     gap: 8px;

     transition: width .34s cubic-bezier(0.175, 0.885, 0.32, 1.08);
     overflow: hidden;
 }

 .sidebar:hover {
     width: 252px;
 }

 /* open width */

 /* logo */
 .logoBox {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 10px 10px 14px;
     margin-bottom: 6px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
 }

 .logoMark {
     width: 44px;
     height: 44px;
     border-radius: 16px;
     background: radial-gradient(circle at 30% 30%, var(--primary-light), var(--primary));
     box-shadow: 0 0 26px var(--primary-glow);
     border: 1px solid rgba(255, 255, 255, 0.10);
     flex: 0 0 auto;
 }

 .logoText {
     opacity: 0;
     transform: translateX(-6px);
     transition: .22s ease;
     white-space: nowrap;
 }

 .sidebar:hover .logoText {
     opacity: 1;
     transform: translateX(0);
 }

 .logoText .t1 {
     font-weight: 800;
     letter-spacing: .3px;
     line-height: 1.1;
 }

 .logoText .t2 {
     font-size: 12px;
     color: rgba(255, 255, 255, 0.65);
     margin-top: 2px;
 }

 /* nav item */
 .dash-navItem {
     width: 100%;
     height: 48px;
     border-radius: 16px;
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 0 12px;
     text-decoration: none;
     color: rgba(255, 255, 255, 0.72);
     transition: .18s ease;
     user-select: none;
 }

 /* IMPORTANT: no extra space on closed sidebar */
 .dash-navItem i {
     width: 44px;
     /* fixed icon slot = perfect center in closed */
     display: grid;
     place-items: center;
     font-size: 1.15rem;
     flex: 0 0 44px;
 }

 .dash-navItem span {
     opacity: 0;
     transform: translateX(-6px);
     transition: .18s ease;
     font-weight: 700;
     letter-spacing: .1px;
     white-space: nowrap;
 }

 .sidebar:hover .dash-navItem span {
     opacity: 1;
     transform: translateX(0);
 }

 .dash-navItem:hover {
     background: rgba(255, 255, 255, 0.06);
     color: rgba(255, 255, 255, 0.92);
     transform: translateY(-1px);
 }

 .dash-navItem.active {
     background: linear-gradient(135deg, var(--primary), var(--primary-light));
     color: #fff;
     box-shadow: 0 0 20px var(--primary-glow);
 }

 .navSpacer {
     flex: 1 1 auto;
 }

 /* dash-wrapper spacing adjusts on hover */
 .dash-wrapper {
     margin-left: 126px;
     transition: margin-left .34s ease;
 }

 .sidebar:hover~.dash-wrapper {
     margin-left: 290px;
 }

 @media (max-width: 992px) {

     .sidebar {
         position: fixed;
         top: 0;
         left: -100%;
         height: 100vh;
         width: 280px;
         border-radius: 0 24px 24px 0;
         padding-top: 24px;
         transition: left 0.35s ease;
     }

     .sidebar.open {
         left: 0;
     }

     .dash-wrapper {
         margin-left: 0 !important;
     }

     .sidebar:hover {
         width: 280px;
         /* disable hover expansion */
     }

     .dash-navItem span,
     .logoText {
         opacity: 1 !important;
         transform: none !important;
     }

     .dash-navItem i {
         width: 36px;
         flex: 0 0 36px;
     }
 }

 /* Dropdown wrapper */
.dash-navDropdown {
  width: 100%;
}

/* Toggle row: keep your same dash-navItem look */
.dash-navToggle {
  position: relative;
}

/* Caret on right */
.dd-caret {
  margin-left: auto;
  width: auto !important;
  flex: 0 0 auto !important;
  font-size: 0.9rem;
  opacity: 0;
  transform: rotate(0deg);
  transition: .2s ease;
}

/* show caret only when sidebar is expanded */
.sidebar:hover .dd-caret,
@media (max-width: 992px) {
  .dd-caret { opacity: 1; }
}

/* submenu container */
.dash-navSub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding-left: 6px;
}

/* open state */
.dash-navDropdown.open .dash-navSub {
  max-height: 140px; /* enough for 2 items */
}

/* rotate caret when open */
.dash-navDropdown.open .dd-caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* sub items look like nav but slightly smaller + indented */
.dash-subItem {
  width: 100%;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  margin-top: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: .18s ease;
}

/* icon slot smaller for subitems */
.dash-subItem i {
  width: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

/* text reveal same behavior as main items */
.dash-subItem span {
  opacity: 0;
  transform: translateX(-6px);
  transition: .18s ease;
  font-weight: 700;
  white-space: nowrap;
}

.sidebar:hover .dash-subItem span {
  opacity: 1;
  transform: translateX(0);
}

/* hover + active styles aligned with theme */
.dash-subItem:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.dash-subItem.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 0 18px var(--primary-glow);
  border-color: rgba(255, 255, 255, 0.10);
}

 /* ---------- Hamburger Button ---------- */
 .hamburger-btn {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(255, 255, 255, 0.12);
     color: #fff;
     width: 46px;
     height: 46px;
     border-radius: 14px;
     font-size: 1.2rem;
     display: grid;
     place-items: center;
 }

 /* ---------- Mobile Header ---------- */
 .mobile-header {
     display: flex;
     align-items: center;
 }

 /* ---------- Overlay ---------- */
 #overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.55);
     opacity: 0;
     pointer-events: none;
     transition: 0.3s;
     z-index: 900;
 }

 #overlay.show {
     opacity: 1;
     pointer-events: auto;
 }


 /* ============ CARDS ============ */
 .bento-card {
     background: var(--glass);
     border: 1px solid rgba(255, 255, 255, 0.06);
     border-radius: 28px;
     padding: 26px;
     box-shadow: var(--shadow);
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     position: relative;
     overflow: hidden;
     transition: .22s ease;
 }

 .bento-card:hover {
     border-color: rgba(225, 48, 108, 0.35);
     transform: translateY(-3px);
 }

 .bento-card::before {
     content: '';
     position: absolute;
     inset: -70px -110px;
     background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .18) 50%, transparent 65%);
     transform: translateX(-55%);
     opacity: 0;
     pointer-events: none;
 }

 .bento-card:hover::before {
     opacity: .85;
     animation: sweep 1.1s ease;
 }

 @keyframes sweep {
     from {
         transform: translateX(-60%);
     }

     to {
         transform: translateX(60%);
     }
 }

 .muted {
     color: var(--muted);
 }

 .fw-800 {
     font-weight: 800;
 }

 .balance-text {
     font-size: clamp(28px, 3.2vw, 44px);
     font-weight: 800;
     letter-spacing: -1px;
 }

 /* --- Profile Button Styling --- */
 .dash-profile-btn {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 6px 16px 6px 8px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 50px;
     cursor: pointer;
     transition: 0.3s;
     text-decoration: none;
     color: white;
 }

 .dash-profile-btn:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: var(--primary);
 }

 .dash-profile-img {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid var(--primary);
 }

 .dash-profile-info {
     line-height: 1.2;
 }

 .dash-profile-status {
     font-size: 0.65rem;
     color: var(--accent);
     font-weight: 600;
     text-transform: uppercase;
 }


 /* referral */
 .refBox {
     border-radius: 18px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: rgba(255, 255, 255, 0.03);
     padding: 14px;
 }

 .refInput {
     border: 1px solid rgba(255, 255, 255, 0.12) !important;
     background: rgba(0, 0, 0, 0.18) !important;
     color: #fff !important;
     border-radius: 14px !important;
     padding: 12px 14px !important;
 }

 .progress-ring-container {
     position: relative;
     width: 180px;
     height: 180px;
     margin: 0 auto;
 }

 .ring-svg {
     transform: rotate(-90deg);
     width: 180px;
     height: 180px;
 }

 .ring-bg {
     fill: none;
     stroke: rgba(255, 255, 255, 0.07);
     stroke-width: 12;
 }

 .ring-bar {
     fill: none;
     stroke: var(--primary);
     stroke-width: 12;
     stroke-linecap: round;
     stroke-dasharray: 439.82;
     /* 2*pi*70 */
     stroke-dashoffset: 0;
     filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.65));
     transition: stroke-dashoffset 700ms ease;
 }

 /* buttons */
 .dash-action-btn {
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
     border: none;
     border-radius: 15px;
     padding: 12px 16px;
     font-weight: 800;
     color: #fff;
     box-shadow: 0 12px 26px var(--primary-glow);
     transition: .2s ease;
     position: relative;
     overflow: hidden;
     white-space: nowrap;
 }

 .dash-action-btn::after {
     content: "";
     position: absolute;
     inset: -40% -60%;
     background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, .20) 50%, transparent 62%);
     transform: translateX(-45%);
     opacity: 0;
     transition: .55s ease;
 }

 .dash-action-btn:hover {
     transform: translateY(-1px);
     box-shadow: 0 18px 36px var(--primary-glow);
 }

 .dash-action-btn:hover::after {
     opacity: 1;
     transform: translateX(45%);
 }

 .view-btn {
    padding: 7px 21px;
 }

 .soft-btn {
     border: 1px solid rgba(255, 255, 255, 0.14);
     background: rgba(255, 255, 255, 0.04);
     color: rgba(255, 255, 255, 0.92);
     border-radius: 15px;
     padding: 12px 16px;
     font-weight: 800;
     transition: .2s ease;
     white-space: nowrap;
 }

 .soft-btn:hover {
     background: rgba(255, 255, 255, 0.08);
     transform: translateY(-1px);
 }

 /* packages list */
 .pkgItem {
     border-radius: 18px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     background: rgba(255, 255, 255, 0.03);
     padding: 14px 16px;
     transition: .2s ease;
 }

 .pkgItem:hover {
     border-color: rgba(225, 48, 108, 0.22);
     transform: translateY(-2px);
 }

 .pkgBadge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 8px 10px;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, 0.10);
     background: rgba(255, 255, 255, 0.04);
     color: rgba(255, 255, 255, 0.88);
     font-weight: 800;
     font-size: 12px;
     white-space: nowrap;
 }

 .pkgDot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: var(--primary);
     box-shadow: 0 0 14px var(--primary-glow);
 }

 /* Dashboard styles end */


 /* package purchase styles start */

 .pckg-body {
     background: var(--bg-dark);
     color: var(--text);
     font-family: 'Plus Jakarta Sans', sans-serif;
     min-height: 100vh;
     overflow-x: hidden;
     position: relative;
 }

 /* Animated Background Elements */
 .floating-dots {
     position: fixed;
     width: 100%;
     height: 100%;
     z-index: -1;
     pointer-events: none;
 }

 .dot {
     position: absolute;
     width: 6px;
     height: 6px;
     background: var(--primary);
     border-radius: 50%;
     opacity: 0.3;
     animation: floatDot 15s infinite linear;
 }

 @keyframes floatDot {
     0% {
         transform: translateY(0) translateX(0);
         opacity: 0.1;
     }

     25% {
         transform: translateY(-100px) translateX(100px);
         opacity: 0.4;
     }

     50% {
         transform: translateY(-50px) translateX(-50px);
         opacity: 0.2;
     }

     75% {
         transform: translateY(50px) translateX(100px);
         opacity: 0.4;
     }

     100% {
         transform: translateY(0) translateX(0);
         opacity: 0.1;
     }
 }

 /* Stylish Header */
 .pckg-header-section {
     padding: 0 0 80px;
     position: relative;
     text-align: center;
 }

 .pckg-main-title {
     font-size: 4rem;
     font-weight: 900;
     text-transform: uppercase;
     letter-spacing: -1px;
     margin-bottom: 1rem;
     position: relative;
     display: inline-block;
 }

 .pckg-main-title::before {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 200px;
     height: 6px;
     background: linear-gradient(90deg, transparent, var(--primary), transparent);
     border-radius: 3px;
 }

 .title-gradient {
     background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .pckg-subtitle {
     font-size: 1.5rem;
     font-weight: 300;
     letter-spacing: 2px;
     text-transform: uppercase;
     margin-top: 2rem;
     opacity: 0.8;
 }

 /* Package Grid */
 .package-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     padding: 40px 0 100px;
     position: relative;
 }

 .package-card {
     background: var(--card-dark);
     border-radius: 25px;
     padding: 35px 30px;
     position: relative;
     overflow: hidden;
     border: 1px solid rgba(255, 255, 255, 0.07);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }

 /* Hover Effects - Keeping Same Theme Color */
 .package-card:hover {
     transform: translateY(-15px) scale(1.02);
     border-color: var(--primary);
     box-shadow:
         0 30px 60px var(--primary-glow),
         0 0 0 1px rgba(225, 48, 108, 0.3);
     background: linear-gradient(145deg, var(--card-dark), #141725);
 }

 /* Glow Effect */
 .package-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--primary), var(--primary-light));
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .package-card:hover::after {
     opacity: 1;
 }

 /* Card Content */
 .card-inner {
     position: relative;
     z-index: 2;
 }

 /* Badge with Counter */
 .package-badge {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 10px 20px;
     background: linear-gradient(135deg, var(--primary), var(--secondary));
     color: white;
     border-radius: 50px;
     font-weight: 800;
     font-size: 0.9rem;
     letter-spacing: 1px;
     margin-bottom: 25px;
     box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
 }

 .counter-badge {
     background: rgba(0, 0, 0, 0.3);
     padding: 4px 10px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
 }

 /* Package Title */
 .package-title {
     font-size: 2.8rem;
     font-weight: 900;
     margin: 15px 0;
     background: linear-gradient(to right, var(--primary), var(--primary-light));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     position: relative;
     display: inline-block;
 }

 .package-title::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 60px;
     height: 3px;
     background: var(--primary);
     border-radius: 2px;
 }

 /* Price Display */
 .price-display {
     margin: 25px 0;
     position: relative;
 }

 .price-amount {
     font-size: 1.5rem;
     font-weight: 900;
     line-height: 1;
     color: var(--text);
     position: relative;
 }

 .price-currency {
     font-size: 1.2rem !important;
     vertical-align: top;
     margin-right: 5px;
     color: var(--primary);
     font-weight: 700;
 }

 .price-sub {
     font-size: 0.9rem;
     color: var(--text-dim);
     margin-top: 5px;
     letter-spacing: 1px;
 }

 /* Stats Row */
 .stats-row {
     display: flex;
     justify-content: space-between;
     margin: 25px 0;
     padding: 15px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

 .stat-item {
     text-align: center;
     flex: 1;
 }

 .stat-value {
     font-size: 1.8rem;
     font-weight: 800;
     color: var(--primary);
 }

 .stat-label {
     font-size: 0.8rem;
     color: var(--text-dim);
     margin-top: 5px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Action Buttons */
 .pckg-action-buttons {
     display: flex;
     gap: 10px;
     margin-top: 30px;
 }

 .pckg-btn-buy {
     flex: 2;
     background: linear-gradient(135deg, var(--primary), var(--secondary));
     border: none;
     border-radius: 15px;
     padding: 18px 25px;
     font-weight: 800;
     font-size: 1rem;
     letter-spacing: 1px;
     color: white;
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .pckg-btn-buy::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: 0.5s;
 }

 .pckg-btn-buy:hover::before {
     left: 100%;
 }

 .pckg-btn-buy:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(225, 48, 108, 0.4);
 }

 .pckg-btn-buy:active {
     transform: translateY(-1px);
 }

 .pckg-btn-buy.locked {
     background: rgba(255, 255, 255, 0.05);
     color: var(--text-dim);
     cursor: not-allowed;
     opacity: 0.7;
 }

 .pckg-btn-buy.locked:hover {
     transform: none;
     box-shadow: none;
 }

 .pckg-btn-info {
     flex: 1;
     background: transparent;
     border: 2px solid var(--primary);
     border-radius: 15px;
     padding: 18px;
     font-weight: 600;
     color: var(--primary);
     transition: all 0.3s ease;
 }

 .pckg-btn-info:hover {
     background: var(--primary);
     color: white;
 }

 /* Purchase Counter */
 .purchase-counter {
     position: absolute;
     top: 20px;
     right: 20px;
     background: rgba(225, 48, 108, 0.2);
     border: 1px solid rgba(225, 48, 108, 0.3);
     border-radius: 50px;
     padding: 8px 15px;
     font-size: 0.9rem;
     font-weight: 700;
     color: var(--primary);
     backdrop-filter: blur(10px);
 }

 /* Unlock Animation */
 .unlock-animation {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.9);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 1000;
 }

 .confetti {
     position: absolute;
     width: 10px;
     height: 10px;
     background: var(--primary);
     border-radius: 50%;
     animation: confettiFall 1s ease-out forwards;
 }

 @keyframes confettiFall {
     0% {
         transform: translateY(-100px) rotate(0deg);
         opacity: 1;
     }

     100% {
         transform: translateY(100vh) rotate(360deg);
         opacity: 0;
     }
 }

 /* Stats Bar */
 .pckg-stats-bar {
     background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(138, 43, 226, 0.1));
     border-radius: 20px;
     padding: 30px;
     margin: 50px auto;
     max-width: 1000px;
     display: flex;
     justify-content: space-around;
     text-align: center;
     border: 1px solid rgba(225, 48, 108, 0.2);
     backdrop-filter: blur(10px);
 }

 .stat-item-large h3 {
     font-size: 3rem;
     font-weight: 900;
     background: linear-gradient(to right, var(--primary), var(--accent));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin: 0;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .package-grid {
         grid-template-columns: 1fr;
         padding: 20px;
     }

     .package-card {
         padding: 25px 20px;
     }

     .pckg-main-title {
         font-size: 3rem;
     }

     .package-title {
         font-size: 2.2rem;
     }

     .price-amount {
         font-size: 2.8rem;
     }

     .pckg-stats-bar {
         flex-direction: column;
         gap: 30px;
     }

     .pckg-action-buttons {
         flex-direction: column;
     }
 }

 /* package purchase styles end */


 /* History page styles start */
 .hist-body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     color: var(--text);
     min-height: 100vh;

     /* Attractive dark background */
     background:
         radial-gradient(circle at 15% 15%, rgba(225, 48, 108, 0.18), transparent 45%),
         radial-gradient(circle at 85% 85%, rgba(0, 201, 255, 0.15), transparent 45%),
         linear-gradient(135deg, #07070c, #0d0f1a);
 }

 /* Glass card */
 .history-card {
     background: rgba(18, 20, 29, 0.92);
     backdrop-filter: blur(16px);
     border-radius: 24px;
     padding: 28px;
     border: 1px solid rgba(255, 255, 255, 0.06);
     box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
 }

 /* Header */
 .hist-section-title {
     font-weight: 800;
     letter-spacing: 0.3px;
 }

 .section-sub {
     color: var(--text-dim);
     font-size: 14px;
 }

 /* ================= DataTables DARK ================= */

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

 /* Length & search */
 .dataTables_length label,
 .dataTables_filter label {
     color: var(--text-dim);
     font-size: 14px;
 }

 .dataTables_filter input,
 .dataTables_length select {
     background: #0E1018 !important;
     border: 1px solid rgba(255, 255, 255, 0.12) !important;
     color: var(--text) !important;
     border-radius: 10px;
     padding: 6px 10px;
     margin: 0 4px;
 }

 .dataTables_length select option {
     color: white !important;
 }

 /* Table */
 .hist-table {
     --bs-table-bg: transparent;
     --bs-table-color: var(--text);
     margin-top: 18px;
 }

 .hist-table thead th {
     color: var(--text-dim);
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
 }

 .hist-table tbody td {
     border-bottom: 1px solid rgba(255, 255, 255, 0.06);
     padding: 16px 14px;
     font-size: 14px;
 }

 /* Hover row */
 .hist-table tbody tr {
     transition: background 0.25s ease;
 }

 .hist-table tbody tr:hover {
     background: rgba(225, 48, 108, 0.08);
 }

 /* Date */
 .date-box small {
     color: var(--text-dim);
 }

 /* Level badge */
 .level-badge {
     padding: 6px 12px;
     border-radius: 999px;
     font-size: 12px;
     font-weight: 800;
     background: linear-gradient(135deg, var(--primary), var(--primary-light));
     box-shadow: 0 0 16px var(--primary-glow);
     display: inline-block;
 }

 /* Source */
 .source {
     color: var(--text-dim);
 }

 /* Referral */
 .ref {
     font-weight: 700;
     letter-spacing: 0.6px;
 }

 /* Amount */
 .amount {
     font-weight: 800;
     color: var(--success);
     font-size: 15px;
 }

 /* Pagination */
 .dataTables_paginate .page-link {
     background: #0E1018;
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--text-dim);
 }

 .dataTables_paginate .page-item.active .page-link {
     background: var(--primary);
     border-color: var(--primary);
     color: #fff;
 }

 .dataTables_paginate .page-link:hover {
     background: rgba(225, 48, 108, 0.25);
     color: #fff;
 }

 /* Info text */
 .dataTables_info {
     color: var(--text-dim);
 }

 /* History page styles end */

 /*withdraw page start*/
 .wdrw-div {
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
            /*background:
                radial-gradient(circle at 12% 18%, rgba(225, 48, 108, 0.20), transparent 48%),
                radial-gradient(circle at 86% 82%, rgba(0, 201, 255, 0.14), transparent 45%),
                radial-gradient(circle at 55% 42%, rgba(138, 43, 226, 0.12), transparent 55%),
                linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);*/
        }

        .gridMask {
            position: fixed;
            inset: 0;
            pointer-events: none;
            opacity: .08;
            background:
                linear-gradient(to right, rgba(255, 255, 255, .12) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, .12) 1px, transparent 1px);
            background-size: 56px 56px;
            mask-image: radial-gradient(circle at 22% 18%, black 12%, transparent 62%);
            z-index: 0;
        }

        .wrapper {
            position: relative;
            z-index: 1;
            padding: 0 36px 60px 14px;
            transition: margin-left .32s ease;
        }

        .sidebar:hover~.wrapper {
            margin-left: 290px;
        }

        @media (max-width: 992px) {
            .wrapper {
                margin-left: 0;
                padding: 18px 14px 40px;
            }

            .sidebar:hover~.wrapper {
                margin-left: 0;
            }

            .navSpacer {
                display: none;
            }

            .pckg-header-section {
                padding-top: 10px;
            }
        }

        @media (min-width: 992px) {
            .hdr-cont {
                width: 100%;
            }
        }

        .glassCard {
            background: rgba(18, 20, 29, 0.86);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 26px;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            overflow: hidden;
            position: relative;
        }

        .glassCard::before {
            content: "";
            position: absolute;
            inset: -120px -160px;
            background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, .16) 50%, transparent 62%);
            transform: translateX(-55%);
            opacity: 0;
            pointer-events: none;
        }

        .glassCard:hover::before {
            opacity: .9;
            animation: sweep 1.15s ease;
        }

        @keyframes sweep {
            from {
                transform: translateX(-60%);
            }

            to {
                transform: translateX(60%);
            }
        }

        .muted {
            color: var(--text-dim);
        }

        .fw-800 {
            font-weight: 800;
        }

        .fieldLabel {
            font-weight: 800;
            font-size: 12px;
            letter-spacing: .25px;
            color: rgba(255, 255, 255, 0.86);
            margin-bottom: 8px;
        }

        .inputX,
        .selectX {
            background: rgba(0, 0, 0, 0.22) !important;
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            color: #fff !important;
            border-radius: 16px !important;
            padding: 12px 14px !important;
        }

        .inputX::placeholder {
            color: rgba(255, 255, 255, 0.45);
        }

        .inputX:focus,
        .selectX:focus {
            border-color: rgba(225, 48, 108, 0.55) !important;
            box-shadow: 0 0 0 0.18rem rgba(225, 48, 108, 0.18) !important;
        }

        .iconInput {
            position: relative;
        }

        .iconInput i {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.55);
            pointer-events: none;
        }

        .iconInput .inputX {
            padding-left: 42px !important;
        }

        .chipRow {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .chip {
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(255, 255, 255, 0.88);
            border-radius: 999px;
            padding: 10px 12px;
            font-weight: 800;
            font-size: 12px;
            cursor: pointer;
            transition: .2s ease;
            user-select: none;
        }

        .chip:hover {
            transform: translateY(-1px);
            border-color: rgba(225, 48, 108, 0.30);
            background: rgba(225, 48, 108, 0.10);
        }

        .summaryBox {
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            padding: 14px;
        }

        .summaryRow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            padding: 7px 0;
            font-size: 13px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.88);
        }

        .summaryRow .k {
            color: var(--text-dim);
            font-weight: 700;
        }

        .summaryRow .v {
            font-weight: 900;
        }

        .summaryRow .ok {
            color: var(--success);
        }

        .butnPrimary {
            border: none;
            width: 100%;
            border-radius: 16px;
            padding: 12px 14px;
            font-weight: 900;
            letter-spacing: .2px;
            color: #fff;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            box-shadow: 0 18px 55px var(--primary-glow);
            transition: .2s ease;
            position: relative;
            overflow: hidden;
        }

        .butnPrimary::after {
            content: "";
            position: absolute;
            inset: -40% -60%;
            background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, .20) 50%, transparent 62%);
            transform: translateX(-45%);
            opacity: 0;
            transition: .55s ease;
        }

        .butnPrimary:hover {
            transform: translateY(-1px);
            box-shadow: 0 24px 70px var(--primary-glow);
        }

        .butnPrimary:hover::after {
            opacity: 1;
            transform: translateX(45%);
        }

        .butnGhost {
            width: 100%;
            border-radius: 16px;
            padding: 12px 14px;
            font-weight: 900;
            letter-spacing: .2px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: rgba(255, 255, 255, 0.92);
            transition: .2s ease;
        }

        .butnGhost:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-1px);
        }

        .nexusTable {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 10px;
        }

        .nexusTable th {
            color: var(--text-dim);
            font-size: 12px;
            letter-spacing: .04em;
            text-transform: uppercase;
            padding: 10px 14px;
            font-weight: 800;
        }

        .nexusTable td {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 14px;
            font-weight: 700;
        }

        .nexusTable tr td:first-child {
            border-radius: 14px 0 0 14px;
        }

        .nexusTable tr td:last-child {
            border-radius: 0 14px 14px 0;
        }

        .pillStatus {
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 900;
            border: 1px solid rgba(255, 255, 255, 0.10);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .pillStatus.ok {
            color: var(--success);
            background: rgba(0, 212, 170, 0.10);
            border-color: rgba(0, 212, 170, 0.22);
        }

        .pillStatus.wait {
            color: #ffc107;
            background: rgba(255, 193, 7, 0.10);
            border-color: rgba(255, 193, 7, 0.22);
        }

        .dot-status {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
            box-shadow: 0 0 12px currentColor;
        }
 /*withdraw page end*/

 /*profile start*/
 .profile-container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 46px 18px 70px;
      position: relative;
      height: 100vh;
    }

    .profile-container:before {
      content: "";
      position: absolute;
      inset: -40px -20px auto -20px;
      height: 320px;
      background:
        radial-gradient(circle at 20% 40%, rgba(225, 48, 108, .14), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(0, 242, 255, .10), transparent 55%);
      filter: blur(10px);
      pointer-events: none;
      z-index: 0;
    }

    .profile-hero {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 26px;
      padding: 30px;
      border-radius: calc(var(--radius) + 6px);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .profile-hero:before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(225, 48, 108, .75), rgba(0, 242, 255, .45), rgba(138, 43, 226, .40), rgba(225, 48, 108, .70));
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: .55;
      pointer-events: none;
    }

    .profile-hero:after {
      content: "";
      position: absolute;
      inset: auto -40px -60px auto;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle at 30% 30%, rgba(225, 48, 108, .25), transparent 55%), radial-gradient(circle at 70% 60%, rgba(0, 242, 255, .15), transparent 55%);
      filter: blur(2px);
      transform: rotate(18deg);
      pointer-events: none;
      opacity: .9;
    }

    .avatar-wrapper {
      position: relative;
      width: 110px;
      height: 110px;
      border-radius: 18px;
      flex: 0 0 auto;
      isolation: isolate;
    }

    .avatar-wrapper:before {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 24px;
      background: radial-gradient(circle at 30% 30%, rgba(225, 48, 108, .35), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(0, 242, 255, .18), transparent 60%);
      filter: blur(8px);
      z-index: -1;
    }

    .avatar-wrapper img {
      width: 100%;
      height: 100%;
      border-radius: 18px;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, .10);
      box-shadow: var(--shadow-soft);
      transform: translateZ(0);
    }

    .upload-trigger {
      position: absolute;
      bottom: -10px;
      right: -10px;
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .12);
      background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .22), rgba(255, 255, 255, .06)), linear-gradient(135deg, rgba(225, 48, 108, .95), rgba(194, 24, 91, .95));
      box-shadow: 0 14px 30px rgba(225, 48, 108, .22);
      transition: transform .2s ease, filter .2s ease;
    }

    .upload-trigger:hover {
      transform: translateY(-2px) scale(1.03);
      filter: brightness(1.06);
    }

    .upload-trigger:active {
      transform: translateY(0) scale(.98);
    }

    .hero-info h1 {
      font-weight: 800;
      letter-spacing: .2px;
      font-size: 2rem;
      margin: 0 0 10px;
      line-height: 1.1;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 12px;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .4px;
      text-transform: uppercase;
      background: rgba(0, 242, 255, .08);
      border: 1px solid rgba(0, 242, 255, .20);
      color: var(--accent);
      box-shadow: 0 10px 25px rgba(0, 242, 255, .08);
    }

    .bento-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 22px;
    }

    @media (max-width: 768px) {
      .profile-hero {
        flex-direction: column;
        text-align: center;
        padding: 26px;
      }

      .bento-grid {
        grid-template-columns: 1fr;
      }
    }

    .bento-card {
      position: relative;
      border-radius: var(--radius);
      padding: 26px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012)), var(--bg-card);
      border: 1px solid rgba(255, 255, 255, .08);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      overflow: hidden;
      transform: translateZ(0);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }


    .bento-card:hover {
      /* transform: translateY(-4px); */
      box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
      border-color: rgba(225, 48, 108, .22);
    }

    .card-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.06rem;
      font-weight: 800;
      margin-bottom: 18px;
      letter-spacing: .2px;
    }

    .card-title i {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      color: #fff;
      background: rgba(225, 48, 108, .14);
      border: 1px solid rgba(225, 48, 108, .25);
      box-shadow: 0 10px 25px rgba(225, 48, 108, .10);
    }

    .form-label {
      font-size: .82rem;
      color: var(--text-sub);
      margin-bottom: 8px;
    }

    .form-control {
      background: rgba(0, 0, 0, .22);
      border: 1px solid rgba(255, 255, 255, .07);
      color: #fff;
      border-radius: 14px;
      padding: 12px 14px;
      margin-bottom: 16px;
      transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
    }

    .form-control::placeholder {
      color: rgba(148, 163, 184, .75);
    }

    .form-control:focus {
      background: rgba(0, 0, 0, .28);
      border-color: rgba(225, 48, 108, .65);
      color: #fff;
      box-shadow: 0 0 0 4px rgba(225, 48, 108, .12);
    }

    .form-control:disabled {
      opacity: .55 !important;
      cursor: not-allowed;
    }

    .btn-update {
      position: relative;
      width: 100%;
      border: none;
      padding: 14px 18px;
      border-radius: 16px;
      font-weight: 800;
      letter-spacing: .2px;
      color: #fff;
      background: linear-gradient(135deg, rgba(225, 48, 108, 1), rgba(194, 24, 91, 1));
      box-shadow: 0 18px 40px rgba(225, 48, 108, .20);
      transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
      overflow: hidden;
    }

    .btn-update:before {
      content: "";
      position: absolute;
      inset: -2px;
      background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .20), transparent 45%);
      opacity: .9;
      pointer-events: none;
    }

    .btn-update:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
      box-shadow: 0 24px 60px rgba(225, 48, 108, .25);
    }

    .btn-update:active {
      transform: translateY(0);
    }

    .mini-toast {
      position: fixed;
      right: 18px;
      bottom: 18px;
      background: rgba(15, 18, 25, .92);
      border: 1px solid rgba(255, 255, 255, .10);
      border-radius: 16px;
      padding: 12px 14px;
      box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
      display: flex;
      align-items: center;
      gap: 10px;
      transform: translateY(16px);
      opacity: 0;
      pointer-events: none;
      transition: .25s ease;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 9999;
    }

    .mini-toast.show {
      transform: translateY(0);
      opacity: 1;
    }

    .mini-toast .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 0 6px rgba(225, 48, 108, .16);
    }

    .mini-toast .txt {
      font-weight: 700;
      font-size: .9rem;
    }

    .mini-toast .sub {
      font-size: .78rem;
      color: var(--text-sub);
      margin-top: 1px;
    }
 /*profile end*/