@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");@tailwind base;@tailwind components;@tailwind utilities;*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{background:#0f172a;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#e8e8e8}@layer base{h1{@apply tracking-tight;letter-spacing:-.02em}h2{@apply tracking-tight;letter-spacing:-.01em}p{color:#d1d5db}}@layer components{a{@apply transition-all duration-200 text-blue-400;&:not(.no-style){@apply relative;&:after{@apply absolute bottom-0 left-0 w-0 h-0.5 bg-blue-400 transition-all duration-300;content:""}&:hover:after{@apply w-full}}}}@layer components{.btn-primary,.btn-secondary{@apply px-8 py-4 border border-blue-500 text-blue-400 rounded-md font-medium text-base transition-all duration-200 hover:bg-blue-950 hover:border-blue-400}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}section{animation:fadeInUp .6s ease-out}nav a{position:relative;color:#e8e8e8;&:after{content:"";position:absolute;bottom:-2px;left:0;width:0;height:2px;background-color:#60a5fa;transition:width .3s ease}&:hover:after{width:100%}}