* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url('../font/Roboto-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Medium';
  src: url('../font/Roboto-Medium.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto-Bold';
  src: url('../font/Roboto-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  padding-top: 90px;
  padding-bottom: 90px;
  background: black;
  color: white;
  font-family: "Roboto-Regular", sans-serif;
}

a {
  color: white;
  text-decoration: none;
  font-family: "Roboto-Regular", sans-serif;
}

#myIframe {
  height: 100%;
}

.header {
  background-color: #1A5E62;
  width: 100%;
  height: 70px;
  z-index: 1111;
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;

}

.logo {
  width: 195px;
  height: 64px;
}

.title {
  font-family: "Roboto-Bold", sans-serif;
  margin-bottom: 15px;
  font-size: 40px;
}

.img {
  width: 100%;
  height: 100%;
}

.poster-img {
  width: 280px;
}

.container {
  max-width: 950px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.wrapper {
  display: flex;
  gap: 15px;
}

.description-item {
  margin-bottom: 10px;
}

.season {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 29px;
  font-family: "Roboto-Bold", sans-serif;
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 10px;
}

.card {
  background: rgb(44, 44, 44);
  height: 120px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-border {
  border: 1px solid #DE2575;
}





.player {
  width: 100%;
  background: rgb(44, 44, 44);
  height: 470px;
}

.description {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 15px;
}

.btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.prev-next {
  font-family: "Roboto-Bold", sans-serif;
  font-size: 18px;
  display: block;
  width: 49.7%;
  height: 47px;
  color: #ffffff;
  display: grid;
  place-content: center;
  background-color: #DE2575;
}

.series-laber {
  background: black;
  padding: 2px 4px;
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Roboto-Bold", sans-serif;
  z-index: 111;

}

.backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.2);
  z-index: 99;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comments {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 29px;
  font-family: "Roboto-Bold", sans-serif;
}

.comment-item {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

.username {
  font-size: 15px;
  color: #ababab;
  margin-bottom: 5px;
}

.avatar {
  width: 50px;
  height: 50px;
  background-color: #565758;
  border-radius: 50%;
}

.comment-date {
  font-size: 13px;
  color: #ababab;
  margin-bottom: 5px;
}

.wrapper-one {
  display: flex;
  gap: 15px;
}

.text-wrapper {
  display: flex;
  gap: 7px;
  margin-bottom: 7px;
}

.username-text {
  width: 25%;
  height: 40px;
  background-color: #202020;
}

.email {
  width: 25%;
  height: 40px;
  background-color: #202020;
}

.text-area {
  width: 100%;
  height: 80px;
  background-color: #202020;
  margin-bottom: 7px;
}

.submit-wraper {
  width: 100%;
  height: 40px;
  margin-bottom: 15px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.submit {
  width: 25%;
  height: 100%;
  background: #DE2575;
  color: #FEF200;
  font-family: "Roboto-Bold", sans-serif;
  outline: none;
  border: none;
  font-size: 18px;
}

@media (max-width: 900px) {
  .card-wrapper {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }

  .player {
    height: 416px;
  }

  .card {
    height: 140px;
  }
}

@media (max-width: 830px) {
  .card {
    height: 125px;
  }
  .player {
        height: 386px;
    }
}

@media (max-width: 730px) {
  .card {
    height: 115px;
  }
.player {
        height: 336px;
    }
  .header {
    height: 53px;
  }

  body {
    padding-top: 59px;
  }

  .logo {
    width: 135px;
    height: 44px;
  }

  .series-laber {
    font-size: 13px;
  }

  .poster-img {
    width: 220px;
  }

  .description-item {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .prev-next {
    font-size: 14px;
    height: 37px;
  }

  .season {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 25px;
  }

  .title {
    margin-bottom: 10px;
    font-size: 32px;
  }
}

@media (max-width: 631px) {
  .card-wrapper {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .card {
    height: 145px;
  }
  .player {
        height: 299px;
    }
}

@media (max-width: 552px) {
  .card {
    height: 125px;
  }
    .player {
        height: 259px;
    }
  .wrapper {
    display: flex;
    gap: 10px
  }
}

@media (max-width: 482px) {
  .card {
    height: 115px;
  }

  .wrapper {
    flex-direction: column;

  }
    .player {
        height: 227px;
    }
  .poster-img {
    width: 63%;
  }

  .poster {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 430px) {


  .card {
    height: 100px;
  }
.player {
        height: 193px;
    }
  .card-wrapper {
    gap: 7px;
  }

  .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .title {
    font-size: 22px;
  }
}

@media (max-width: 353px) {
  .card {
    height: 93px;
  }

  .series-laber {
    font-size: 11px;
  }
.player {
        height: 173px;
    }
  .season {
    margin-top: 9px;
    margin-bottom: 5px;
    font-size: 22px;
  }

  @media (max-width: 333px) {
    .prev-next {
      font-size: 11px;
      height: 32px;
    }
.player {
        height: 163px;
    }
    .card {
      height: 80px;
    }
  }
}