/*=============== GOOGLE FONTS ===============*/
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
/*=============== BASE ===============*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  /*========== Colors ==========*/
  /*Colors */
  --body-font: "Poppins";
  --black-color: #000;
  --black-color-light: #121416;
  --black-color-lighten: #14161a;
  --white-color: #fff;
  --body-bgcolor: #000000;
  --body-color: #ffffff;
  --primary-color: #d6402c;
  --header-text-color: var(--body-color);
  --footer-text-color: var(--body-color);
  --bg-opacity-10: #ffffff10;
  --bg-opacity-20: #ffffff20;
  --bg-opacity-30: #ffffff30;
  --bg-opacity-40: #ffffff40;
  --bg-opacity-50: #ffffff50;
  --bg-opacity-60: #ffffff60;
  --bg-opacity-70: #ffffff70;
  --bg-opacity-80: #ffffff80;
  --bg-opacity-90: #ffffff90;
  --bg-opacity-100: #ffffff;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--bg-opacity-20);
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: var(--radius-mdp-2xl);
}

body {
  font-family: var(--body-font, sans-serif);
  font-size: var(--normal-font-size, 16);
  line-height: var(--body-line-height, 1.5);
  background-color: var(--body-bgcolor, #000);
  color: var(--body-color, #fff);
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.text-primary {
  color: var(--primary-color);
}

textarea {
  font-family: var(--body-font, "sans-serif");
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#root main {
  flex-grow: 1;
}

/*=============== VARIABLES CSS ===============*/
section.playlist__section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 80px;
}
section.playlist__section .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--body-color, #fff);
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
}
section.playlist__section .container {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
section.playlist__section .container .channel {
  position: relative;
  width: 100%;
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #151515;
  color: var(--body-color, #fff);
}
section.playlist__section .container .channel:hover {
  transform: scale(1.05);
}
section.playlist__section .container .channel img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
  max-height: 100px;
}
section.playlist__section .container .channel .channel-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--body-color, #fff);
  text-align: center;
}

section.movies__section {
  min-height: 100vh;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}
section.movies__section .card {
  background: #04376b;
  max-width: 300px;
  width: 100%;
  position: relative;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
}
section.movies__section .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
section.movies__section .card-body {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  font-size: 20px;
  padding: 20px;
  padding-top: 80px;
  color: var(--body-color, #fff);
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.43) 40%);
}
section.movies__section .card:hover img {
  transform: scale(1.08);
}

section.movie__details {
  padding: 30px 80px;
}
section.movie__details #movie-details .backdrop {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.1;
}
section.movie__details .details-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 30px;
  gap: 40px;
}
section.movie__details .details-top div:nth-child(2) {
  width: 100%;
}
@media (max-width: 700px) {
  section.movie__details .details-top {
    display: block;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: #ccc solid 1px;
  }
}
section.movie__details .details-top img {
  width: 100%;
  height: 100%;
  margin-right: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.movie__details .details-top .rating {
  display: flex;
  gap: 5px;
  align-items: center;
}
section.movie__details .details-top p {
  margin: 20px 0;
}
section.movie__details .details-top .btn {
  margin-top: 20px;
}
section.movie__details .details-bottom li {
  margin: 15px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--body-color, #fff);
  border-color: rgba(255, 255, 255, 0.1019607843);
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  background: var(--header-bg-color, --body-bgcolor);
}
.header.p-fixed, .header.p-sticky {
  top: 0;
  z-index: 1000;
  position: fixed;
  transition: transform 0.4s;
}
.header.p-fixed + section, .header.p-sticky + section, .header.p-fixed + main, .header.p-sticky + main {
  margin-top: 66px;
}
.header.header__hidden {
  transform: translateY(-100%);
  box-shadow: none;
}
.header .scroll__indicator {
  position: absolute;
  width: 0%;
  height: 3px;
  background: var(--primary-color);
}

/*=============== NAV ===============*/
.nav {
  padding: 0px 80px;
  margin: auto;
}
.nav__logo, .nav__burger, .nav__close {
  color: var(--header-text-color, --body-color);
}
.nav__logo .site_name {
  font-size: 36px;
  font-weight: 500;
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  font-weight: var(--font-semi-bold);
  max-height: 70px;
}
.nav__logo picture {
  max-height: 50px;
}
.nav__logo img {
  max-height: 50px;
  max-width: 400px;
}
.nav__logo__dark {
  display: inline-flex;
}
.nav__logo__light {
  display: none;
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__burger, .nav__close {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: -2.5rem;
    width: 100%;
    min-height: calc(100vh - 74px);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: left 0.4s, opacity 0.3s;
    background: var(--header-bg-color, --body-bgcolor);
    z-index: 10000;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background: var(--header-bg-color, --body-bgcolor);
    padding-top: 1rem;
  }
  .nav__button {
    padding: 1.25rem 1.5rem;
  }
}
.nav__link {
  color: var(--header-text-color, --body-color);
  font-weight: var(--font-regular);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color, color 0.3s ease-in-out;
}
.nav__link:hover {
  color: var(--primary-color);
  background-color: var(--bg-opacity-10);
}
.nav [data-change=theme-mode] {
  margin-left: 20px;
  color: var(--header-text-color, --body-color);
  font-size: 28px;
}
.nav [data-change=theme-mode] i {
  vertical-align: middle;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.nav [data-change=theme-mode] i.ph-moon-star, .nav [data-change=theme-mode] i.ph-sun-dim {
  animation: 0.5s rotate linear;
}
.nav [data-change=theme-mode] i:hover {
  color: var(--primary-color);
}

/* Show menu */
.show-menu {
  opacity: 1;
  left: 0;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.4s;
}
.dropdown__link, .dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--header-text-color, --body-color);
  background-color: var(--body-bgcolor);
  display: flex;
  justify-content: initial;
  align-items: center;
  gap: 0px 40px;
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  transition: background-color, color 0.3s ease-in-out;
}
.dropdown__link i, .dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: var(--font-regular);
}
.dropdown__link:hover, .dropdown__sublink:hover {
  color: var(--primary-color);
  background-color: color-mix(in oklab, var(--header-bg-color, --body-bgcolor) 90%, transparent 10%);
}
.dropdown__menu, .dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.dropdown__item:hover .dropdown__menu, .dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}
.dropdown__sublink {
  background-color: color-mix(in oklab, var(--header-bg-color, --body-bgcolor) 95%, transparent 5%);
}

/*=============== Header End ===============*/
/*=============== Footer Section Begin ===============*/
.footer__section {
  background: var(--footer-bg-color, --body-bgcolor);
  color: var(--footer-text-color, --body-color);
}
.footer__section__content {
  padding: 18px 80px;
  max-width: 1920px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}
.footer__section__content .copyright__text p {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 425px) {
  .footer__section__content {
    padding: 13px 20px;
    justify-content: center;
  }
}
@media screen and (max-width: 1100px) {
  .footer__section__content {
    padding: 13px 50px;
  }
}
@media screen and (min-width: 1368px) {
  .footer__section__content {
    padding: 13px 80px;
  }
}
@media screen and (min-width: 1920px) {
  .footer__section__content {
    padding: 13px 160px;
  }
}

/*=============== Footer Section Begin ===============*/
/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1920px) {
  section.playlist__section, section.movies__section, section.movie__details {
    padding-inline: 160px;
  }
  .nav {
    padding: 0px 160px;
  }
}
@media screen and (min-width: 1118px) {
  .nav {
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
  }
  .nav__list li {
    margin-left: 40px;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }
  .nav__button {
    margin-left: 40px;
  }
  .nav__menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dropdown__item, .dropdown__subitem {
    position: relative;
  }
  .dropdown__menu, .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
    width: -moz-max-content;
    width: max-content;
  }
  .dropdown__link, .dropdown__sublink {
    padding-inline: 1.5rem 3.5rem;
  }
  .dropdown__subitem .dropdown__link {
    padding-inline: 1.5rem;
  }
  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
  }
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 100%;
    pointer-events: initial;
    transition: top 0.3s;
  }
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top 0.3s;
  }
}
@media screen and (max-width: 1100px) {
  section.playlist__section, section.movies__section, section.movie__details {
    padding-inline: 50px;
  }
  .nav {
    padding-inline: 50px;
  }
  .nav__link, .nav__button {
    padding: 1.5rem 50px;
  }
  .dropdown__link, .dropdown__sublink {
    background: var(--body-bgcolor, #000);
    padding: 1.5rem 50px;
    padding-left: 70px;
  }
  .dropdown__link:hover, .dropdown__sublink:hover {
    background-color: color-mix(in oklab, var(--body-bgcolor) 95%, #000 5%);
  }
}
/* For small devices */
@media screen and (max-width: 425px) {
  .nav {
    padding-inline: 20px;
  }
  .nav__link, .nav__button {
    padding: 1rem 20px;
  }
  .nav__logo img {
    max-width: 200px;
  }
  .nav__logo h1 {
    font-size: 32px;
  }
  section.playlist__section, section.movies__section, section.movie__details {
    padding-inline: 20px;
  }
  section.movies__section .card {
    height: 350px;
  }
  section.movies__section {
    place-items: center;
  }
}
@media (max-width: 425px) {
  .nav__logo .site_name {
    font-size: 32px;
  }
}/*# sourceMappingURL=style.css.map */