@import "tailwindcss";

:root {
  --background: #ffffff;
  --foreground: #171717;
  --primary: #9333ea;
  --primary-light: #c084fc;
  --primary-lighter: #e9d5ff;
  --primary-dark: #7e22ce;
  --accent: #a855f7;
  --accent-light: #d8b4fe;
  --surface: #faf5ff;
  --border: #e9d5ff;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
    --primary: #a855f7;
    --primary-light: #c084fc;
    --primary-lighter: #581c87;
    --primary-dark: #9333ea;
    --accent: #c084fc;
    --accent-light: #e9d5ff;
    --surface: #1e0a2e;
    --border: #581c87;
  }
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

/* Custom scrollbar styles - using default gray colors */
* {
  scrollbar-width: thin;
  scrollbar-color: #9ca3af #f3f4f6;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

*::-webkit-scrollbar-corner {
  background: #f3f4f6;
}

/* Blob Animation */
@keyframes blob {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0px, 0px) scale(1);
  }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}
