.vod-play-main {
    max-width: 1545px;
    margin: 40px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 0px 0px 30px 0px;
  }
  .vod-play-container {
    display: flex;
    gap: 40px;
  }
  .vod-player-wrap {
    flex: 5;
    min-width: 600px;
  }
  .vod-player {
    width: 100%;
    height: 600px;
    /* border-radius: 12px; */
    background: #000;
    transition: all 0.3s;
    z-index: 9999;
  }

/* Khi thu nhỏ */
#main-video.mini-player {
    position: fixed !important;
    width: 400px !important;
    height: 240px !important;
    bottom: 24px;
    right: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    border-radius: 10px;
  }
  
  .vod-play-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .vod-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .vod-meta span {
    display: inline-block;
    background: #ffe0b2;
    color: #ff9800;
    border-radius: 12px;
    padding: 3px 14px;
    font-size: 14px;
    margin-right: 8px;
    margin-top: 10px;
    margin-bottom: 4px;
  }
  .vod-desc {
    color: #444;
    font-size: 15px;
    margin-right: 20px;
    margin-bottom: 18px;
    line-height: 1.7;
  }
  .vod-actions {
    margin-top: 18px;
  }
  .btn {
    border: none;
    border-radius: 22px;
    padding: 10px 28px;
    font-size: 16px;
    margin-right: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
  }
  .btn-fav {
    background: #f44336;
    color: #fff;
  }
  .btn-report {
    background: #ff9800;
    color: #fff;
  }
  .episode-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    margin-left: 20px;
  }
  .episode {
    background: #f0f0f0;
    border: none;
    border-radius: 10px;
    padding: 8px 22px;
    font-size: 15px;
    color: #444;
    cursor: pointer;
    margin-bottom: 8px;
    position: relative;
    transition: background 0.2s;
    text-decoration: none;
  }
  .episode.active, .episode:hover {
    background: #ff9800;
    color: #fff;
  }
  .vod-related {
    margin-top: 40px;
  }
  .movie-list-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px !important;
    padding: 0 32px 32px 32px;
    max-width: 1600px;
    margin: 0 auto;
  }
  .movie-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    width: 180px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  .movie-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
  }
  .movie-title {
    font-weight: bold;
    font-size: 1.08rem;
    color: #222;
    margin: 10px 12px 12px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .movie-meta {
    display: flex;
    gap: 8px;
    color: #ff5722;
    font-size: 0.98rem;
    margin: 8px 12px 0 12px;
  }


  .vod-desc-short {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* Add this line */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-width: 100%;
}