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

@layer utilities {
  .text-balance {
    text-wrap: balance;
  }
}

@layer base {
  :root {
    --background: 216 28% 12%;
    --foreground: 210 40% 96%;
    --card: 215 25% 15%;
    --card-foreground: 210 40% 96%;
    --popover: 215 25% 15%;
    --popover-foreground: 210 40% 96%;
    --primary: 210 100% 60%;
    --primary-foreground: 210 40% 96%;
    --secondary: 215 20% 20%;
    --secondary-foreground: 210 40% 96%;
    --muted: 215 20% 20%;
    --muted-foreground: 215 20% 60%;
    --accent: 0 72% 55%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 215 20% 22%;
    --input: 215 20% 22%;
    --ring: 210 100% 60%;
    --chart-1: 210 100% 60%;
    --chart-2: 173 58% 39%;
    --chart-3: 197 37% 24%;
    --chart-4: 43 74% 66%;
    --chart-5: 27 87% 67%;
    --radius: 0.5rem;
    --sidebar-background: 216 28% 10%;
    --sidebar-foreground: 210 40% 96%;
    --sidebar-primary: 210 100% 60%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 215 20% 18%;
    --sidebar-accent-foreground: 210 40% 96%;
    --sidebar-border: 215 20% 22%;
    --sidebar-ring: 210 100% 60%;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
