.movie__main-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(330px, 1fr);
  gap: 3rem;
}

.movie__section {
  min-width: 0;
}

.movie__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #ddd;
  margin-bottom: 1.5rem;
}

.movie__player,
.movie__player .movie__player-video,
.movie__player-thumbnail {
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.movie__player--with-video {
  cursor: pointer;
}

.movie__player:hover .movie__play {
  transform: translate(-50%, -50%) scale(1.1);
}

.movie__player .movie__player-video,
.movie__player-thumbnail {
  object-fit: cover;
}

.movie__player .movie__player-video--youtube {
  border: 0;
}

.movie__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.movie__play-button {
  background-color: rgba(255, 255, 255, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
}

.movie__play-label {
  color: rgba(255, 255, 255, 0.8);
}

.movie__titles {
  margin-bottom: 0.5rem;
}

.movie__title {
  font-size: 1.5rem;
}

.movie__about {
  color: #666666;
  margin-bottom: 1rem;
}

.movie__metadata {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.movie__metadata-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.movie__metadata-item svg {
  color: #495057;
}

.movie__synopsis h2,
.movie__editorial h2 {
  margin-bottom: 0.75rem;
}

.movie__editorial {
  margin-top: 1rem;
}

.movie__vpn {
  margin-bottom: 16px;
}

.movie__unlock-catalog {
  margin-top: 3rem;
}

.movie__sidebar--mobile {
  display: none;
}

@media (max-width: 965px) {
  .movie__main-content {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }

  .movie__section {
    display: flex;
    flex-direction: column;
  }

  .movie__sidebar {
    order: 1;
    margin-bottom: 1.5rem;
    min-width: 330px;
    width: 100%;
    max-width: 600px;
  }

  .movie__sidebar--desktop {
    display: none;
  }

  .movie__sidebar--mobile {
    display: block;
  }

  .movie__synopsis,
  .movie__editorial,
  .movie__unlock-catalog {
    order: 2;
  }

  .movie__player,
  .movie__player-thumbnail {
    height: auto;
    min-height: 200px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .movie__info {
    padding: 0 0.5rem;
  }

  .movie__title {
    font-size: 1.25rem;
  }

  .movie__metadata {
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .movie__sidebar {
    min-width: 0;
  }
}

@media (prefers-color-scheme: dark) {
  .movie__title {
    color: #f8f9fa;
  }

  .movie__subtitle {
    color: #adb5bd;
  }

  .movie__about {
    color: #adb5bd;
  }

  .movie__metadata-item {
    color: #adb5bd;
  }

  .movie__metadata-item svg {
    color: #868e96;
  }

  .movie__synopsis h2,
  .movie__editorial h2 {
    color: #f8f9fa;
  }

  .movie__synopsis p,
  .movie__editorial p {
    color: #dee2e6;
  }

  .movie__player {
    background-color: #343a40;
  }

  .movie__play-button {
    background-color: rgba(0, 0, 0, 0.7);
    color: #f8f9fa;
  }
}
