 :root {
            --primary: #6C5CE7;
            --primary-dark: #5649C0;
            --secondary: #FD79A8;
            --accent: #00CEC9;
            --light: #F8F9FA;
            --dark: #2D3436;
            --gray: #636E72;
            --success: #00B894;
            --danger: #D63031;
            --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(0.25turn, #d0dbda, #dddfeb, #cad1ed);
            color: var(--dark);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }

        .container {
            width: 100%;
            max-width: 100%;
            padding: 0;
            margin: 0 auto;
        }

        /* Improved Tabs */
        .tabs-container {
            padding: 15px 15px 0;
            margin-bottom: 5px;
        }

        .tabs {
            display: flex;
            background: white;
            border-radius: 12px;
            padding: 5px;
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
        }

        .tab {
            padding: 12px 0;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray);
            cursor: pointer;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
            text-align: center;
            flex: 1;
            user-select: none;
            border-radius: 8px;
        }

        .tab.active {
            color: white;
            font-weight: 600;
        }

        .tab-slider {
            position: absolute;
            top: 5px;
            bottom: 5px;
            left: 5px;
            width: calc(50% - 5px);
           background: linear-gradient(0.25turn, #9199bf, #585b70, #9182d9);
            border-radius: 8px;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 0;
            box-shadow: 0 2px 8px rgba(108, 92, 231, 0.3);
        }

        /* Balance Card */
        .balance-card {
            background: linear-gradient(0.25turn, #9199bf, white, #626082);
            border-radius: 16px;
            margin: 15px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }

        .balance-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        .balance-item {
            text-align: center;
            flex: 1;
        }

        .divider {
            width: 1px;
            background: rgba(0, 0, 0, 0.1);
            margin: 0 10px;
        }

        .balance-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .balance-label {
            font-size: 12px;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Section Title */
        .section-title {
            display: flex;
            align-items: center;
            padding: 15px 20px 10px;
            font-size: 16px;
            font-weight: 600;
            color: var(--dark);
        }

        .section-title img {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }

        /* Plan Grid */
        .plan-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            padding: 0 15px 15px;
        }

        .plan-item {
            background: white;
            border-radius: 12px;
            padding: 15px 10px;
            text-align: center;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .plan-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .plan-item.active {
            border-color: var(--primary);
            background: rgba(108, 92, 231, 0.05);
            color: var(--primary);
            position: relative;
        }

        .plan-item.active::after {
            content: "✓";
            position: absolute;
            top: 2px;
            right: 5px;
            color: var(--primary);
            font-size: 12px;
            font-weight: bold;
        }

        /* Input Group */
        .input-group {
            padding: 0 15px 15px;
            position: relative;
        }


        select.input-field {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 15px;
        }

        /* Recharge Button */
        .recharge-btn {
           background: linear-gradient(0.25turn, #b471e3, #585b70, #9182d9);
            color: white;
            
            border: none;
            border-radius: 12px;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
            width: calc(80% - 30px);
            margin: 0 15px 20px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .recharge-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
        }

        .recharge-btn:active {
            transform: scale(0.98);
        }

        /* Rules Section */
        .rules {
            background: white;
            border-radius: 16px;
            padding: 15px;
            margin: 0 15px;
            box-shadow: var(--card-shadow);
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }

        .rules p {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }

        .rules p::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* Loading Overlay */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            flex-direction: column;
        }

        .loading-content {
            background: white;
            border-radius: 16px;
            padding: 25px;
            text-align: center;
            max-width: 80%;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(108, 92, 231, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .loading-text {
            font-weight: 500;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(108, 92, 231, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .progress {
            height: 100%;
            width: 0;
           background: linear-gradient(0.25turn, #3f87a6, #585b70, #f69d3c);
            animation: progress 2s ease-in-out infinite;
        }

        @keyframes progress {
            0% { width: 0; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0; margin-left: 100%; }
        }

        /* Footer Navigation */
        .footer-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 10;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .footer-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--gray);
            text-decoration: none;
            font-size: 11px;
            transition: var(--transition);
            padding: 5px;
            border-radius: 8px;
            width: 20%;
        }

        .footer-nav-item i {
            font-size: 18px;
            margin-bottom: 3px;
            transition: var(--transition);
        }

        .footer-nav-item.active {
            color: var(--primary);
            transform: translateY(-5px);
        }

        .footer-nav-item.active i {
            color: var(--primary);
            transform: scale(1.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 400px) {
            .plan-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .balance-card {
                padding: 15px;
                margin: 10px;
            }
            
            .balance-value {
                font-size: 16px;
            }
            
            .input-field {
                padding: 12px;
            }
            
            .tab {
                font-size: 13px;
                padding: 10px 0;
            }
        }


        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
            .input-icon {
            position: relative;
        }

        .input-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            font-size: 16px;
        }

        .input-field {
            width: 100%;
            padding: 14px 15px 14px 45px;
            border: 1px solid #f0f0f0;
            border-radius: 12px;
            font-size: 14px;
            background-color: #fafafa;
            transition: var(--transition);
            font-family: 'Poppins', sans-serif;
        }

        .input-field:focus {
            border-color: var(--primary);
            outline: none;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
        }
                .profile-header {
           background: linear-gradient(0.25turn, #9199bf, #758da1, #6cc4b9);
            padding: 30px 20px;
            border-radius: 0 0 30px 30px;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
            margin-bottom: 20px;
        }

        .profile-header::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .profile-header::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -30px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .profile-content {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .profile-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .profile-info {
            margin-left: 16px;
        }

        .profile-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .profile-phone {
            font-size: 14px;
            opacity: 0.9;
            display: flex;
            align-items: center;
        }

        .profile-phone i {
            margin-right: 6px;
            font-size: 12px;
        }
        /* Code 1*/
P, li, h1, h2, h3, h4, h5, h6 {
  user-select:none;
}
/* Code 2*/
Body {
  user-select:none;
}
.app-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(0.25turn, #9199bf, #758da1, #6cc4b9);
    padding: 24px 30px;
    color: #fff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.left-section {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 10px;
}

.user-info .welcome-text {
    font-size: 16px;
    font-weight: bold;
}

.user-info .greeting {
    font-size: 14px;
    opacity: 0.9;
}

.right-section {
    text-align: right;
}

.withdraw-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.withdraw-box i {
    margin-right: 6px;
    color: #FFD700;
}

.withdraw-text {
    color: #fff;
}

.withdraw-label {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 2px;
}
