body {
  background-color: #261112;
  color: #fff;
  background-image: url("../images/official_bg.png");
  background-repeat: no-repeat;
}



a {
  text-decoration: none;
  color: #fff;
}

.s-header,
.s-download,
.s-footer {
  max-width: 1440px;
  margin-inline: auto;
}

.s-header {
  padding-block-start: 100px;
}

.s-header > .brand {
  width: 260px;
  height: 46px;
  background-image: url("../images/official_logo.png");
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}
.s-header > .sub,
.s-header > .text {
  font-family: "Libre Baskerville", serif;
}
.s-header > .sub {
  font-size: 42px;
  color: #fff;
  margin-block-start: 62px;
}
.s-header > .text {
  font-size: 22px;
  color: #d6d6d6;
  margin-block-start: 38px;
}

.s-download {
  display: flex;
  margin-block-start: 30px;
  gap: 20px;
}

.s-download > .d-btn {
  display: flex;
  width: 230px;
  height: 70px;

  border-radius: 10px;
  background: #000;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.s-download > .d-btn > .body {
  line-height: 1.2;
}
.s-download > .d-btn > .body .text {
  font-size: 14px;
  color: #c7c7c7;
}

.s-download > .d-btn > .body .title {
  font-size: 18px;
  color: #fff;
}

.slider-container {
  height: 444px;
  overflow: hidden;
  margin-block: 57px 100px;
}

.slider-container * {
  transition: all 0.3s ease-in-out;
  transition-behavior: smooth;
}
.slider-container .play {
  transition-delay: 0.1s;
}

.slider-container .slide {
  width: 248px;
  height: 348px;
}
.slider-container .img {
  position: relative;
  display: block;
}
.slider-container .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  border-radius: 30px;
}
.slider-container .img > .thumb {
  border-radius: 30px;
}
.slider-container .img > .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider-container .slide:hover {
  width: 304px;
  height: 444px;
}
.slider-container .slide:hover .img > .thumb {
  width: 304px;
  height: 444px;
}

.slider-container .slide:hover .img > .play {
  width: 76px;
  height: 76px;
}

.slider-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.s-footer {
  padding-block: 25px;
  height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.s-footer .copy {
  color: #7e7e7e;
  margin-inline-end: 10px;
}
.s-footer > .leading,
.s-footer > .trailing {
  display: flex;
  gap: 10px;
}
.s-footer > .leading a {
  color: #9b9b9b;
}
.s-footer > .trailing {
  gap: 20px;
}

@media (max-width: 1439px) {
  .s-header,
  .s-download,
  .s-footer {
    padding-inline: 40px;
  }
}
