body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.hero-bg {
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -10px rgba(220, 38, 38, 0.5);
  border-color: #dc2626;
}

.text-glow {
  text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #171717;
}
::-webkit-scrollbar-thumb {
  background: #dc2626;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ef4444;
}
.filter-btn:hover {
  cursor: pointer;
}