@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800;900&display=swap');
body { background: #f4f7fe; margin: 0; padding: 0; font-family: 'Outfit', sans-serif; color: #1e293b; -webkit-tap-highlight-color: transparent; }
.rahi-app-body { padding: 0 0 120px 0; min-height: 100vh; }
a, a:hover, button, .footer-item { text-decoration: none !important; outline: none !important; box-shadow: none !important; }
.app-header { background: #fff; padding: 25px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 1000; }
.header-welcome { font-weight: 900; font-size: 18px; color: #0f172a; }
.header-brand { font-weight: 900; color: #2563eb; font-size: 12px; letter-spacing: 1px; }
.rahi-card { background: #fff; margin: 20px; padding: 25px; border-radius: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); border: 1px solid #f1f5f9; }
.wallet-premium-card { background: linear-gradient(135deg, #1e293b 0%, #334155 100%); color: #fff; padding: 35px 25px; border-radius: 35px; margin: 20px; box-shadow: 0 15px 35px rgba(30, 41, 59, 0.2); position: relative; overflow: hidden; }
.wallet-balance-amt { font-size: 42px; font-weight: 900; margin-top: 8px; letter-spacing: -1.5px; }
.item-card { background: #fff; padding: 20px; border-radius: 24px; margin-bottom: 15px; display: flex; justify-content: space-between; align-items: center; border: 1px solid #f1f5f9; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.app-footer { position: fixed; bottom: 25px; left: 20px; right: 20px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); display: flex; justify-content: space-around; padding: 15px 5px; border-radius: 30px; box-shadow: 0 15px 50px rgba(0,0,0,0.15); z-index: 9999; border: 1px solid rgba(255,255,255,0.5); }
.footer-item { text-align: center; color: #94a3b8; font-size: 11px; font-weight: 800; display: flex; flex-direction: column; align-items: center; flex: 1; transition: 0.3s; }
.footer-item i { font-size: 22px; margin-bottom: 5px; }
.footer-item.active { color: #2563eb; }
.rahi-input { width: 100%; padding: 18px; margin-bottom: 15px; border-radius: 18px; border: 2px solid #f1f5f9; font-size: 15px; outline: none; box-sizing: border-box; }
.rahi-btn { width: 100%; padding: 18px; background: #2563eb; color: #fff; border: none; border-radius: 18px; font-weight: 900; font-size: 16px; cursor: pointer; box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2); }
.pulse-icon { width: 10px; height: 10px; background: #10b981; border-radius: 50%; display: inline-block; animation: rahi_pulse 2s infinite; }
@keyframes rahi_pulse { 0% { box-shadow: 0 0 0 0 rgba(16,185,129, 0.6); } 70% { box-shadow: 0 0 0 12px rgba(16,185,129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129, 0); } }
.section-container { display: none; }
.section-container.active { display: block; animation: fadeInUp 0.4s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }