/* PAGE BANNER */
.page-banner {
  height: 28vh;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to bottom, rgba(0,0,0,.3), #0b0f1a),
              url("movies-banner.jpg") center/cover no-repeat;
}

.page-banner h1 {
  font-size: 28px;
}

/* GRID – 4 PER ROW (SIZE SAME AS HOME CARD) */
.grid-wrap {
  padding: 0 16px;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  animation: fadeUp .4s ease both;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 80px;
}

.pagination button {
  min-width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #444;
  background: transparent;
  color: #fff;
  font-size: 12px;
}

.pagination .active {
  background: #ffcc00;
  color: #000;
  border-color: #ffcc00;
}