#hero {
  position: relative;
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;

  height: 70vh;
  min-height: 240px;
  max-height: 320px;
  margin-bottom: 80px;
}

@media screen and (min-width: 480px) {
  #hero {
    max-height: 480px;
  }
}

@media screen and (min-width: 768px) {
  #hero {
    max-height: 768px;
  }
}

@media screen and (min-width: 1280px) {
  #hero {
    max-height: 1440px;
  }
}

#hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

#hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero-overlay {
  z-index: 2;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

#hero-overlay-main {
  z-index: 4;

  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle, #13131300 0%, #16151890 78%, #111111 100%);
}

#hero-overlay-bottom {
  z-index: 3;

  width: 100%;
  height: 20%;
  max-height: 320px;
  bottom: 0;
  position: absolute;
  background: linear-gradient(0deg, #111 0%, #1111127e 55%, #12121300 100%);
}

#hero-overlay-top {
  z-index: 3;

  width: 100%;
  height: 128px;
  top: 0;
  position: absolute;
  background: linear-gradient(180deg, #111111a6 0%, #11111256 55%, #12121300 100%);
}

#relesase-radar-v>div {
  background: #222;
  border-radius: 20px;
}

#relesase-radar-v>div>.element {
  display: flex;
  margin: 10px;
  margin-bottom: 0;
  align-items: center;
}

#relesase-radar-v>div>.element>img {
  width: 40px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

#relesase-radar-v>div>.element>.data {
  width: 0;
  flex-grow: 1;
}

#relesase-radar-v>div>.element>.data>.date {
  font-weight: bold;
  color: #80c7eb;
  font-size: 9pt;
}

#relesase-radar-v>div>a {
  color: #ff3213;
  padding: 10px;
  display: block;
  line-height: 20px;
  text-decoration: none;
}

#added-h-i {
  overflow: hidden;
}

#added-h-i h2 {
  background: -webkit-linear-gradient(87deg, #0d3687, #2fcdf0, #edfdfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  padding: 5px 0;
  margin-bottom: 10px;
  line-height: 30px;
}

#added-h-i .scroll {
  gap: 10px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;

  scroll-padding: 0;
  scroll-snap-type: x mandatory;
}

#added-h-i .scroll::-webkit-scrollbar {
  display: none;
}

#added-h-i .element {
  width: 130px;
  height: 210px;
  background: #222;
  scroll-snap-align: start;

  flex: 0 0 auto;
}

#added-h-i .element img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

#added-h-i .element>div {
  padding: 5px;
  line-height: 15px;
  font-size: 9pt;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

#added-h-i .element>div>span {
  font-size: 7pt;
  color: #a2bac5;
  font-weight: bold;
}

#login,
#logout {
  padding: 10px;
  margin: 50px auto;
  max-width: 320px;
  background: #222;
  background: linear-gradient(180deg, #292929 0%, #222222 80%);
  border: solid 1px #2a2a2a;
  text-align: center;
}

#login p {
  color: whitesmoke;
}

#login input {
  background: #444;
  border: none;
  margin: 10px 0;
  width: 100%;
  outline: none;
  outline-color: red;
}

#logout a {
  display: block;
  color: rgb(88, 204, 210);
  text-align: center;
  padding: 10px;
  font-size: 16pt;
}

#logout button,
#login button {
  padding: 10px 20px;
  margin: 10px 0;
  background: #c22;
  color: whitesmoke;
  border: none;
}