/* Custom styles to complement Tailwind */
body {
  background: linear-gradient(to right, #1a1a1a, #2c3e50);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
.header {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.card {
  background: #2d3748;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}