.movie-poster {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.play-line {
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 5px;
}
.recommend-card {
  transition: transform 0.3s;
  margin-bottom: 15px;
}
.recommend-card:hover {
  transform: translateY(-5px);
}
.movie-info {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}
.section-title {
  border-left: 4px solid #0d6efd;
  padding-left: 10px;
  margin: 20px 0;
}

.vod-pic img {
  height: 100%;
  width: 100%;
}
@media (max-width: 990px) {
  .vod-pic a {
    display: block;
    width: 50%;
    height: auto;
    margin: 0 auto;
  }
  .vod-info {
    margin-top: 2rem;
  }
  .vod-info .item {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .vod-info .item p {
    height: 2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1;
    display: inline-block;
    line-height: 2rem;
  }
  .vod-info .item a {
    width: 3rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .vod-info .item a {
    display: none;
  }
}

.related-movie {
  transition: transform 0.3s;
  margin-bottom: 20px;
}
.related-movie:hover {
  transform: translateY(-5px);
}
.related-poster {
  height: 0;
  padding-bottom: 140%;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  margin-bottom: 10px;
}
.related-title {
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.related-rating {
  color: #ffc107;
  font-weight: bold;
}
.breadcrumb {
  background-color: transparent;
  padding-left: 0;
}
