/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono&display=swap');

/* Global Styles */
body {
  font-family: 'Space Grotesk', sans-serif;
  /*background-color: #20293f !important;*/
}

/* Card Hover Effects */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(96, 165, 250, 0.3), 0 10px 10px -5px rgba(96, 165, 250, 0.2);
}

/* Auth Page Specific Styles */
.auth-card {
  backdrop-filter: blur(10px);
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.input-field {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.input-field:focus {
  background: rgba(31, 41, 55, 0.8);
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.5);
}

/* --- Hero Section Styles (Clean Gradient) --- */
/* Ensure no conflicting rules remain, these classes are now used only for structure */
.hero-bg, .about-hero-bg {
    position: relative;
    overflow: hidden;
    background: none !important;
}