/* Simple movie card styling */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0;
  max-width: 100%;
  margin: 0;
}

.movie-card {
  background: rgba(16, 16, 16, 0.95);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  min-height: 460px;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-radius: 0.5rem;
}

.movie-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  border-color: rgba(141, 198, 63, 0.35);
}

.movie-poster {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.movie-info {
  padding: 1.15rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, rgba(13, 13, 13, 0.98) 100%);
}

.movie-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
  flex: 1;
  color: #f8fafb;
}

.movie-favorite-btn {
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.movie-favorite-btn:hover {
  background: rgba(13, 13, 13, 0.95);
  border-color: rgba(141, 198, 63, 0.5);
  transform: scale(1.1);
}

.movie-favorite-btn.is-favorite {
  color: #8dc63f;
}

.movie-favorite-btn.not-favorite {
  color: rgba(255, 255, 255, 0.6);
}

.page-head {
  padding: 1.5rem 2rem 0;
  text-align: center;
}

.page-head h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #111111;
}