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

body {
  font-family: Arial, Helvetica, sans-serif;
}

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

@layer base {
  :root {
    /* Modern Dark Fintech Theme */
    --background: 240 10% 8%;
    --foreground: 0 0% 95%;
    --card: 240 10% 15%;
    --card-foreground: 0 0% 95%;
    --popover: 240 10% 15%;
    --popover-foreground: 0 0% 95%;
    --primary: 240 10% 12%;
    --primary-foreground: 0 0% 100%;
    --secondary: 240 8% 20%;
    --secondary-foreground: 0 0% 95%;
    --muted: 240 5% 30%;
    --muted-foreground: 0 0% 70%;
    /* Orange accent for primary actions */
    --accent: 39 100% 50%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 240 5% 25%;
    --input: 240 8% 22%;
    --ring: 39 100% 50%;
    /* Success/Growth - Emerald Green */
    --success: 142 76% 36%;
    --success-foreground: 0 0% 100%;
    /* Warning - Vibrant Orange */
    --warning: 39 100% 50%;
    --chart-1: 39 100% 50%;
    --chart-2: 142 76% 36%;
    --chart-3: 200 90% 45%;
    --chart-4: 180 100% 40%;
    --chart-5: 160 70% 50%;
    --radius: 0.5rem;
    --sidebar-background: 240 10% 12%;
    --sidebar-foreground: 0 0% 95%;
    --sidebar-primary: 39 100% 50%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 8% 25%;
    --sidebar-accent-foreground: 0 0% 95%;
    --sidebar-border: 240 5% 25%;
    --sidebar-ring: 39 100% 50%;
  }
  .dark {
    /* Same as root for consistent dark theme */
    --background: 240 10% 8%;
    --foreground: 0 0% 95%;
    --card: 240 10% 15%;
    --card-foreground: 0 0% 95%;
    --popover: 240 10% 15%;
    --popover-foreground: 0 0% 95%;
    --primary: 240 10% 12%;
    --primary-foreground: 0 0% 100%;
    --secondary: 240 8% 20%;
    --secondary-foreground: 0 0% 95%;
    --muted: 240 5% 30%;
    --muted-foreground: 0 0% 70%;
    --accent: 39 100% 50%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 240 5% 25%;
    --input: 240 8% 22%;
    --ring: 39 100% 50%;
    --success: 142 76% 36%;
    --success-foreground: 0 0% 100%;
    --warning: 39 100% 50%;
    --chart-1: 39 100% 50%;
    --chart-2: 142 76% 36%;
    --chart-3: 200 90% 45%;
    --chart-4: 180 100% 40%;
    --chart-5: 160 70% 50%;
    --sidebar-background: 240 10% 12%;
    --sidebar-foreground: 0 0% 95%;
    --sidebar-primary: 39 100% 50%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 8% 25%;
    --sidebar-accent-foreground: 0 0% 95%;
    --sidebar-border: 240 5% 25%;
    --sidebar-ring: 39 100% 50%;
  }
}

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