/* tailwindcss:tailwindcss */
/* index.css */
@layer base {
  html,
  body {
    background-color: #000b18;
    color: theme("colors.slate.200");
    @apply antialiased scroll-smooth;
  }
}
@theme { @keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } }
@utility animate-float { animation: float 4s ease-in-out infinite; }
@utility highlight { @apply bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-cyan-300 font-bold; }
@utility filter-white { filter: brightness(0) invert(1); }
