/* Apex Capital – extra styles on top of Tailwind CDN */

html { scroll-behavior: smooth; }

body { overflow-x: hidden; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-fade-in { animation: fadeIn .25s ease-out; }

/* Custom scrollbar (dark/gold) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #07070b; }
::-webkit-scrollbar-thumb { background: #23232f; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #d4af37; }

/* Prevent iOS input zoom (keep inputs >=16px) */
input, select, textarea { font-size: 16px; }

/* Safe-area for iPhone notch */
header { padding-top: env(safe-area-inset-top); }
