@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    --background: 220 20% 10%;
    --foreground: 210 20% 92%;

    --card: 220 18% 14%;
    --card-foreground: 210 20% 92%;

    --popover: 220 18% 14%;
    --popover-foreground: 210 20% 92%;

    --primary: 160 84% 44%;
    --primary-foreground: 220 20% 10%;

    --secondary: 220 16% 20%;
    --secondary-foreground: 210 20% 80%;

    --muted: 220 14% 18%;
    --muted-foreground: 215 12% 55%;

    --accent: 38 92% 55%;
    --accent-foreground: 220 20% 10%;

    --destructive: 0 72% 55%;
    --destructive-foreground: 210 40% 98%;

    --border: 220 14% 22%;
    --input: 220 14% 22%;
    --ring: 160 84% 44%;

    --radius: 0.75rem;

    --sidebar-background: 220 18% 12%;
    --sidebar-foreground: 210 20% 80%;
    --sidebar-primary: 160 84% 44%;
    --sidebar-primary-foreground: 220 20% 10%;
    --sidebar-accent: 220 14% 18%;
    --sidebar-accent-foreground: 210 20% 80%;
    --sidebar-border: 220 14% 22%;
    --sidebar-ring: 160 84% 44%;

    --stat-blue: 210 90% 56%;
    --stat-green: 160 84% 44%;
    --stat-amber: 38 92% 55%;
    --stat-purple: 270 70% 60%;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground antialiased;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
  }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
  animation: slide-up 0.5s ease-out forwards;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}
