body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 2rem;
  background: #0e0e0e;
  color: #ffffff;
}

h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.album, .movie {
  background: #1c1c1c;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.album:hover, .movie:hover {
  transform: scale(1.05);
}

.album img, .movie img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.album h3, .movie h3 {
  font-size: 1rem;
  margin: 0.5rem 0 0.2rem;
}

.album p, .movie p {
  margin: 0;
  font-size: 0.85rem;
  color: #ccc;
}

