/*Trending Movies Section Start*/
.trending-movies-section {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-20%);
  
}
@media (max-width: 800px) {
  .trending-movies-section {
    margin: 20px 0;
    transform: translateY(0%);
    
  }
  .tm-main{
    flex-wrap: wrap-reverse;
    justify-content: center;
    
  }
  .tm-main-text{
    align-items: center;
  }

  .tm-main h6{
    display: none;
  }
  
  
}

@media (max-width: 750px) {
  
  .tm-main h2{
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 35px;
  }
  
}

.trending-movies-container{
  display: flex;
  justify-content: center;
 
}
.tm-slide{
  z-index: 1;
  border-radius: 20px;
  
}
.tm-main{
  display: flex;
  gap: 40px;
  padding: 20px 60px;
  z-index: 1;
  border-radius: 20px;
}
.tm-swiper{
  border-radius: 20px;
}
.trending-movies-container .swiper-wrapper .swiper-slide {
  max-width: 900px !important;
  width: 100% !important;
}
.swiper{
  display: flex !important;
  max-width: 900px;
  margin: 0 !important;
  width: 100%;
}
.tm-main-text{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
}
.tm-main-text h4{
  font-size: 22px;
  line-height: 32px;
  font-size: 400;
  font-family: "Open Sans", sans-serif;
}
.tm-main-text h2{
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  font-family: "Open Sans", sans-serif;
}
.tm-main-text h6{
  font-weight: 400;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  line-height: 24px;
  max-width: 500px;
}
.tm-star-rating{
  padding-left: 8px;
}

.tm-main-buttons{
  margin-top: auto;
  margin-bottom: 20px;
}

.tm-main-trailer-btn{
  border-radius: 36px;
  font-weight: 700;
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px;
  border: none;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  text-transform: uppercase;
  background-color: transparent;
}
.tm-main-full-mv-btn{
  padding: 8px 24px;
  line-height: 28px;
  background-color:#E91E63;
  letter-spacing: .3px;
  border-radius: 36px;
  border: none;
  font-weight: 700;
  line-height: 28px;
  height: auto;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  text-transform: uppercase;
}
.tm-main-img{
  max-width: 360px;
  text-align: center;
  vertical-align: middle;
}
.tm-main-img img{
  width: 100%;
  border-radius: 20px;
}
.tm-right-arrow, .tm-left-arrow {
  font-size:20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-content: center;
  cursor: pointer;
  top: 50%; 
  
}
@media (max-width: 1050px) {
  .tm-left-arrow, .tm-right-arrow {
    display: none !important;
  }
  
}


.tm-right-arrow{
  text-align: right;
  transform: translateX(-50%);
  padding-right: 15px;
}
.tm-left-arrow{
  text-align: left;
  transform: translateX(50%);
  padding-left: 15px;
}
.fa-star {
  color: rgb(155, 155, 155); /* Simgenin genel rengi */
  
 
}
.checked {
  color: orange;
}
.tm-main-star{
  display: flex;
}
.tm-main-duration{
  padding-left: 10px;
  margin-left: 10px;
  
}

.tm-star-container { 
  overflow: hidden; /* Taşan kısmı gizler */
  display: inline-block; /* Boyanacak kısmı sınırlamak için */
  vertical-align: top;
}


/*Trending Movies Section End*/





/*most-watched-start*/
body{
  background-color: var(--paper-dark);
}

.most-watched-container{
 
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  gap: 50px;
  max-width: 1250px;
  padding: 20px 30px;
  padding-top: 100px;
  position: relative;
  z-index: 2;
}

.most-watched-movies-container{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  justify-content: center;
  flex: 1;


}

.container-card{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease-in-out,box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
    position: relative;
    z-index: 2;         
}

.container-card:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;

}


.img-container{
    position: relative;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;  
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.655) 0%, rgba(0, 191, 255, 0.66) 100%);
    

}
  
  .img-movie{
   
    width: 100%;
    height:100%;
    object-fit:contain;
    border-radius: 20px; 
 
  } 

  .video-icon{
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
  }

  .container-card:hover .video-icon {
  display: flex;
  }
  
  .container-card:hover .img-movie {
    opacity: 0.8; 
  }

  .video-icon img {
    width: 100px; 
    height: 100px; 
    object-fit: contain; 
  }

 #special-title{
  color: var(--secondary-light);
 }
#section-title{
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  margin-top: 5px;  
}
#section-title, #section-content {
  position: relative;
  z-index: 3;
}

#section-content{
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 20px;
  
  
}

.container-movie-name {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  padding: 25px; 
  border-radius: 0 0 20px 20px; 
  text-align: center; 
  width: 100%; 
  box-sizing: border-box; 
  z-index: 3;
  margin-top: -15px;
  
}

.title-movie{
  font-family: "Montserrat", sans-serif;
  margin-top: 5px;
  position: relative;
  z-index: 2;
}


@media (max-width: 1080px) {
  .most-watched-movies-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; 
  }

  .video-icon img {
    width: 80px;
    height: 80px;
  }

}


@media (max-width: 830px) {
  .most-watched-container{
    display: flex;
    flex-direction: column;
  }
  .most-watched-movies-container {
    justify-content: center;
    align-items: center;
  }


  .most-watched-container {
    padding: 10px 15px; 
  }

  #section-title {
    font-size: 40px; 
    text-align: center;
  }

  #section-content {
    font-size: 18px; 
    text-align: center;
  }

  .video-icon img {
    width: 80px; 
    height: 80px;
  }
}


@media (max-width: 600px) {
  .most-watched-movies-container {
    grid-template-columns: 1fr; 
 }
  #section-title {
    font-size: 50px; 
    text-align: center;
  }

  #section-content {
    font-size: 18px; 
    text-align: center;
  }

  .video-icon img {
    width: 70px; 
    height: 70px;
  }
}

/*most-watched-end*/
.background-between-section{
  width: 100%;
  height: 750px;
  position: absolute;
  z-index: -1;
  margin-top: -350px;
}

.background-between-section img{
  width: 100%;
  height: 100%;

}
  
/*implement promotion start*/
.implement-promotion-container{
  padding: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.card {
width: 350px;
height: 250px;
border-radius: 15px;
position: relative;
overflow: hidden;
background-size: cover;
background-position: center;
}

#card1 {
  background-image: 
    linear-gradient(315.16deg, rgba(233, 30, 99, 0.5) 19%, rgba(48, 79, 254, 0.5) 86.85%),
    url("../images/Bitmap1.png");
}

#card2 {
  background-image: 
    linear-gradient(135deg, rgba(144, 202, 249, 0.5),  rgba(0, 0, 139, 0.5)),
    url('../images/Bitmap.png'); 
  width: 500px;
}


#card3 {
  background-image: 
    linear-gradient(315.16deg, rgba(233, 30, 99, 0.5) 19%, rgba(48, 79, 254, 0.5) 86.85%),
    url('../images/Bitmap2.png'); 
}


.content {
position: absolute; 
padding: 10px;
text-align: center;
font-weight: bold;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center; 
}

.coffee-icon {
width: 50px; 

}

#card1 .content,
#card3 .content {
  bottom: 0px;
  left: 0;
  right: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 25px;


}
#card2 .content {
top: 65%;
left: 75%; 
transform: translate(-50%, -50%);
font-family: "Montserrat", sans-serif;
font-weight: 700;
font-size: 35px;
display: flex;
flex-direction: row;
gap: 8px;

}

#card2 p{
margin-top: 50px;
}

@media (max-width: 768px) {
  .implement-promotion-container {
    flex-direction: column; 
  }

  .card {
    width: 100%; 
   
  }

  #card2 {
    width: 100%;
  
  }
}

@media (max-width: 600px) {
  #card2 .content {
    top: auto; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    flex-direction: column; 
    gap: 5px; 
    font-size: 25px; 
    text-align: center; 
    transform: none; 
  }
  #card2 p {
      margin-top: 0; 
    }
}

/*implement promotion end*/


/*Top Categories Section Start*/
.top-categories-section {
  padding: 40px 0;
  font-family: "Poppins", sans-serif;
  margin-top: 80px;
}
.tc-title {
  font-size: 50px;
  line-height: 55px;
  font-weight: 600;
}
.tc-container-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.top-movie-container {
  display: flex;
  gap: 20px;
}
.movie-container1,
.movie-container2 {
  text-align: right;
  width: 300px;
  height: 200px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  user-select: none;
}
.mc-title1,
.mc-title2 {
  width: 150px;
  padding-right: 10px;
  font-size: 25px;
  margin: 10px 0 0 auto;
}
.mc-text1,
.mc-text2,
.mc-text3,
.mc-text4 {
  padding: 10px 10px 10px 0;
}

.movie-img1,
.movie-img2 {
  width: 200px;
  border-radius: 20px;
}
.tc-container-bottom {
  display: grid;
  gap: 20px;
  grid-template-columns: 300px 300px 600px;
  grid-template-rows: 400px 200px;
  margin: 0 auto;
  max-width: 1240px;
}
.movie-container3 {
  width: 620px;
  height: 400px;
  grid-area: 1 / 1 / 2 / 3;
  display: flex;
  justify-content: space-around;
  border-radius: 20px;
  align-items: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  user-select: none;
}
.mc-text-wrapper {
  display: flex;
  flex-direction: column;
}
.mc-title3,
.mc-title4 {
  font-size: 40px;
  margin: 0;
}
.movie-container4 {
  width: 620px;
  height: 620px;
  grid-area: 1 / 3 / 3 / 4;
  border-radius: 20px;
  display: flex;
  justify-content: space-around;
  border-radius: 20px;
  align-items: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  user-select: none;
}
.mc-text-wrapper {
  display: flex;
  flex-direction: column;
}
.movie-container5 {
  width: 300px;
  height: 200px;
  grid-area: 2 / 1 / 3 / 2;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-align: right;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  user-select: none;
}
.movie-container6 {
  width: 300px;
  height: 200px;
  grid-area: 2 / 2 / 3 / 3;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-align: right;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  user-select: none;
}
.mc-title5,
.mc-title6 {
  padding-right: 10px;
  font-size: 25px;
  margin: 10px 0 0 auto;
}
.mc-text5,
.mc-text6 {
  padding: 10px 10px 10px 0;
}
.movie-exp-btn {
  width: 200px;
  height: 50px;
  border-radius: 30px;
  background: transparent;
  border: 2px solid var(--paper-light);
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .top-categories-section {
    margin: 0 auto;
  }
  .top-movie-container {
    justify-content: center;
  }
  .tc-container-top {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .tc-container-bottom {
    grid-template-columns: 50% 50%;
    grid-template-rows: 2fr 1fr 3fr;
    margin: 0 20px;
    place-content: center;
  }
  .movie-container1 {
    width: 100%;
    margin: 0 0 5px 10px;
  }
  .movie-container2 {
    width: 100%;
    margin: 0 10px 0 5px;
  }

  .movie-container4 {
    width: 100%;
    height: 620px;
    grid-area: 3 / 1 / 4 / 3;
  }
  .movie-container3 {
    width: 100%;
  }
  .movie-container5,
  .movie-container6 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .tc-title {
    font-size: 30px;
  }
  .top-movie-container {
    margin: 20px 0;
    width: 100%;
  }

  .tc-container-top {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
  }

  .movie-container1 {
    width: 100%;
  }
  .movie-container2 {
    width: 100%;
  }
  .movie-container5,
  .movie-container6 {
    width: 100%;
    height: auto;
  }

  .mc-title1,
  .mc-title2,
  .mc-title5,
  .mc-title6 {
    font-size: 20px;
  }

  .movie-img1,
  .movie-img2 {
    max-width: 35%;
  }

  .movie-container3,
  .movie-container4 {
    width: 100%;
    height: auto;
    min-height: 300px;
  }

  .mc-title3,
  .mc-title4 {
    font-size: 30px;
  }
}

/*Top Categories Section Start*/

/*All Categories Section Start */
.all-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  user-select: none;
  margin-top: 80px;
}
.categories-title-wrapper {
  margin-bottom: 50px;
}
.cat-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 55px;
  text-align: center;
}

.movie-cat-container {
  width: 100%;
  max-width: 1600px;
}
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  margin: 10px 10px 55px;
}

.categories-list .category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.categories-list .category-item .movie-img {
  height: 150px;
  border-radius: 10px;
  margin-bottom: 15px;
  background: linear-gradient(315.16deg, #e91e63 19%, #304ffe 86.85%);
  padding: 3px;
}

.categories-list .category-item .movie-img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: var(--default-light);
}

.categorie-title {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  
}
.slide-btn {
  --swiper-navigation-size: 20px;
  --swiper-navigation-color: var(--default-light);
  border: 1px solid black;
  border-radius: 50%;
  width: 70px;
  height: 30px;
  background-color: black;
}
/*All Categories Section End */

/*pricing plan section start*/

.pricing-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 50px;
  margin-top: 50px;
  position: relative;
}


.pricing-cards {
display: flex;
justify-content: space-between;
margin-top: 30px;

}

.pricing-card {
  background-color: var(--paper-dark);
  border-radius: 20px;
  padding: 20px;
  width: 230px;
  color: var(--paper-light);
  position: relative;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-right: -10px; 
  font-family: "Montserrat", sans-serif;
  
}

.pricing-card .features {
  list-style: none; 
  margin-bottom: 30px;
  font-size: 12px;
}
.pricing-card .features li {
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2); 
  padding-bottom: 8px;
}

.pricing-card .features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pricing-header h2 {
  font-size: 36px;
  color: var(--paper-light); 
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
}

#section-header{
  color: var(--secondary-light);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  
}

.pricing-card .price {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--paper-light);
}

.pricing-card .description {
  font-size: 10px;
  color: var(--paper-light) ;
  font-weight: 300;
  margin-bottom: 20px;
  min-height: 50px;
  
}

.pricing-card:nth-child(1) .description{
 margin-top: 90px;
}

.pricing-card .choose-btn {
  background-color:var(--primary-main);
  color: var(--paper-light);
  border: none;
  padding: 8px 20px ;
  border-radius: 50px; 
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.3s ease;
  margin-top: auto;
  
}

.pricing-card:nth-child(1) .choose-btn{
  background-color: var(--secondary-main);
}

.pricing-card:hover {
  transform: translateY(-20px);
  z-index: 10;
}

.pricing-card:nth-child(2) {
  position: relative;
  border-radius: 10px; 
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease; 
  overflow: hidden;
  border: 1px solid #ff3465;
  
}

.pricing-card:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%); 
  width: 150%; 
  height: 200px; 
  background: linear-gradient(135deg, #8b09c3 20%, rgba(255, 52, 101, 1) 90%);
  border-radius: 50% ;
  z-index: -2; 

}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }


  .pricing-header h2 {
    font-size: 28px; 
  }

  .pricing-card{
    margin: 20px;
  }
}

@media (max-width: 500px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }



  .pricing-header h2 {
    font-size: 24px;
  }
}

.background-wrapper {
  width: 100%;
  height: 600px;
  z-index: -1;
  position: absolute;
  margin-top: 75px;
 
}

.background-wrapper img{
  width: 100%;
  height: 100%;  

}
/*pricing plan section end*/

/*enes css start*/
.news-event {
    padding-top: 120px;
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 66px;
  }
  .event {
    max-width: 600px;
    display: flex;
    gap: 20px;
  }
  .event-img {
    width: 100%;
    max-width: 240px;
  }
  .event-text-box {
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    align-self: center;
    max-width: 380px;
    font-size: 20px;
    line-height: 30px;
  }
  .event-text-box h4 {
    padding-bottom: 35px;
    font-size: 20px;
    font-weight: 700;
  }
  .event-text-box h3 {
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
  }
  .news {
    max-width: 600px;
    display: flex;
    gap: 20px;
  }
  .news-img {
    width: 100%;
    max-width: 240px;
  }
  .news-text-box {
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    align-self: center;
    max-width: 380px;
    font-size: 20px;
    line-height: 30px;
  }
  .news-event-box h4 {
    padding-bottom: 35px;
    font-size: 20px;
    font-weight: 700;
  }
  .news-text-box h3 {
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
  }
  
  @media (max-width: 1306px) {
    .news-event {
      display: flex;
      justify-content: center;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 589px) {
    .news-event {
      margin: 0 auto;
      display: flex;
      justify-content: center;
      padding: 0 20px;
    }
  
    .event {
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
    }
    .event-img {
      margin: 0 auto;
    }
    .event-text-box {
      margin: 0 auto;
    }
  
    .news {
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
    }
    .news-img {
      margin: 0 auto;
    }
    .news-text-box {
      margin: 0 auto;
      font-size: clamp(14px, 1.5vw + 1rem, 18px);
    }
    .event-text-box {
      font-size: clamp(14px, 1.5vw + 1rem, 18px);
    }
  }
  
  /*enes css end*/
  
