@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.dark .glass-card {
  background: rgba(27, 27, 58, 0.6);
  border: 1px solid rgba(108, 92, 231, 0.2);
}

.reward-chip {
  background: linear-gradient(135deg, #B8F23C 0%, #9FE022 100%);
  color: #1B1B3A;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(184, 242, 60, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
