* {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 16px;
}

body {
  background: black;
}

header select {
  display: block;
  width: 80%;
  max-width: 400px;
  height: 60px;
  margin: 12px auto;
  padding: 0 30px;
  font-size: 20px;
}

ul#movie-list {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

ul#movie-list * {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

ul#movie-list > li {
  width: calc((100% - (2 * 1%)) / 3);
  list-style-type: none;
  background: transparent;
  text-align: center;
  margin-bottom: 2%;
}

ul#movie-list > li > span {
  display: block;
  width: 100%;
}

ul#movie-list > li > span.title {
  color: white;
  text-align: left;
  font-size: 1rem;
  margin-bottom: 0.25lh;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

ul#movie-list > li > span.name {
  color: white;
  text-align: center;
  font-size: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0;
}

ul#movie-list > li > span.name a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
}

ul#movie-list > li > div {
  position: relative;
  padding-top: 56.25%;
  width: 98%;
  margin: 1%;
}

ul#movie-list > li > div > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

ul#movie-list > li > div > .holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

ul#movie-list > li > div > .holder img {
  transition: 0.5s;
  border: none;
}

ul#movie-list > li > div > .holder:hover img {
  transform: scale(1.2);
}

ul#movie-list > li.sha-vie-list-prev {
  width: 50%;
  clear: both;
}

ul#movie-list > li.sha-vie-list-prev > div {
  padding-top: 5%;
  width: 90%;
  margin: 5% auto;
  max-width: 200px;
}

ul#movie-list > li.sha-vie-list-prev > div > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ul#movie-list > li.sha-vie-list-prev > div > div > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #ccc;
  text-decoration: none;
  font-size: 2vw;
  color: #333;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

ul#movie-list > li.sha-vie-list-next {
  width: 50%;
  float: right;
}

ul#movie-list > li.sha-vie-list-next > div {
  padding-top: 5%;
  width: 90%;
  margin: 5% auto;
  max-width: 200px;
}

ul#movie-list > li.sha-vie-list-next > div > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ul#movie-list > li.sha-vie-list-next > div > div > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #ccc;
  text-decoration: none;
  font-size: 2vw;
  color: #333;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

div#movie-list-movie > video {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: none;
}

div#movie-list-movie > span {
  position: absolute;
  top: 4px;
  right: 4px;
  display: none;
  background: #ccc;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 2px;
  cursor: pointer;
  color: #333;
}

div#movie-list-movie > span:hover {
  font-size: 3rem;
  cursor: pointer;
}

div#movie-list-movie:hover > span {
  display: inline-block;
}

@media screen and (max-width: 480px) {
  ul#movie-list {
    width: 98%;
  }

  ul#movie-list > li {
    width: calc((100% - 1%) / 2);
    margin-bottom: 30px;
  }

  ul#movie-list > li > span.name {
    font-size: 0.8rem;
  }

  ul#movie-list > li > span.name a {
    font-size: 0.8rem;
  }

  ul#movie-list > li > span.title {
    font-size: 0.7rem;
    margin-bottom: 0.1lh;
  }
}
