.container-genre {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 7%;
}

.list-genre {
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  border-radius: 8px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.list-genre:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.list-genre a {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.judul-genre {
  display: flex;
  justify-content: center;
  margin: 40px 7% 20px;
  font-size: 1.5rem;
  font-weight: 700;
}

/* --- RESPONSIVE GENRE --- */
@media (max-width: 768px) {
  .container-genre {
    width: 100%;
    padding: 0 5px;
    gap: 4px;
  }

  .list-genre {
    width: calc(25% - 4px); /* 4 genres per row */
    min-width: 60px;
    height: 28px;
    border-radius: 4px;
  }

  .list-genre a {
    font-size: 0.65rem;
  }

  .judul-genre {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 400px) {
  .list-genre {
    width: calc(25% - 4px); /* Still 4 per row but smaller gap */
    min-width: 0;
  }
}
