body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* Updated header style */
/* Import Manrope for all pages */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap');

/* Global */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #fff;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: 'Manrope', sans-serif;
}

header .logo {
  height: 40px;
}

header nav a {
  margin-left: 20px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ccc;
  transition: 0.2s;
  font-family: 'Manrope', sans-serif;
}

header nav a:hover,
header nav a.active {
  color: #1e90ff;
}

/* Grid layout for releases */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Release cards */
.release-card {
  text-align: center;
}

.release-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.release-card h2 {
  font-size: 1rem;
  font-weight: bold;
  margin: 5px 0;
}

.release-card p {
  font-size: 0.8rem;
  color: #ccc;
  margin: 0;
}