#trailer {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  padding-bottom: 56.25%;
  border: 1px solid var(--nl-line);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: var(--nl-shadow-deep), inset 0 1px 0 rgba(245,232,199,.04);
  transition: background-size .28s ease, border-color .18s ease, transform .18s ease;
}
#trailer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,5,.04), rgba(10,8,5,.34));
  z-index: 1;
  pointer-events: none;
}
#trailer::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,160,23,.16);
  z-index: 2;
  pointer-events: none;
}
#trailer:hover {
  border-color: var(--nl-line-strong);
  background-size: 108%;
  transform: translateY(-2px);
}
#trailer .btn-container {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 10;
  align-items: center;
  justify-content: center;
}
#trailer .btn-play {
  position: relative;
  color: var(--nl-bg-void);
  width: 72px;
  height: 72px;
  font-size: 50px;
  overflow: hidden;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.6));
  transition: transform .2s ease;
}
#trailer:hover .btn-play { transform: scale(.92); }
#trailer .btn-play .icon {
  position: relative;
  z-index: 9;
  margin-left: 5px;
  width: 100%;
}
#trailer .btn-play .circle:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 66px;
  height: 66px;
  border-radius: 100%;
  background: linear-gradient(180deg, var(--nl-parchment), var(--nl-gold));
}
#trailer .btn-play .circle span {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
#trailer .btn-play .circle span em {
  position: absolute;
  border-radius: 999px;
  width: 100%;
  height: 100%;
  background: rgba(10,8,5,.88);
  transition: transform .25s linear;
}
#trailer .btn-play .circle span:first-child { left: 0%; }
#trailer .btn-play .circle span:first-child em {
  left: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transform-origin: 0% 50%;
}
#trailer .btn-play .circle span:last-child { left: 50%; }
#trailer .btn-play .circle span:last-child em {
  left: -100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transform-origin: 100% 50%;
  transition-delay: .25s;
}
#trailer .btn-play:hover .circle span:first-child em {
  transform: rotate(-180deg);
  transition: transform .5s ease-out;
  transition-delay: .25s;
}
#trailer .btn-play:hover .circle span:last-child em {
  transform: rotate(-180deg);
  transition: transform .25s linear;
}
.modal-video-movie-wrap {
  background: linear-gradient(180deg, #22180f 0%, #120d08 100%);
  border-radius: 4px;
  border: 1px solid var(--nl-line);
}
.modal-video-movie-wrap iframe {
  overflow: hidden;
  border-radius: 4px;
}
