.movie-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.movie-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.movie-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background-color: #1a1a1a;
  transition: transform 0.3s ease;
}

.movie-card:hover .movie-image {
  transform: scale(1.08);
}

.movie-info {
  padding: 20px 16px;
  background: rgba(0, 0, 0, 0.4);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.movie-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
  word-break: break-word;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .movie-image {
    height: 280px;
  }
  
  .movie-title {
    font-size: 14px;
  }
  
  .movie-card:hover {
    transform: translateY(-12px) scale(1.02);
  }
}

@media (max-width: 480px) {
  .movie-image {
    height: 240px;
  }
  
  .movie-info {
    padding: 16px 12px;
  }
  
  .movie-title {
    font-size: 13px;
  }
}
