@tailwind base; @tailwind components; @tailwind utilities; @layer base { :root { --background: 0 0% 100%; --foreground: 222.2 84% 4.9%; --card: 0 0% 100%; --card-foreground: 222.2 84% 4.9%; --popover: 0 0% 100%; --popover-foreground: 222.2 84% 4.9%; --primary: 271 81% 56%; --primary-foreground: 210 40% 98%; --secondary: 210 40% 96.1%; --secondary-foreground: 222.2 47.4% 11.2%; --muted: 210 40% 96.1%; --muted-foreground: 215.4 16.3% 46.9%; --accent: 210 40% 96.1%; --accent-foreground: 222.2 47.4% 11.2%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 210 40% 98%; --border: 214.3 31.8% 91.4%; --input: 214.3 31.8% 91.4%; --ring: 271 81% 56%; --radius: 0.5rem; } .dark { --background: 0 0% 0%; --foreground: 210 40% 98%; --card: 0 0% 5%; --card-foreground: 210 40% 98%; --popover: 0 0% 0%; --popover-foreground: 210 40% 98%; --primary: 271 81% 56%; --primary-foreground: 222.2 47.4% 11.2%; --secondary: 0 0% 10%; --secondary-foreground: 210 40% 98%; --muted: 0 0% 10%; --muted-foreground: 215 20.2% 65.1%; --accent: 0 0% 15%; --accent-foreground: 210 40% 98%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 210 40% 98%; --border: 0 0% 15%; --input: 0 0% 15%; --ring: 271 81% 56%; } } @layer base { * { @apply border-border; } body { @apply bg-background text-foreground; } } @keyframes sparkle { 0%, 100% { opacity: 0; transform: scale(0); } 50% { opacity: 1; transform: scale(1); } } @keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(10deg); } } @keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }