
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
            min-height: 100vh;
            color: #ffffff;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 70px;
            margin-right: -23px;
        }

         .sidebar {
            position: fixed;
            top: 0;
            /* right: 0; */
            width: 390px;
            height: 100vh;
            background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
            border-left: 2px solid #333;
            padding: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
        }

        .logo-section {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid #333;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #ffff00, #ffd700);
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #000000;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
        }

        .logo-text {
            color: #ffff00;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .logo-subtitle {
            color: #cccccc;
            font-size: 0.8rem;
        }

        .menu-section {
            flex-grow: 1;
        }

        .menu-item {
            display: block;
            width: 100%;
            padding: 15px 20px;
            background: transparent;
            border: 2px solid #333;
            border-radius: 12px;
            color: #ffffff;
            text-decoration: none;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            text-align: left;
        }

        .menu-item:hover {
            border-color: #ffff00;
            background: linear-gradient(45deg, rgba(255, 255, 0, 0.1), rgba(255, 215, 0, 0.1));
            color: #ffff00;
            transform: translateX(-5px);
            box-shadow: 0 5px 15px rgba(255, 255, 0, 0.2);
        }

        .menu-item.active {
            background: linear-gradient(45deg, #ffff00, #ffd700);
            color: #000000;
            border-color: #ffff00;
            font-weight: bold;
        }

        .menu-icon {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 0;
            border-bottom: 2px solid #333;
        }

        .header h1 {
            font-size: 3rem;
            background: linear-gradient(45deg, #ffffff, #ffff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
        }

        .header p {
            color: #cccccc;
            font-size: 1.2rem;
        }

        .wallet-section {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            padding: 20px;
            border-radius: 15px;
            border: 2px solid #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .wallet-btn {
            background: linear-gradient(45deg, #ffff00, #ffd700);
            color: #000000;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
        }

        .wallet-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 0, 0.5);
        }

        .wallet-connected {
            background: linear-gradient(45deg, #00ff00, #32cd32);
            color: #000000;
        }

        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .card {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border: 2px solid #333;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        .card:hover {
            border-color: #ffff00;
            box-shadow: 0 15px 40px rgba(255, 255, 0, 0.2);
        }

        .card-title {
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
            background: linear-gradient(45deg, #ffffff, #ffff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #ffff00;
            font-weight: bold;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            background: #000000;
            border: 2px solid #333;
            border-radius: 10px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #ffff00;
            box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
        }

        .form-select {
            width: 100%;
            padding: 15px;
            background: #000000;
            border: 2px solid #333;
            border-radius: 10px;
            color: #ffffff;
            font-size: 1rem;
            cursor: pointer;
        }

        .form-select:focus {
            outline: none;
            border-color: #ffff00;
        }

        .plan-info {
            background: #0a0a0a;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #333;
            margin-top: 15px;
        }

        .plan-info h4 {
            color: #ffff00;
            margin-bottom: 10px;
        }

        .plan-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            font-size: 0.9rem;
        }

        .plan-details span {
            color: #cccccc;
        }

        .action-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(45deg, #ffff00, #ffd700);
            color: #000000;
            border: none;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
        }

        .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 0, 0.5);
        }

        .withdraw-btn {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        }

        .withdraw-btn:hover {
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
        }

        .balance-section {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            padding: 25px;
            border-radius: 15px;
            border: 2px solid #333;
            margin-bottom: 30px;
        }

        .balance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .balance-item {
            text-align: center;
            padding: 20px;
            background: #0a0a0a;
            border-radius: 10px;
            border: 1px solid #333;
        }

        .balance-item h3 {
            color: #ffff00;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .balance-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffffff;
        }

        .referral-section {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            padding: 25px;
            border-radius: 15px;
            border: 2px solid #333;
            margin-bottom: 30px;
        }

        .referral-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #ffff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .referral-link-container {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .referral-link {
            flex: 1;
            padding: 15px;
            background: #000000;
            border: 2px solid #333;
            border-radius: 10px;
            color: #ffffff;
            font-size: 1rem;
        }

        .copy-btn {
            padding: 15px 25px;
            background: linear-gradient(45deg, #ffff00, #ffd700);
            color: #000000;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 255, 0, 0.4);
        }

        .referral-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }

        .referral-stat {
            text-align: center;
            padding: 15px;
            background: #0a0a0a;
            border-radius: 10px;
            border: 1px solid #333;
        }

        .referral-stat h4 {
            color: #ffff00;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .referral-stat-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffffff;
        }

        .summary-card {
            background: #0a0a0a;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #333;
            margin-top: 20px;
        }

        .summary-title {
            color: #ffff00;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 8px 0;
            border-bottom: 1px solid #222;
        }

        .summary-row:last-child {
            border-bottom: none;
            font-weight: bold;
            font-size: 1.1rem;
            color: #ffff00;
        }

        @media (max-width: 768px) {
            .container {
                margin-right: 0;
                padding: 10px;
            }
            
            .sidebar {
                width: 200px;
                padding: 15px;
            }
            
            .main-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .balance-grid {
                grid-template-columns: 1fr;
            }
            
            .referral-link-container {
                flex-direction: column;
            }

            .logo {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .menu-item {
                padding: 12px 15px;
                font-size: 0.9rem;
            }
        }

        .glow {
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(255, 255, 0, 0.3); }
            to { text-shadow: 0 0 30px rgba(255, 255, 0, 0.6); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
   


        /* Desktop Sidebar - Original Design */
 .sidebar {
            position: fixed;
            top: 0;
            /* right: 0; */
            width: 390px;
            height: 100vh;
            background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
            border-left: 2px solid #333;
            padding: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
        }

.container {
    margin-left: 333px; /* Space for sidebar */
    padding: -23px;
    transition: all 0.3s ease;
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #cccccc;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.menu-item:hover {
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    transform: translateX(5px);
}

.menu-item.active {
    background: linear-gradient(45deg, #ffff00, #ff8800);
    color: #000;
    font-weight: bold;
}

.menu-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Mobile Menu Toggle Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    background: linear-gradient(45deg, #ffff00, #ff8800);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 1.3rem;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.4);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Mobile Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Reset container for mobile */
    .container {
        margin-left: 0;
        padding: 15px;
        padding-top: 80px; /* Space for mobile header */
    }
    
    /* Mobile Header */
    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
        border-bottom: 2px solid #333;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    
    /* Mobile Logo */
    .mobile-logo img {
        height: 40px;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hide desktop sidebar */
    .sidebar {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        padding: 20px;
        background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
        border-right: 2px solid #333;
        border-top: 1px solid #333;
        transition: all 0.3s ease;
        overflow-y: auto;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    /* Show sidebar when active */
    .sidebar.active {
        left: 0;
    }
    
    /* Mobile logo section adjustments */
    .logo-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .logo-section img {
        height: 50px;
    }
    
    /* Mobile menu items */
    .menu-item {
        padding: 15px 18px;
        font-size: 1rem;
        margin-bottom: 8px;
        border-radius: 10px;
    }
    
    .menu-item:hover {
        transform: translateX(8px);
        box-shadow: 0 3px 10px rgba(255, 255, 0, 0.3);
    }
    
    .menu-icon {
        font-size: 1.4rem;
        margin-right: 12px;
    }
    
    /* Mobile menu animation */
    .menu-section {
        gap: 5px;
    }
    
    /* Rotate toggle icon when active */
    .mobile-menu-toggle.active {
        transform: rotate(90deg);
        background: linear-gradient(45deg, #ff8800, #ffff00);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .mobile-header {
        padding: 0 15px;
        height: 65px;
    }
    
    .container {
        padding: 10px;
        padding-top: 75px;
    }
    
    .sidebar {
        width: 250px;
        top: 65px;
        height: calc(100vh - 65px);
        padding: 15px;
    }
    
    .mobile-logo img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.2rem;
        padding: 8px 10px;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .sidebar {
        width: 220px;
    }
    
    .menu-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

.withdraw-status {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.withdraw-status.active {
    border-color: #00ff00;
    background: linear-gradient(135deg, #001a00, #002a00);
}

.withdraw-status.paused {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.withdraw-status.active .status-icon {
    background: rgba(0, 255, 0, 0.2);
}

.withdraw-status.paused .status-icon {
    background: rgba(255, 107, 107, 0.2);
}

.status-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.status-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
}

.status-message {
    font-size: 0.9rem;
    color: #cccccc;
}

.withdraw-status.active .status-message {
    color: #00ff00;
}

.withdraw-status.paused .status-message {
    color: #ff6b6b;
}

/* Form Input States */
.form-input:disabled {
    background: #1a1a1a;
    color: #666666;
    cursor: not-allowed;
    border-color: #222;
}

/* Button States */
.withdraw-btn:disabled {
    background: #666666;
    color: #999999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.withdraw-btn.enabled {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000000;
}

.withdraw-btn.enabled:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.3);
}

/* Pause Notice */
.pause-notice {
    background: linear-gradient(135deg, #2a1a1a, #3a2a2a);
    border: 2px solid #ff6b6b;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
}

.pause-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pause-icon {
    font-size: 3rem;
    color: #ff6b6b;
}

.pause-notice h4 {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin: 0;
}

.pause-notice p {
    color: #ffdddd;
    margin: 0;
    line-height: 1.5;
}

.contact-btn {
    background: linear-gradient(45deg, #ff6b6b, #cc5555);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* Loading Animation */
.status-loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .status-indicator {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .status-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .pause-content {
        gap: 12px;
    }
    
    .pause-icon {
        font-size: 2.5rem;
    }
}


.connect-wallet-btn {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.connect-wallet-btn:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.connect-wallet-btn:active {
  transform: scale(0.98);
  background-color: #cca300;
}

#disconnectBtn {
  display: none;
}


.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
}
