/* ========== بطاقة الرصيد + الإجراءات السريعة + العناوين ========== */
.balance-section { padding: 12px 20px; }

.balance-card {
    background: linear-gradient(135deg, #18181B 0%, #1E1E28 30%, #27273A 60%, #1A1A2E 100%);
    border: 1px solid #27272A;
    border-radius: 22px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 44px rgba(0,0,0,0.5);
}
body.light .balance-card {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 30%, #818CF8 70%, #6366F1 100%);
    border: none;
    box-shadow: 0 14px 40px rgba(99,102,241,0.25);
}
.balance-card::before {
    content: '';
    position: absolute;
    top: -60%; right: -30%;
    width: 220px; height: 220px;
    background: rgba(99,102,241,0.08);
    border-radius: 50%;
}
.balance-card::after {
    content: '';
    position: absolute;
    bottom: -50%; left: -25%;
    width: 180px; height: 180px;
    background: rgba(129,140,248,0.05);
    border-radius: 50%;
}
body.light .balance-card::before { background: rgba(255,255,255,0.06); }
body.light .balance-card::after { background: rgba(255,255,255,0.04); }

.balance-label { font-size: 14px; color: #A1A1AA; position: relative; z-index: 1; }
body.light .balance-label { color: rgba(255,255,255,0.75); }
.balance-amount {
    font-size: 44px;
    font-weight: 800;
    margin: 10px 0;
    color: #F4F4F5;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}
.balance-amount span { font-size: 16px; font-weight: 400; opacity: 0.6; letter-spacing: 0; }

.balance-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
    position: relative;
    z-index: 1;
}
.balance-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    color: #E4E4E7;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.balance-action-btn:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}
body.light .balance-action-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}
body.light .balance-action-btn:hover { background: rgba(255,255,255,0.25); }
.action-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== الإجراءات السريعة ========== */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 20px;
    margin-bottom: 28px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    background: var(--card);
    border: 1.5px solid var(--card-border);
    border-radius: 18px;
    color: var(--text);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.quick-item:hover {
    background: var(--card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.quick-icon-wrap {
    width: 50px; height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deposit-icon { background: var(--success-bg); color: var(--success); }
.transfer-icon { background: var(--primary-glow); color: var(--primary); }
.withdraw-icon { background: var(--warning-bg); color: var(--warning); }
.p2p-icon { background: rgba(236,72,153,0.1); color: #EC4899; }

/* ========== العناوين ========== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 16px;
}
.section-header h3 { font-size: 17px; font-weight: 700; }
.see-all {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
