/*
Theme Name: GizTale
Description: Modern tech theme where innovation meets storytelling
Version: 1.0
*/

/* Copy the design system variables */
:root {
  --background: 220 25% 8%;
  --foreground: 210 40% 98%;
  --primary: 217 91% 60%;
  --primary-glow: 217 91% 70%;
  --accent: 142 76% 36%;
  --card: 220 25% 10%;
  --border: 240 4% 16%;
  --gradient-primary: linear-gradient(135deg, hsl(217 91% 60%), hsl(142 76% 36%));
  --shadow-glow: 0 0 40px hsl(217 91% 60% / 0.3);
}

/* Add all the component styles from our design */
.btn-hero {
  background: var(--gradient-primary);
  color: hsl(var(--foreground));
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
}

.card-glow {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* Animation keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}
