@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* General */

:root {
  --background-color: #080808;
  --black: #0a0a0a;
  --darkerGrey: #363636;
  --magenta: #b70a33;
  --gray: #808286;
  --grayMd: #b4b4b4;
  --grayDark: #525252;
  --blue: #0aa4ff;
  --green: #009d00;
  --purple: #943b99;
  --yellow: #ffc200;
  --white: #ffffff;
  --primary: #d02525;
  --movie_modal_width: 400px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  background-color: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
  position: relative;
}

.container,
.container-lg,
.container-md,
.container-sm {
  max-width: 1200px;
}

.container-xl {
  max-width: 1500px;
}

main.page {
  margin-top: 90px;
}

.title-bar {
  padding: 25px 40px;
  display: flex;
  background: #333333;
}

.title-bar a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

main.page h3 {
  font-size: 21px;
  font-weight: 600;
  margin-top: 30px;
}

main.page h2 {
  font-size: 28px !important;
  line-height: 36px !important;
  margin-top: 40px;
}

img,
svg {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul a,
a {
  text-decoration: none !important;
  font-size: 16px;
  line-height: 18px;
  position: relative;
  font-weight: 400;
  color: var(--white);
}

h1 {
  font-size: 40px;
  line-height: 44px;
  position: relative;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 30px;
  line-height: 54px;
  position: relative;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

h3 {
  font-size: 30px;
  position: relative;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
}

h3 span {
  font-size: 30px;
  position: relative;
  font-weight: 900;
  text-transform: uppercase;
}

h4 {
  font-size: 26px;
  line-height: 20px;
  position: relative;
  font-weight: 500;
}

p {
  font-size: 15px;
  line-height: 20px;
  position: relative;
  font-weight: 400;
}

.section_subtitle {
  font-size: 14px !important;
  color: var(--grayMd);
  max-width: 40%;
  margin-bottom: 30px !important;
}

.section_subtitle:empty {
  display: none;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.scrolled {
  background-color: var(--black);
  box-shadow: 0 2px 4px 0 rgba(10, 10, 10, 0.1);
}

.img-radial {
  display: block;
  position: relative;
  width: fit-content;
  overflow: hidden;
  border-radius: 5px;
  max-width: 160px;
  max-height: 220px;
  transition: 0.25s;
}

.img-radial > img {
  width: 100%;
  transform: scale(1.2);
  transition: 0.25s;
  height: 240px;
  object-fit: cover;
}

.img-radial:hover > img {
  transform: scale(1.3);
}

.img-radial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
  transition: 0.25s;
  opacity: 1;
}

.img-radial:hover::before {
  opacity: 0;
}

.btn-dark,
.seeAll {
  background: #223038;
  padding: 6px 24px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
  transition: 0.25s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  line-height: 28px;
  font-size: 18px;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}

.btn-dark:hover,
.seeAll:hover {
  background: var(--blue);
  color: var(--white);
}

.seeAll:hover > img {
  transition: 0.25s;
}

.seeAll:hover > img {
  filter: contrast(0) brightness(10) grayscale(1);
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.small-strong {
  font-size: 14px;
  line-height: 16px;
  position: relative;
  font-weight: 600;
}

.small {
  font-size: 14px;
  line-height: 16px;
  position: relative;
  font-weight: 400;
}

.mini {
  font-size: 12px;
  line-height: 14px;
  position: relative;
  font-weight: 400;
}

.miqro {
  font-size: 12px;
  line-height: 12px;
  position: relative;
  font-weight: 400;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.text-justify {
  text-align: justify;
}

.padding-section {
  padding: 60px 0;
}

/* Header  */

header > nav {
  background: transparent;
}

header.scrolled > nav {
  background: var(--black);
}

nav {
  background-color: transparent;
  position: relative;
  height: 90px;
  padding: 0 40px !important;
  position: relative;
}

nav .logo {
  height: fit-content;
}

nav ul.main-nav {
  position: absolute;
  transform: translate(-50%);
  left: 50%;
}

nav ul.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

nav li {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav li a {
  font-size: 20px;
  line-height: 24px;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  transition: all 0.2s ease-out;
  cursor: pointer;
}

nav .menu {
  display: flex;
  flex-direction: row;
  position: absolute;
  right: 20px;
}

.menu_desktop a {
  display: flex;
  color: #000;
  font-size: 16px;
  padding: 10px 0;
  text-transform: capitalize;
  justify-content: center;
}

.menuItem {
  color: #000;
  font-size: 16px;
  padding: 10px 0;
  font-weight: 400 !important;
  display: flex;
  justify-content: flex-start !important;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

.menuItem.languages {
  padding: 5px 0 5px 20px;
}

.languagesChevron {
  width: 19px;
  margin-left: 10px;
}

.MobileNav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background: var(--black);
  z-index: 1040;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}

.MobileNav.open {
  transform: translateX(0);
}

.mobileNavTitle {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 10px;
}

.MobileNav__container__header__close {
  position: absolute;
  right: 0;
  top: 5px;
  color: var(--gray);
  width: 50px;
  height: 50px;
  padding: 10px;
  cursor: pointer;
}

.MobileNav__container__header__close:hover {
  transform: scale(1.1);
}

.MobileNav__container__menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 70%;
  margin: 70px auto 0;
}

.MobileNav__container__menu ul {
  padding: 0px 0 10px 2rem;
  max-width: 300px;
  margin: 0 auto !important;
}

.MobileNav__container__menu li {
  list-style: none !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  width: 90%;
  gap: 10px;
}

.MobileNav__container__menu p {
  margin-right: auto;
  font-size: 20px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.MobileNav__container a {
  color: var(--white);
}

.MobileNav__container__footer {
  background: var(--darkerGrey);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 10px 0 0 0;
}

.MobileNav__container__footer p {
  color: var(--gray);
  font-size: 10px !important;
}

.MobileNav__sidelinks,
.MobileNav__socials {
  padding: 10px 0;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.MobileNav__sidelinks li {
  display: inline;
  width: auto;
  padding: 5px;
  font-size: 12px;
}

.MobileNav__sidelinks a {
  font-size: 12px;
  width: max-content;
  color: var(--white);
  padding: 5px;
}

.languageLink {
  position: relative;
  color: #fff;
}

.MobileNav__socials a {
  width: max-content;
}

.MobileNav__socials img {
  width: max-content;
  height: 20px;
}

.termsLink {
  color: var(--gray) !important;
  font-size: 10px !important;
  text-decoration: underline !important;
}

.MobileNav_languages {
  position: absolute;
  top: 60px;
  right: 52%;
  transform: translateX(50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: max-content !important;
  align-items: center;
  padding: 20px;
  background: var(--black);
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  z-index: 1040;
}

.MobileNav_languages li {
  list-style: none !important;
  cursor: pointer;
  align-items: center;
  font-size: 18px;
  padding: 3px 0;
}

.MobileNav__sidelinks li::after {
  content: "|";
  margin-left: 10px;
}

.MobileNav__sidelinks ul.MobileNav_languages li::after {
  content: "";
}

.login {
  cursor: pointer;
}

.menu {
  position: relative;
  cursor: pointer;
}

.menu_desktop {
  display: none;
  position: absolute;
  top: 55px;
  width: 200px;
  height: fit-content;
  background: var(--darkerGrey);
  padding: 20px;
  border-radius: 5px 0 5px 5px;
  right: 0;
}

.menu_desktop a {
  display: flex;
  color: var(--gray);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  padding: 6px 0;
  text-transform: capitalize;
  justify-content: center;
}

.menuItem {
  color: inherit;
  padding: 0;
  display: flex;
  cursor: pointer;
  transition: none;
}

.menu_desktop .menuItem.logout {
  margin-top: 6px;
  border-top: 1px solid var(--gray);
}

.menu_desktop .menuItem.logout > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

.menu_desktop .menuItem.logout > a:hover img {
  filter: brightness(6) contrast(3);
}

.menu_desktop .menuItem a:hover {
  color: var(--white);
}

#filter-content {
  position: absolute;
  inset: 0;
  background: var(--background-color);
  padding: 160px 20px;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjust columns dynamically */
  gap: 40px 20px; /* Keeps consistent spacing between items */
  justify-content: start; /* Align items to the start */
  justify-items: center;
  align-content: start; /* Align the grid's content to the top */
  z-index: 1000;
}

.film-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  max-width: 180px;
  max-height: min-content;
}

.film-item img {
  height: 250px;
  width: 100%;
  max-width: 180px;
}

.film-item a {
  color: inherit;
}

.film-item h3 {
  font-size: 14px;
  margin-top: 10px;
  text-align: left;
}

.hidden {
  display: none;
}

.search-box {
  width: fit-content;
  height: fit-content;
  position: relative;
  margin-right: 10px;
}

.input-search {
  height: 50px;
  width: 50px;
  border-style: none;
  padding: 10px;
  font-size: 18px;
  outline: none;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  padding-right: 40px;
  background: #1f1f1f;
  color: #fff;
}

.input-search::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: 100;
}

.btn-search {
  width: 50px;
  height: 50px;
  border-style: none;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  right: 0px;
  color: #ffffff;
  background-color: transparent;
  pointer-events: painted;
}

.btn-search > img {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

.btn-search:focus ~ .input-search,
.input-search:focus {
  width: 300px;
  transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

/* Trending Spotlight Exclusive*/

.trending,
.spotlight {
  margin-top: -120px;
}

.trending_wrapper,
.spotlight_wrapper {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
}

.spotlight_item {
  padding: 0 20px !important;
  width: 100%;
  max-width: 196px;
}

.trending_item {
  padding: 0 !important;
}

.trending_item_title h2,
.spotlight_item_title h2 {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 21px !important;
  margin: 10px 0;
}

.trending_item_title h3,
.spotlight_item_title h3 {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  margin: 15px 0 10px;
  color: var(--grayMd);
}

.trending_item img,
.spotlight_item img {
  max-width: 130px;
}

.spotlight_item img {
  max-height: 180px;
  transform: scale(1);
}

.spotlight_item:hover img {
  transform: scale(1);
  cursor: default;
}

.trending_item_title .spotlight_item_title {
  max-width: 200px;
}

.spotlight_item_title p {
  font-size: 14px;
  color: var(--grayMd);
}

.exclusive-content-container {
  padding: 100px 0 50px;
  text-align: center;
}

.exclusive-content-container.cathegory-title {
  padding: 0;
  margin-top: -120px;
}

.exclusive-content-container h1,
.trending h1,
.spotlight h1 {
  font-size: 30px;
  font-weight: 800;
  position: relative;
  margin: 40px auto;
  width: fit-content;
}

.trending h1::before,
.spotlight h1::before,
.exclusive-content-container h1::before {
  content: url("");
  position: absolute;
  top: 50%;
  right: 105%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #4d4d4d;
}

.trending h1::after,
.spotlight h1::after,
.exclusive-content-container h1::after {
  content: url("");
  position: absolute;
  top: 50%;
  left: 105%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #4d4d4d;
}

.exclusive-content {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.exclusive-content img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.exclusive-content-title h3 {
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

#exclusiveSection {
  background: #000;
}

.exclusives-title {
  padding-bottom: 40px;
  position: relative;
  display: flex;
  justify-content: center;
}

.exclusives-title::before {
  content: url("../../assets/images/icon-stars.png");
  position: absolute;
  top: 50px;
}

#exclusiveSection .section-title {
  display: none !important;
}

#exclusiveSection .swiper-wrapper {
  justify-content: center;
}

#exclusiveSection .swiper-slide.cards {
  margin: 0 10px !important;
}

#exclusiveSection .swiper-slide.cards .card {
  background: transparent !important;
}

#exclusiveSection .swiper-slide.cards .card .card-header {
  padding: 0;
}

#exclusiveSection .swiper-slide.cards .card .card-header .border-btn {
  display: none;
}

#exclusiveSection .swiper-slide.cards .card .card-header img {
  min-height: 198px;
}

#exclusiveSection .swiper-slide.cards .card .card-body {
  display: none;
}

#exclusiveSection .swiper-button-prev,
#exclusiveSection .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%) !important;
}

/* Slider */

.swiper-wrapper {
  gap: 15px;
}

.swiper {
  height: fit-content;
  margin-bottom: 80px;
}

.swiper.mySwiper.trending-slider {
  padding-left: 40px;
  margin-left: -40px;
}

.swiper-slide {
  width: 100% !important;
  max-width: 160px;
  margin-right: 0 !important;
}

.swiper.mySwiper.trending-slider .swiper-slide {
  margin-right: 50px !important;
}

.title-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  .title_image {
    width: 30px;
  }
}

.swiper-scrollbar-drag {
  background: var(--magenta);
}

.movieSlider {
  width: 220px !important;
}

.movieSlider:hover {
  transform: scale(1.05);
  transition: ease-in-out 0.3s;
}

.movieSlider.margin-right {
  margin-right: 30px !important;
}

.movieSlider a {
  text-decoration: none;
  color: inherit;
}

.movie_image {
  position: relative;
  width: 160px;
}

.cardsTitle {
  font-size: 15px !important;
  max-width: 160px;
  margin-top: 15px;
}

/* Modal */

#modal-player {
  height: 250px;
}

#modal-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.number-overlay {
  position: absolute;
  top: 70%;
  left: -50px;
  transform: translateY(-50%);
  font-size: 9rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.549);
  /* Make text fill transparent */
  -webkit-text-stroke: 2px var(--grayDark);
  /* Add white stroke around text */
}

.number-overlay span {
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.movie-info-modal {
  background-color: #0a0a0a;
  color: white;
  height: auto;
  width: var(--movie_modal_width);
  /* Adjust size as needed */
  z-index: 1000;
  border-radius: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

#modal-player {
  height: 250px;
}

#modal-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-info-details {
  padding: 20px;
}

.movie-info-details .buttons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.movie-info-details .small-details {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.movie-info-details p {
  color: #9b9b9b;
  font-size: 12px;
}

.movie-info-modal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 999;
}

.close-modal:hover {
  color: red;
}

.clicked-movie-trailer,
.clicked-movie-trailer img {
  width: var(--movie_modal_width) !important;
  height: 100% !important;
  object-fit: cover;
  position: relative;
}

.clicked-movie-trailer img {
  height: 200px !important;
}

.volume-icon {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 35%;
  right: 15px;
  z-index: 100;
  cursor: pointer;
  background: rgba(157, 157, 157, 0.45);
  border-radius: 50%;
  padding: 6px;
}

.volume-icon:hover {
  background: rgba(157, 157, 157, 0.75);
  transition: ease-in-out 0.3s;
  transform: scale(1.1);
}

.movie-info-modal {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease;
  animation: zoom-in-animation 0.3s ease;
  z-index: 999;
}

.movie-info-modal.open {
  opacity: 1;
  transform: scale(1);
}

@keyframes zoom-in-animation {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  75% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.synopsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  /* Limit to 4 lines */
  line-clamp: 4;
  /* For better browser support */
  height: auto;
  max-height: 6em;
  /* This should be 4 * line-height */
  line-height: 1.5;
  /* Adjust line-height */
  padding: 0.5em 0;
}

#trailer .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 999;
}

.clicked-movie-trailer {
  width: 100%;
  height: auto;
}

.flowplayer {
  width: 100% !important;
  height: 100% !important;
}

.movie-info-details {
  padding: 20px;
}

.movie-info-details .buttons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.none {
  display: none;
}

.open {
  display: block;
}

.btn-play {
  background-color: var(--blue);
  color: var(--white);
  font-size: 16px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  padding: 13px 20px;
  max-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  transition: 0.3s;
}

.btn-play:hover {
  background-color: #0082cf !important;
}

.btn-play img {
  margin-left: 6px;
  width: 20px;
}

.movie-info-details .small-details {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.movie-info-details p {
  color: #9b9b9b;
  font-size: 12px;
}

@keyframes zoom-in-animation {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  75% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.billboard_wrapper {
  position: relative;
}

.billboard {
  width: 100% !important;
  height: 100vh !important;
  max-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
}

.billboard > .container {
  position: relative;
  z-index: 1;
}

.billboard video {
  width: 100%;
  object-fit: cover !important;
  position: absolute;
}

.billboard_title {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.billboard_title h1,
.billboard_title h2 {
  color: var(--white);
  font-size: 50px !important;
  font-weight: 700 !important;
  text-shadow: 0px 0px 8px #00000060;
  line-height: 1 !important;
  text-transform: capitalize;
}

.billboard_title p {
  color: var(--white);
  font-size: 15px !important;
  width: 80%;
  line-height: 1.6 !important;
  text-shadow: 0px 0px 8px #00000060;
  margin-bottom: 20px;
}

.billboard_btn {
  background-color: rgba(250, 250, 250, 0.3);
  color: var(--white);
  font-size: 16px;
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.billboard_btn img {
  margin-right: 6px;
  max-height: 30px;
}

.billboard_btn:hover {
  background-color: rgba(250, 250, 250, 0.2);
  transition: ease-in;
}

.billboard_image {
  position: absolute;
  max-height: 600px;
  width: 100% !important;
  height: 75vh !important;
}

.billboard_image.play {
  background: url(../../assets/images/play-bck.png) center no-repeat;
}

.billboard_image.fitness {
  background: url(../../assets/images/train-bck.jpg) center no-repeat;
}

.billboard_image.enjoy {
  background: url(../../assets/images/enjoy-bck.jpg) center no-repeat;
}

.billboard_image.learn {
  background: url(../../assets/images/learn-bck.jpg) center no-repeat;
}

.apps.row {
  gap: 50px 10px;
}

.apps.row > a {
  padding: 0;
  width: fit-content;
}

#app-section {
  margin-top: 60px;
  justify-content: center;
}

.overlay {
  background-color: transparent;
  background-image: url(../../assets/images/billboard_shadow.png);
  background-position: 0 top;
  background-repeat: repeat-x;
  background-size: 100% 100%;
  inset: 0;
  position: absolute;
}

.buttons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.topArticlesSection {
  margin: 50px auto 0;
}

.section-title {
  position: relative;
  padding: 60px 0 10px;
}

.section-title img {
  width: 40px;
  margin-right: 10px;
}

.section-title a {
  font-size: 24px;
  line-height: 20px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.section-title a.small-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  height: 30px;
  width: 70px;
  padding: 8px 10px;
  background: var(--Dark-Gray, #232323);
  color: var(--White);
  text-align: center;
  font-size: 13px;
  line-height: 12px;
  font-weight: 400;
  text-transform: capitalize;
  transition: 0.25s;
}

.section-title a.small-btn:hover {
  transform: scale(1.1);
}

.section-title > h1 {
  font-size: 30px !important;
  line-height: normal !important;
  text-transform: capitalize;
}

.section-title .subtitle {
  position: absolute;
  opacity: 0.35;
  font-size: 90px;
  left: -20%;
  top: 15px;
  z-index: -1;
  color: #0a0a0c;
  font-weight: 900;
  clear: both;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.btnFullMovie {
  width: 35%;
  background: var(--magenta);
  border: none;
  color: var(--white);
  padding: 10px;
  border-radius: 0.375rem;
  margin: 20px 0;
}

.cardsImage {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.cardsTitle {
  font-size: 14px !important;
  font-family: "Poppins", sans-serif;
  font-weight: 500 !important;
  padding-right: 20px;
}

.swiper-pagination {
  display: none;
}

.category-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  margin: 15px 0 10px;
  text-align: center;
}

/* Form */

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.contact__info {
  margin: 20px;
  padding: 50px 0;
}

.contact_form {
  padding: 50px 0;
}

form label {
  width: 100%;
}

.form-control:focus,
.form-control {
  background: #232323;
  border: none;
  color: var(--white);
  width: 100%;
}

/* Button */

.btn-send {
  border: none;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  margin: 0 0 30px;
  background: var(--blue);
  color: var(--white);
}

.btn-send:hover {
  background: #0f5c88;
}

.main-sections.no-margin-top {
  margin-top: 0;
}

.main-sections .category_subtitle {
  font-size: 16px !important;
  color: var(--gray);
  max-width: 30%;
  margin-bottom: 30px !important;
  text-align: justify;
  font-family: Poppins, sans-serif;
}

.user_image {
  width: 40px;
}

.subcat-link {
  background: none;
  border: 0px;
  color: var(--white);
}

.sub-category {
  margin-right: 10px;
}

.btn-secondary {
  color: var(--gray);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 10px 30px 10px 20px;
  background: var(--grayDark);
  border: none;
  white-space: nowrap;
}

.btn-secondary:hover > img,
.btn-secondary.active > img {
  filter: brightness(10) contrast(5);
}

.btn-secondary.active {
  background-color: var(--blue);
  border: none;
  display: flex;
}

.rhap_container {
  background: transparent !important;
  margin-top: 40px;
  border: 1px solid #393939;
  border-radius: 4px;
  padding: 20px !important;
}

.rhap_progress-bar-show-download {
  background-color: #5e5a5a !important;
}

.rhap_play-pause-button {
  color: var(--magenta) !important;
}

.rhap_progress-filled,
.rhap_download-progress {
  background: var(--magenta) !important;
  color: var(--magenta) !important;
}

.rhap_progress-indicator {
  background: var(--magenta) !important;
  border: 1px solid var(--white) !important;
}

.rhap_rewind-button,
.rhap_forward-button,
.rhap_time {
  color: var(--white) !important;
}

.rhap_main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.tag-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.tag-icon img {
  vertical-align: middle;
  margin-right: 5px;
  max-height: 24px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  color: var(--white);
  font-weight: 900;
  font-size: 26px;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 36%);
}

/* Footer */

footer {
  background: #151515;
  margin-top: 80px;
}

footer p {
  color: var(--gray);
  margin-bottom: 5px;
  font-size: 14px !important;
  line-height: 20px !important;
}

footer h5 {
  text-transform: lowercase;
  margin: 0;
  margin-bottom: 30px;
  font-size: 16px !important;
}

.footer-logo img {
  width: 90px;
}

footer a {
  font-size: 16px;
  line-height: 18px;
  position: relative;
  font-weight: 400;
  color: var(--white);
  text-decoration: underline;
}

.telegram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.telegram-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0088cc;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
  }
}

.telegram-icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}

footer a:hover {
  color: var(--magenta);
}

footer ul.social {
  padding: 0;
}

footer ul.social li {
  display: inline;
  margin-right: 15px;
}

.credit_cards {
  display: flex;
}

.credit_cards img {
  width: 50px;
  margin-right: 10px;
  object-fit: contain;
}

/* Categorie Pills  */

.categories {
  position: relative;
  overflow-x: auto;
}

.categories-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  transition: transform 0.3s ease-in-out;
  width: max-content;
  padding: 0 0 10px 0;
}

form#watch-form {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap !important;
  transition: transform 0.3s ease-in-out !important;
  width: max-content !important;
  padding: 0 0 10px 0 !important;
  max-width: max-content;
  margin: 0 auto;
}

form.categories-buttons {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  transition: transform 0.3s ease-in-out !important;
  width: max-content !important;
  padding: 0 0 10px 0 !important;
  max-width: max-content;
  margin: 0 auto;
}

.chevron-btn {
  height: 100%;
  aspect-ratio: 1;
  width: auto;
  border: none;
  background: none;
  color: var(--white);
}

.chevron {
  color: var(--white);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 30px;
  height: 100%;
}

.chevron.right {
  right: 0;
  background-image: linear-gradient(to left, var(--black) 50%, transparent);
}

.chevron.left {
  left: 0;
  background-image: linear-gradient(to right, var(--black) 50%, transparent);
}

/* width */
::-webkit-scrollbar {
  width: 15px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(128, 128, 128, 0.329);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #2c2c2c;
  border-radius: 10px;
}

/* Cards  */

.card {
  background: var(--darkerGrey) !important;
  border-radius: 15px !important;
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card .card-header {
  position: relative;
  padding: 10px;
}

.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

/* Latest Updates  */

.latestUpdate {
  padding: 0;
  text-align: center;
  position: relative;
}

.latestUpdate .swiper {
  width: 100%;
  max-width: 1560px;
}

.latestUpdate h2 {
  font-size: 28px !important;
  margin-bottom: 24px;
  color: var(--grayDark);
}

.latestUpdate .item-info h3 {
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latestUpdate .swiper-slide a {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.latestUpdate .swiper-slide a > img {
  min-height: 200px;
  max-width: fit-content;
  height: auto;
}

.latestUpdate.bckTrain .swiper-slide a {
  justify-content: flex-start;
}

.latestUpdate.bckTrain .swiper-slide a > img {
  height: 100%;
  position: absolute;
  left: -70px;
}

.latestUpdate.bckLearn .swiper-slide a > img {
  height: 100%;
}

.latestUpdate .swiper-button-prev,
.latestUpdate .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%) !important;
}

.latestUpdate .swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  z-index: 2;
  background: var(--black);
  background: -moz-linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 100%);
  background: linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.latestUpdate .swiper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 25%;
  z-index: 2;
  background: rgb(10, 10, 10);
  background: -moz-linear-gradient(90deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
  background: linear-gradient(90deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.latestUpdate.bckWatch .single-img {
  border-radius: 20px;
}

/* Single Page */

.single-game h1,
.single-movie h1 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.single-game h2 {
  font-size: 20px !important;
  line-height: 24px !important;
  position: relative;
  font-weight: 500 !important;
}

.single-game,
.single-movie {
  padding: 80px 20px;
}

.single-game .btn-play,
.single-movie .btn-play {
  max-width: 100%;
  width: 100%;
}

.single-game .img-radial {
  width: 100%;
  max-width: none;
  max-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-game .img-radial > img {
  width: auto;
  min-height: 360px;
  min-width: 100%;
}

.singleGame__more {
  margin: 50px 0 20px;
}

.single-item-info p {
  color: var(--gray);
  max-width: 480px;
}

.features-bar {
  margin-bottom: 50px;
}

.labels {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 5px;
}

.labels .item-label {
  padding: 5px 20px;
  background: var(--darkerGrey);
  color: var(--gray);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  max-height: fit-content;
}

.rating > img {
  width: 15px;
}

.rating > span {
  color: var(--gray);
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.topArticlesTitle a {
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  background: var(--darkerGrey);
  border-radius: 4px;
  max-width: fit-content !important;
}

.privacy-text li {
  margin: 20px 0;
}

/* Articles */

.articles-frame {
  gap: 50px 25px !important;
  justify-content: center;
}

.d-flex.justify-content-center.mt-5:empty {
  display: none;
}

.article-card {
  color: var(--white);
  flex-basis: 275px;
}

.article-card > picture {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 200px;
  border-radius: 10px 10px 0 0;
}

.article-card > picture img {
  width: 100%;
  height: fit-content;
  max-width: none;
  min-height: 100%;
}

.article-card > .article-content h5 {
  font-size: 16px !important;
  line-height: normal !important;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 48px;
}

.article-card > .article-content .excerp p {
  font-size: 14px !important;
  line-height: normal !important;
  color: #b7b7b7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article-card > .article-content .excerp p:empty {
  display: none;
}

.section_picker {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
}

.section_picker button {
  padding: 20px;
  border: 2px solid var(--blue);
  color: var(--white);
  width: 100%;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  transition: 0.2s;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section_picker button.inactive {
  border: 2px solid var(--darkerGrey);
  color: var(--grayMd);
  background: var(--darkerGrey);
}

.section_picker button.inactive.clicked {
  border: 2px solid var(--blue);
  color: var(--white);
  background: transparent;
}

.cathegory-title h1 {
  padding: 30px;
  border: 2px solid var(--darkerGrey);
  color: var(--white);
  width: 100%;
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
  transition: 0.2s;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
}

.cathegory-title h1::before,
.cathegory-title h1::after {
  content: none;
}

.unsubLink {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
}

/* Error page  */
.error_page_content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

/********* media queries *********/

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .desktop {
    width: 135px;
  }

  nav ul.main-nav {
    gap: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .mobile {
    display: block;
  }

  nav .logo {
    position: absolute;
    left: 20px;
    width: 180px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .category-card {
    min-width: auto !important;
    max-width: 320px !important;
  }

  .topArticlesSection .d-flex.gap-4 .article-card {
    max-width: calc(50% - 15px);
  }
}

@media only screen and (max-width: 991px) {
  .card img {
    max-height: 110px;
  }

  h1 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 800;
  }

  footer ul {
    padding-left: 0;
  }

  .disclaimer {
    margin-bottom: 50px !important;
  }

  footer a {
    font-size: 14px;
    line-height: 16px;
  }

  footer h6 {
    font-size: 14px !important;
  }

  footer p {
    font-size: 14px !important;
  }

  .social img {
    max-width: 24px;
    max-height: 24px;
  }

  .articles-frame {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .MobileNav__sidelinks {
    padding: 40px 0 20px;
  }

  .MobileNav {
    width: 70%;
  }

  .MobileNav__container__menu ul {
    padding: 0px 0 20px 2rem;
    max-width: 500px;
  }

  .MobileNav__container__footer {
    gap: 40px;
  }

  .MobileNav_languages {
    top: 80px;
  }

  nav ul.main-nav {
    display: none;
  }

  .main-sections .category_subtitle {
    max-width: 60%;
  }

  .billboard_title h1,
  .billboard_title h2 {
    font-size: 30px !important;
    text-align: center;
  }

  .billboard_title p {
    width: 100%;
    text-align: center;
    line-height: 1.25 !important;
  }

  .buttons {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 15px;
  }

  .buttons .btn-play,
  .buttons .billboard_btn {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }

  .section-item:not(:last-of-type) {
    margin-bottom: 50px;
  }

  .overlay {
    bottom: -25px;
  }

  .container,
  .container-md,
  .container-sm {
    max-width: 100%;
  }

  .category-card {
    min-width: 100% !important;
    max-width: 420px !important;
  }

  .topArticlesTitle h2 {
    text-align: center;
    font-size: 32px !important;
  }

  .topArticlesTitle {
    flex-direction: column;
  }

  .section-title {
    padding: 30px 0 10px;
  }

  .spotlight_item {
    padding: 0 20px 50px !important;
    max-width: 175px;
  }

  .exclusive-content-container {
    padding: 0 0 50px;
  }

  .single-movie-view__img {
    margin-top: 80px;
  }

  .section-title .subtitle {
    font-size: 72px;
    left: 0;
    right: initial !important;
    top: 0;
  }

  .topArticlesSection .container > .d-flex {
    flex-direction: column;
  }

  .topArticlesSection .container > .d-flex a {
    width: 100%;
    max-width: 480px;
    margin: auto;
  }

  .topArticlesSection .section-title {
    text-align: center;
  }

  .exclusive-content {
    flex-direction: column;
  }

  .exclusive-content img {
    height: 180px;
  }

  .btn-dark,
  .seeAll {
    padding: 4px 8px;
    font-size: 14px;
  }

  h2 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0 !important;
  }

  .title_image {
    width: 25px !important;
  }

  .section_subtitle {
    max-width: 100%;
  }

  .single-item-info {
    position: relative;
    top: 80px;
  }
}

@media only screen and (max-width: 450px) {
  .spotlight_item {
    max-width: 148px;
  }

  .MobileNav__sidelinks {
    padding: 20px 0 5px;
  }

  .MobileNav__container__footer {
    gap: 30px;
  }

  .MobileNav__container__menu {
    margin: 100px auto 0;
  }
}

@media only screen and (min-width: 360px) {
  .MobileNav__sidelinks {
    padding: 20px 0 5px;
  }

  .MobileNav__sidelinks li {
    font-size: 14px;
  }

  .MobileNav__container__menu {
    margin: 60px auto 0;
  }

  .MobileNav {
    width: 70%;
  }

  .MobileNav__container__menu ul {
    padding: 0px 0 15px 2rem;
    max-width: 500px;
  }

  .MobileNav__container__footer {
    gap: 10px;
  }

  .MobileNav__socials img {
    height: 24px;
  }

  .termsLink {
    font-size: 12px !important;
  }

  .MobileNav__container__footer p {
    font-size: 12px !important;
  }

  .MobileNav_languages {
    top: 60px;
  }
}
