@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body, #root { height: 100%; width: 100%; overflow: hidden; }
body { background: #0a1410; font-family: 'DM Sans', sans-serif; }
input::placeholder { color: #4a6a5a; }
textarea::placeholder { color: #4a6a5a; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #1a3528; border-radius: 4px; }
