* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  outline: none;
  border: none;
}
:root {
  --main: grey;
  --text-color: white;
  --bg-color: black;
}
body {
  background-color: black;
  color: white;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  z-index: 10;
}
.splash-screen-img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
.main {
  display: none;
  width: 100%;
  max-width: 800px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: black;
  color: white;
  cursor: pointer;
  z-index: 100;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#search {
  position: relative;
  padding: 10px;
  width: 80%;
  margin-right: 10%;
  background-color: rgb(206, 202, 202);
  border-radius: 10px;
  border: none;
  z-index: 10;
}
::placeholder {
  color: white;
}
.headernav ul {
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 10px;
  padding-bottom: 10px;
}
.headernav ul li a {
  color: white;
}
.headernav ul li a:hover {
  color: rgb(61, 107, 61);
}
.general {
  width: 100%;
  padding: 15px;
  overflow: hidden;
  position: relative;
}
.general-div {
  display: flex;
  justify-content: space-around;
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 15px;
  animation: scrollX 16s steps(4) infinite;
  min-width: calc(800px * 4);
}
.general-img {
  height: 300px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@keyframes scrollX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3200px);
  }
}
.general-div-2 {
  display: flex;
  justify-content: space-between;
  margin: -50px 5px 30px 5px;
  padding: 0 15px;
  font-size: 16px;
  position: relative;
  z-index: 5;
}
.general-div-2 button {
  padding: 2px 15px;
  border-radius: 10px;
  background: rgb(51, 134, 88);
  color: white;
}
.general-div-2 button:hover {
  background-color: rgb(5, 73, 82);
}
.week-top-20,
.hot-action {
  padding: 15px;
  margin-top: 10px;
}
.anime18 {
  padding: 15px;
  margin-top: 10px;
  margin-bottom: 60px;
}
.week-top-20-more,
.hot-action-more,
.anime18more {
  display: flex;
  justify-content: space-between;
}
.week-top-20-more button,
.hot-action-more button,
.anime18more button {
  background-color: transparent;
  color: white;
  margin-right: 10px;
}
.week-top-20-more button:hover,
.hot-action-more button:hover,
.anime18more button:hover {
  color: rgb(112, 110, 110);
}
.week-top-20-img-con,
.hot-action-img-con {
  overflow-x: auto;
}
.anime-18img-con {
  overflow-x: auto;
}
.week-top-20-img-con ul,
.hot-action-img-con ul,
.anime-18img-con ul {
  display: flex;
  justify-content: flex-start;
  text-align: center;
  white-space: nowrap;
  flex-wrap: nowrap;
  list-style: none;
}
.week-top-20-img-con ul li,
.hot-action-img-con ul li,
.anime-18img-con ul li {
  padding: 15px 5px;
  flex: 0 0 auto;
  width: auto;
}
.week-top-20-img-con img,
.hot-action-img-con img,
.anime-18img-con img {
  height: 150px;
  width: 100px;
  object-fit: cover;
}
.hollywood-stars,
.k-stars {
  margin-top: 15px;
  padding: 15px;
}
.hollywood-stars-div,
.k-stars-div {
  overflow-x: auto;
}
.hollywood-stars-div ul,
.k-stars-div ul {
  display: flex;
  justify-content: flex-start;
  text-align: center;
  white-space: nowrap;
  flex-wrap: nowrap;
  list-style: none;
}
.hollywood-stars-div ul li,
.k-stars-div ul li {
  padding: 15px 5px;
  flex: 0 0 auto;
  width: auto;
}
.hollywood-stars-div img,
.k-stars-div img {
  height: 200px;
  width: 200px;
  object-fit: cover;
}
footer {
  position: fixed;
  display: block;
  font-size: 15px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 5px 15px 15px 15px;
  width: 100%;
  max-width: 800px;
  z-index: 100;
  background-color: black;
}
.footernav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.footernav ul li a {
  display: block;
  color: white;
  font-family: Georgia, "Times New Roman";
}
.footernav ul li a:hover {
  color: rgb(63, 143, 63);
}
.footernav ul li i {
  color: var(--main);
  display: block;
  padding-bottom: 5px;
}
.footernav ul li a i:hover {
  color: rgb(63, 143, 63);
}
