body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  /*padding-top: 64px; /* Add padding to body to account for fixed header height (approx. h-16) */
}
/* Updated gradient for green theme */
.gradient-text {
  background: linear-gradient(90deg, #86EFAC 0%, #22C55E 100%); /* Lighter to darker green */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hero-background-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.20; /* Overall opacity for blurred backgrounds */
  overflow: hidden;
}
.hero-background-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Crossfade transition */
}
.hero-background-image.active {
  opacity: 1; /* Active image is fully visible */
}
/* Styling for the new title card images */
.game-title-image {
  width: 315px; /* Fixed width */
  height: 250px; /* Fixed height */
  object-fit: cover; /* Cover the area, cropping if necessary */
  border-radius: 0.5rem; /* rounded-lg */
  margin-bottom: 1rem; /* mb-4 */
  display: block; /* Ensures it behaves like a block element */
  margin-left: auto; /* Center the image horizontally */
  margin-right: auto; /* Center the image horizontally */
}

/* Styles for filter and sort buttons */
.filter-button, .sort-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: #E5E7EB; /* gray-200 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.filter-button:hover, .sort-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.active-filter-button, .active-sort-button {
  background: linear-gradient(90deg, #86EFAC 0%, #22C55E 100%); /* Green gradient */
  color: white;
  border-color: #22C55E;
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.4); /* Green shadow */
}