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

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #262626;
}

::-webkit-scrollbar-thumb {
  background: #d946ef;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c026d3;
}
/* Animation for hover effects */
.hover-scale {
  transition: transform 0.2s ease;
}

.hover-scale:hover {
  transform: translateY(-2px);
}

/* Better focus styles */
:focus {
  outline: 2px solid #d946ef;
  outline-offset: 2px;
}

/* Responsive improvements */
@media (max-width: 640px) {
  .hero-section {
    flex-direction: column-reverse;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}
