@import "tailwindcss";

:root {
  --background: #ffffff;
  --foreground: #171717;
}

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

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #515be3 rgba(255, 255, 255, 0.05);
}

@keyframes btn-primary-glow {
  0%, 100% { box-shadow: 0 0 10px 2px rgba(81,91,227,0.35); }
  50%       { box-shadow: 0 0 22px 6px rgba(81,91,227,0.65); }
}

.btn-primary-glow {
  animation: btn-primary-glow 2.4s ease-in-out infinite;
}

/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6b74f0 0%, #515be3 50%, #3d3fa8 100%);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #818cf8 0%, #6b74f0 50%, #515be3 100%);
}
