/* Main Container */
.ludo-deposit, .ludo-withdrawal, .ludo-kyc, .ludo-referral, .ludo-edit-profile {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #e5e7eb;
}

/* Balance Card */
.balance-card, .current-balance {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(99,102,241,0.4);
}

.balance-card .amount, .current-balance .amount {
    font-size: 2em;
    font-weight: bold;
}

/* Amount Grid */
.amount-btn {
    background: #111827;
    border: 2px solid #374151;
    color: #e5e7eb;
}

.amount-btn:hover, .amount-btn.selected {
    border-color: #6366f1;
    background: #6366f1;
    color: #fff;
    transform: scale(1.05);
}

/* Timer */
.timer {
    background: #2c0b0b;
    color: #f87171;
}

/* Payment Amount */
.payment-amount {
    background: #1f2937;
    color: #e5e7eb;
}

.payment-amount strong {
    color: #8b5cf6;
}

/* QR / UPI */
.qr-section, .upi-section {
    background: #1f2937;
    border: 1px solid #374151;
}

#upi-id {
    background: #111827;
    color: #22c55e;
}

/* Upload */
.upload-box {
    border: 2px dashed #374151;
    background: #111827;
}

.upload-label {
    color: #9ca3af;
}

/* KYC Status */
.kyc-status-box.status-approved {
    background: #052e1a;
    color: #22c55e;
}

.kyc-status-box.status-pending {
    background: #2a1a05;
    color: #f59e0b;
}

.kyc-status-box.status-rejected {
    background: #2c0b0b;
    color: #ef4444;
}

/* Upload Section */
.upload-box label {
    color: #e5e7eb;
}

.preview {
    background: #111827;
}

/* Referral */
.referral-code-section {
    background: #1f2937;
    border: 1px solid #374151;
}

.code-box, .link-box {
    background: #111827;
}

#ref-code, #ref-link {
    color: #22c55e;
}

/* Share Buttons */
.share-btn.whatsapp { background: #22c55e; }
.share-btn.telegram { background: #0ea5e9; }

/* Table */
.referral-table {
    background: #1f2937;
}

.referral-table th {
    background: #6366f1;
}

.referral-table td {
    border-bottom: 1px solid #374151;
    color: #e5e7eb;
}

/* Forms */
.form-group label {
    color: #e5e7eb;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: #111827;
    border: 2px solid #374151;
    color: #fff;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #6366f1;
}

.helper-text {
    color: #9ca3af;
}

/* Sections */
.form-section {
    background: #1f2937;
}

.form-section h4 {
    color: #8b5cf6;
}

/* Profile */
.current-image img {
    border: 3px solid #6366f1;
}

/* Transactions */
.transaction-list {
    background: #1f2937;
}

.transaction-item {
    border-bottom: 1px solid #374151;
}

.transaction-item .amount {
    color: #e5e7eb;
}

.transaction-item .date {
    color: #9ca3af;
}

/* Status Badges */
.status-badge.pending { background: #2a1a05; color: #f59e0b; }
.status-badge.approved, .status-badge.completed { background: #052e1a; color: #22c55e; }
.status-badge.rejected { background: #2c0b0b; color: #ef4444; }
.status-badge.submitted { background: #172554; color: #60a5fa; }

/* Alerts */
.alert-warning {
    background: #2a1a05;
    border-left: 4px solid #f59e0b;
    color: #fbbf24;
}

.alert-info {
    background: #172554;
    border-left: 4px solid #3b82f6;
    color: #93c5fd;
}

.alert-success {
    background: #052e1a;
    border-left: 4px solid #22c55e;
    color: #4ade80;
}

/* Responsive */
@media (max-width: 600px) {
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .upload-section {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        flex-direction: column;
    }
}