/* === Preflight (minimal reset) === */
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e2e8f0;
}
html { line-height: 1.5; -webkit-text-size-adjust: 100%; font-family: 'Inter', ui-sans-serif, system-ui, sans-serif; }
body { margin: 0; line-height: inherit; }
h1 { font-size: inherit; font-weight: inherit; margin: 0; }
p { margin: 0; }
img, svg { display: block; vertical-align: middle; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; background-color: transparent; background-image: none; cursor: pointer; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }

/* === Layout & Display === */
.flex { display: flex; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.overflow-hidden { overflow: hidden; }
.text-center { text-align: center; }
.pointer-events-none { pointer-events: none; }
.group { }

/* === Sizing === */
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-md { max-width: 28rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }

/* === Spacing === */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pt-6 { padding-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.ml-2 { margin-left: 0.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-8 { margin-top: 2rem; }

/* === Background === */
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-blue-900 { background-color: #1e3a8a; }
.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-slate-50\/80 { background-color: rgb(248 250 252 / 0.8); }

/* === Text Color === */
.text-white { color: #ffffff; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-amber-600 { color: #d97706; }
.text-emerald-600 { color: #059669; }
.text-blue-600 { color: #2563eb; }
.text-\[\#009ee3\] { color: #009ee3; }

/* === Typography === */
.text-\[10px\] { font-size: 10px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* === Borders === */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-dashed { border-style: dashed; }
.border-white { border-color: #ffffff; }
.border-slate-100 { border-color: #f1f5f9; }
.border-slate-200 { border-color: #e2e8f0; }
.border-amber-100 { border-color: #fef3c7; }
.border-emerald-200 { border-color: #a7f3d0; }
.rounded-full { border-radius: 9999px; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }

/* === Shadows === */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-slate-200\/50 { --tw-shadow-color: rgb(226 232 240 / 0.5); box-shadow: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color); }
.shadow-blue-900\/20 { --tw-shadow-color: rgb(30 58 138 / 0.2); box-shadow: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); }

/* === Object === */
.object-contain { object-fit: contain; }

/* === Opacity === */
.opacity-\[0\.08\] { opacity: 0.08; }
.opacity-80 { opacity: 0.8; }

/* === Backdrop === */
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* === Transform === */
.transform { }
.scale-\[1\.02\] { transform: scale(1.02); }

/* === Transitions === */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* === Animation === */
@keyframes pulse { 50% { opacity: .5; } }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* === Hover States === */
.hover\:text-blue-600:hover { color: #2563eb; }
.hover\:text-\[\#009ee3\]:hover { color: #009ee3; }
.hover\:text-slate-800:hover { color: #1e293b; }
.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9; }

/* === Fade In Animation === */
.fade-in { animation: fadeIn 0.4s ease-out forwards; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Tab Styles === */
.tab-active-mp {
    background-color: #009ee3;
    color: white;
    box-shadow: 0 4px 12px -2px rgba(0, 158, 227, 0.4);
    border: 2px solid #0081b8;
}
.tab-active-bank {
    background-color: #1e293b;
    color: white;
    box-shadow: 0 4px 12px -2px rgba(30, 41, 59, 0.4);
    border: 2px solid #0f172a;
}
.tab-inactive {
    color: #64748b;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
}
.tab-inactive:hover {
    background-color: #f8fafc;
    color: #334155;
    border-color: #cbd5e1;
}

/* === Blur overlay (kept for backward compat) === */
.transfer-info-container { transition: all 0.4s ease; }
.transfer-info-container.blurred .transfer-content { filter: blur(5px); pointer-events: none; user-select: none; }
.transfer-info-container.show .transfer-content { filter: none; pointer-events: auto; user-select: auto; }
.bank-details-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s ease; z-index: 20; border-radius: 1.5rem;
}
.bank-details-overlay.hidden { opacity: 0; pointer-events: none; visibility: hidden; }
.overlay-message {
    text-align: center; padding: 16px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
    backdrop-filter: blur(8px); color: white; border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.4);
    font-weight: 500; font-size: 13px; max-width: 85%; line-height: 1.5;
}
