body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 10px 20px;
}

.logo {
  width: 280px;
  height: 80px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.movie-image {
  width: 303px;
  height: 430px;
  overflow: hidden;
  margin-right: 20px;
  position: relative;
  cursor: pointer;
}

.movie-image:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-image:hover span {
  opacity: 1;
}

.movie-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.movie-image:hover img {
  transform: scale(1.05);
}

.movie-image span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* footer.css */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
}

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

.footer__widget {
  margin-bottom: 30px;
}

.footer__widget h5 {
  font-weight: bold;
}

.footer__widget ul {
  list-style: none;
  padding: 0;
}

.footer__widget ul li {
  margin-bottom: 10px;
}

.footer__copyright {
  margin-top: 20px;
}

/* Media Queries for Responsiveness */

/* Adjust styles for tablets (e.g., iPad) */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .movie-image {
    width: calc(50% - 10px);
    height: auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }
  .movie-image:hover {
    transform: scale(1.05);
    cursor: pointer;
  }
  /* Add more styles for tablet screens */
}

/* Adjust styles for mobile devices (e.g., smartphones) */
@media (max-width: 576px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .movie-image {
    width: 100%;
  }

  /* Add more styles for mobile screens */
}

/* Add styles for the footer */
@media (max-width: 576px) {
  .footer {
    text-align: left;
    padding: 20px;
  }

  .footer__widget {
    margin-bottom: 20px;
  }

  .footer__widget h5 {
    font-size: 18px;
  }

  .footer__widget ul {
    list-style: none;
    padding: 0;
  }

  .footer__widget ul li {
    margin-bottom: 5px;
  }

  .footer__copyright {
    margin-top: 10px;
    font-size: 14px;
  }
}


.buy-button1 {
  border: none;
  cursor: pointer;
  padding: 20px;
  font-size: 25px;
  bottom: 80px;
  top: -10%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  color: #ffffff;
  text-shadow: 3px 2px 3px #000;
  z-index: 2;
  /* Ensure the button is on top of the video */
}

.buy-button2 {
  border: none;
  cursor: pointer;
  padding: 20px;
  font-size: 25px;
  bottom: 80px;
  top: -10%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  color: #ffffff;
  text-shadow: 3px 2px 3px #000;
  z-index: 2;
  /* Ensure the button is on top of the video */
}

.container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #40d7bc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 10px;
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2) saturate(1.8) hue-rotate(0deg);
}

/* .circle:hover img,
.circle.zoom img {
  transform: scale(1.1);
} */

@media (max-width: 768px) {
  .circle {
    width: 150px;
    height: 150px;
  }
}

/* Styling for the video popup container */
.video-popup {
  display: none;
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background-color: #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 20px;
  border: 5px solid black; /* Add a border to the popup */
  max-width: 100%;
  width: 90%;
  height: 60%;
}

/* Styling for the close button */
.close-button {
  position: absolute;
  top: -50px; /* Adjust the top value to position the close button above the video */
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 10%;
  z-index: 10000; /* Increase the z-index for the close button */
}
/* Styling for the text in the center of the video */
.video-popup-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  z-index: 1000; /* Make sure the text is visible above the video */
}
/* Responsive styles for the video player */
.video-js.vjs-default-skin {
  width: 100% !important;
  height: 100% !important;
}
/* Media queries for centering the video popup on smaller screens */
@media only screen and (max-width: 768px) {
  .video-popup {
    width: 90%;
    height: 60%;
  }
}

@media only screen and (max-width: 576px) {
  .video-popup {
    width: 90%;
    height: 60%;
  }
}
/* Styles for the age restriction popup */
.age-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.age-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Styling for buttons */
.age-popup-content button {
  display: block;
  margin: 10px auto;
  padding: 15px 30px;
  font-size: 20px;
}
#exitButton {
  margin-top: 10px;
  background-color: red;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
}
#enterButton {
  margin-top: 10px;
  background-color: rgb(21, 133, 6);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0); /* Black overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Ripple effect on button click */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  pointer-events: none;
}

.ripple:focus::before {
  width: 200%;
  height: 200%;
  opacity: 1;
  animation: ripple-animation 0.4s ease-out;
}

@keyframes ripple-animation {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.6;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 20px;
  flex-wrap: wrap;
}

.button {
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 1rem; /* Add margin-right for gaps between buttons */
}

.button a {
  display: block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: blue;
  border: 2px solid #40d7bc;
  /* border: 2px solid #000000; */
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(45deg, #0074cc, #ff00ff); /* Blue gradient */
  transition: background-color 0.3s, transform 0.3s;
}

.button a:hover {
  background-color: darkblue;
  transform: scale(1.05);
}

.text-center {
  text-align: center;
  color: #585656;
  text-shadow: 3px 2px 3px #000;
  font-size: 25px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .button-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* Media query for all mobile devices */
@media screen and (max-width: 767px) {
  /* Your CSS rules for mobile devices go here */
  body {
    font-size: 14px; /* Example: reducing font size for mobile devices */
  }
  /* Add more rules as needed */
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.heading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Center vertically on the viewport */
}
.heading {
  color: #40d7bc;
  text-shadow: 3px 5px 5px #000;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 24px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .heading {
    font-size: 28px;
  }
}
.custom-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 5px;
  font-size: 16px;
  z-index: 1000;
}
.container {
  max-width: 1200px;
}
/* Style for the container to create a "dome" appearance */
.dome-container {
  padding: 20px; /*  40px; Adjust the padding to control the "dome" height */
  text-align: center; /* Center the content horizontally */
  color: white; /* Text color for content inside the "dome" */
}

/* Style for the content within the "dome" */
.content {
  font-size: 24px; /* Adjust the font size as needed */
}

/* Major Issue part    Media Query for Mobile Devices */
/* @media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }

  .dome-container {
    padding: 5px; 
  }

  .content {
    font-size: 18px;
  }
}  */
/* Navigation bar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 10px 20px;
}
.logo {
  width: 280px;
  height: 80px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li {
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
/* Footer styles */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer__widget {
  margin-bottom: 30px;
}
.footer__widget h5 {
  font-weight: bold;
}
.footer__widget ul {
  list-style: none;
  padding: 0;
}
.footer__widget ul li {
  margin-bottom: 10px;
}
.footer__copyright {
  margin-top: 20px;
}
/* Mobile */
@media (max-width: 767px) {
  /* Styles for mobile */
}

/* Tablet */
@media (min-width: 768px) {
  /* Styles for tablet */
}

/* Desktop */
@media (min-width: 992px) {
  /* Styles for desktop */
}
html,
body {
  overflow-x: hidden;
}

body {
  overflow-y: auto;
}
@media (max-width: 768px) {
  /* Your existing tablet styles go here */
}
/* Adjust styles for mobile devices (e.g., smartphones) */
@media (max-width: 576px) {
  /* Your existing mobile styles go here */
}
/* Add styles for the footer for mobile screens */
@media (max-width: 576px) {
  .footer {
    text-align: left;
    padding: 20px;
  }
  .footer__widget {
    margin-bottom: 20px;
  }
  .footer__widget h5 {
    font-size: 18px;
  }
  .footer__widget ul {
    list-style: none;
    padding: 0;
  }
  .footer__widget ul li {
    margin-bottom: 5px;
  }
  .footer__copyright {
    margin-top: 10px;
    font-size: 14px;
  }
}
/* Style the title wrapper */
.title-wrapper {
  text-align: center;
  margin-bottom: 15px;
}

.title-wrapper h2 {
  color: #40d7bc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  text-shadow: 3px 5px 5px #000;
  font-size: 24px;
}

/* Style the playlist container */
.playlist_scrol {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 500px; /* Set a maximum height for the playlist */
  overflow-y: auto; /* Add a vertical scrollbar when content overflows */
  display: flex; /* Display items in a column */
  flex-wrap: wrap; /* Allow items to wrap to the next row */
}

/* Style individual playlist items */
.playlist_scrol .palylist-video {
  margin-right: 10px; /* Adjust the spacing between playlist items */
  margin-bottom: 10px; /* Adjust the spacing between rows */
  flex: 0 0 calc(50% - 5px); /* Allow items to grow and shrink, but don't allow them to shrink to zero width */
  width: calc(
    50% - 5px
  ); /* Set each item to occupy 50% of the container width with a 5px gap */
  box-sizing: border-box; /* Include padding and border in the width calculation */
}

.playlist_scrol .palylist-video:nth-child(2n) {
  margin-right: 0; /* Remove the margin from every second item in a row to prevent extra spacing */
}

.playlist_scrol .palylist-video .w-img {
  display: block;
  text-align: center;
  text-decoration: none;
}

.playlist_scrol .palylist-video img {
  width: 100%; /* Make the images fill their container */
  max-width: 100%; /* Ensure images don't exceed their container width */
  border-radius: 10%;
  border: 2px solid #40d7bc;
  filter: contrast(1.2) saturate(1.8) hue-rotate(0deg);
}

/* Add a flip effect to playlist items  ---- image flip */
/* .playlist_scrol .palylist-video {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.5s;
}

.playlist_scrol .palylist-video:hover {
  transform: rotateY(180deg);
} */

/* Reset the image to its original position after the flip animation */
/* .playlist_scrol .palylist-video:hover img {
  transform: rotateY(0deg);
} */

/* Optional: Add hover effect to playlist items */
.playlist_scrol .palylist-video:hover img:hover {
  transform: scale(1.03); /* Add a slight zoom effect on hover */
  transition: transform 0.3s ease;
  filter: contrast(1.2) saturate(1.6) brightness(1.3) hue-rotate(0deg);
}

/* Optional: Add hover effect to playlist items  --- image zoom */
/* .playlist_scrol .palylist-video:hover img {
    transform: scale(1.02) ; 
    transition: transform 0.3s ease;
} */

/* Style the product__modal-content  */
.product__modal-content {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.attachment-full {
  /* filter: contrast(1.2) saturate(1.8) hue-rotate(0deg); */
  filter: contrast(1.2) saturate(1.6) brightness(1.2) hue-rotate(0deg);
}

/* .image-full {

  filter: contrast(1.2) saturate(1.6) brightness(1.2) hue-rotate(0deg);

} */

/* Style the product title */
.product__modal-content h4 {
  color: #585656;
  text-align: center;
  text-shadow: 3px 5px 5px #000;
  margin-bottom: 15px;
  font-size: 24px;
}

/* Style the release date */
.product__modal-content .rating-no {
  color: hsl(0, 1%, 34%);
  text-shadow: 3px 5px 5px #000;
  justify-content: center;
  align-items: center;
}

/* Style the star rating */
.product__modal-content .rating-left {
  color: #fab906;
  text-shadow: 3px 5px 5px #fab906;
  justify-content: center;
  align-items: center;
}

/* Style the duration */
.product__modal-content .review {
  color: #2c8509;
  text-shadow: 3px 5px 5px #2c8509;
  justify-content: center;
  align-items: center;
}

/* Style the video quality indicators */
.product__modal-content .rating-no .fas {
  color: #1e06fa;
  text-shadow: 3px 5px 5px #1e06fa;
  margin-right: 5px;
}

/* Style the product description */
.product__modal-content .product__modal-des {
  color: #585656;
  justify-content: center;
  align-items: center;
  text-shadow: 1px 1px 1px #000000;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
}

/* Style for the slider */
.shop__area .slider {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style for the image within the slider */
.shop__area #image {
  border: 2px solid grey;
  border-radius: 8px;
  height: 100vh;
}
/* Navigation bar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 10px 20px;
}

.logo {
  width: 280px;
  height: 80px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* Footer styles */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
}

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

.footer__widget {
  margin-bottom: 30px;
}

.footer__widget h5 {
  font-weight: bold;
}

.footer__widget ul {
  list-style: none;
  padding: 0;
}

.footer__widget ul li {
  margin-bottom: 10px;
}

.footer__copyright {
  margin-top: 20px;
}

/* Media Queries for Responsiveness */

/* Adjust styles for tablets (e.g., iPad) */
@media (max-width: 768px) {
  /* Your existing tablet styles go here */
}

/* Adjust styles for mobile devices (e.g., smartphones) */
@media (max-width: 576px) {
  /* Your existing mobile styles go here */
}

/* Add styles for the footer for mobile screens */
@media (max-width: 576px) {
  .footer {
    text-align: left;
    padding: 20px;
  }

  .footer__widget {
    margin-bottom: 20px;
  }

  .footer__widget h5 {
    font-size: 18px;
  }

  .footer__widget ul {
    list-style: none;
    padding: 0;
  }

  .footer__widget ul li {
    margin-bottom: 5px;
  }

  .footer__copyright {
    margin-top: 10px;
    font-size: 14px;
  }
}

.custom-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border-radius: 5px;
  font-size: 16px;
  z-index: 1000;
}
/* styles.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

nav {
  background-color: #333;
  color: #fff;
}

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

nav ul li {
  display: inline;
  margin-right: 10px;
}

#content {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  padding: 20px;
  background-color: #fff;
}
/* CSS for responsive video container with 16:9 aspect ratio ------------Video outside the viewport */
.embed-responsive-16by9 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100%) */
  height: auto; /* Change height to auto */
  /* border: 2px solid #40D7BC;
  border-radius: 20px; */
}

.video-js {
  border-radius: 20px;
  overflow: hidden;
  /* border: 2px solid #40d7bc !important;  */
}

.slider {
  width: 100%;
  max-width: 800px; /* Set a max-width for responsiveness */
  height: auto; /* Allow height to adjust based on image aspect ratio */
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.slider img {
  width: 100%;
  height: auto; /* Allow height to adjust based on image aspect ratio */
  object-fit: cover;
  cursor: pointer; /* Add cursor pointer */
  transition: transform 0.3s; /* Add zoom effect */
  border-radius: 10%; /* Make the image rounded */
}
/* styles.css */
.buttons {
  gap: 4px; /* Adjust the gap as needed */
}
body.day-mode {
  background-color: #fff;
  color: #000;
  /* padding: 10px 20px; */
  justify-content: center;
  align-items: center;
  /* border-radius: 10px;
    margin: 0;
    height: 100vh; Adjust as needed */
}

body.night-mode {
  background-color: #000;
  color: #fff;
  /* padding: 10px 20px; */
  justify-content: center;
  align-items: center;
  /* border-radius: 10px;
    margin: 0;
    height: 100vh; Adjust as needed */
}

.container {
  text-align: center;
  padding: 10px;
}

.mode-toggle-btn,
.back-btn {
  background-color: #3c3d3d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 5px; /* Add margin for spacing between buttons */
}

.mode-icon,
.back-icon {
  height: 5vh; /* Adjust as needed */
}
.mode-icon,
.back-icon {
  height: 5vh;
  /* Adjust as needed */
}

/* p {
  font-family: Georgia, "Times New Roman", Times, serif;
}

h2 {
  font-family: "Poppins", sans-serif;
}
h3 {
  font-family: "Poppins", sans-serif;
}
h1 {
  font-family: "Poppins", sans-serif;
}
span {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
} */
@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.animate-blink {
  animation: blink 2s infinite; /* You can adjust the duration as needed */
}


#popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  justify-content: center;
  align-items: center;
}

#popup-content {
  border-radius: 20px;
  width: 90vw;
  height: 90vh;
  max-width: 1000px;
  max-height: 600px;
  position: relative;
  text-align: center;
}

#close-btn {
  position: relative;
  top: 2px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  color: #000;
}

@media (max-width: 768px) {
  #popup-content {
    width: 90vw;
    height: 90vh;
  }
}

@media (max-width: 767px) {
  #resize {
    display: none;
  }
}

#popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  overflow: auto;
}

#popup-content {
  position: relative;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  color: #000;
  margin-top: 30px;
}

#popup-content iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 20px;
}

@media only screen and (orientation: landscape) {
  .fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
  }
}

/* filter: contrast(1.2) saturate(1.8) brightness(1.3) hue-rotate(15deg) */
 /* filter: contrast(1.0) saturate(1.1) brightness(1.5) hue-rotate(0deg); */
.vcurve {
  filter: contrast(1.2) saturate(1.5) brightness(1.3) hue-rotate(0deg);
 
}
.curve {
  border-radius: 20px;
  /* width: 1920px; */
  
}

/* filter:  contrast(1.2) 
saturate(1.5)
brightness(1.1)
hue-rotate(0deg); */

/* contrast(1.8)
saturate(2)
hue-rotate(60deg)
drop-shadow(1px 1px 1px rgba(0, 255, 0, 0.5)); */

/* Apply CSS filters and properties to enhance the second iframe content */
.second-iframe {
  filter: contrast(1.2) saturate(1.5) brightness(1.2) hue-rotate(0deg);
}

@media (min-width: 1080px) {
  img,
  video {
    filter: saturate(1.5);
  }
}

@media (max-width: 480px) {
  img,
  video {
    filter: saturate(1.5) brightness(1.1) contrast(1.3);
  }
}
/* blur(0.01px) */

h3 {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
}

a {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

/* Style for the outer container */
/* #google_translate_element_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 10vh;

  margin-top: 30px;
} */
    /* Container styles */
    #google_translate_element_container {
      margin-bottom: 30px;
      display: flex;
      flex-direction: column; /* Arrange items vertically */
      justify-content: center;
      align-items: center;
  }

  /* Heading styles */
  #language_heading {
      margin-bottom: 10px; /* Space between heading and dropdown */
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      text-align: center; /* Center align text */
      color: #ffffff; /* Text color */
  }

  /* Google Translate element styles */
  #google_translate_element {
      width: 100%; /* Ensure dropdown takes available width */
      max-width: 300px; /* Optional: limit the width of the dropdown */
  }

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
      font-size: 1.5rem; /* Smaller heading size on mobile */
  }
}

/* Style for the "Select Your Language" heading */
#language_heading {
  font-size: 30px;
  color: #40d7bc;
  font-weight: bold;
  margin-top: 30px;
}

/* Style for the Google Translate dropdown */
.goog-te-combo {
  width: 250px;
  /* Set a fixed width for the dropdown */
  margin-top: 10px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  margin-right: 5px;
  
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px; /* Adjust margin for both desktop and mobile */
  padding: 10px 20px;
  
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  height: 50px;
  width: 200px;
}

.button i {
  margin-right: 5px;
}

.button span {
  white-space: nowrap; /* Prevent text from wrapping */
}

@media screen and (max-width: 600px) {
  .button {
    width: calc(50% - 20px); 
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  span {
      font-size: 18px;
  }
}
.socialContainer {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10000;
}

.shareButton {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.shareButton:hover {
  transform: scale(1.3);
}

.shareButton img {
  width: 40px;
  height: 40px;
}
h1 {
  color: #40D7BC;
  text-align: center;
  text-shadow: 3px 5px 5px #000;
  font-size: 35px;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px; /* Smaller font size for mobile */
  }
}
body {
  background: #000;
}

.tab-section {
  display: none;
  /* Hide all sections initially */
}

.active {
  display: block;
  /* Show active section */
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.grid img {
  width: 100%;
  border-radius: 5px;
}

.badge {
  padding: 5px 10px;
  background-color: #40D7BC;
  color: #fff;
  border-radius: 5px;
  margin: 0 5px;
}

.pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination button {
  margin: 0 5px;
  padding: 5px 10px;
  background-color: #40D7BC;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.pagination button.disabled {
  background-color: #555;
  cursor: not-allowed;
}
/* Pagination Button Styles */
/* General pagination styling */
.pagination-button {
background-color: #f0f0f0;
border: 1px solid #ddd;
color: #333;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}

.pagination-button:hover {
background-color: #007bff;
color: white;
}

.pagination-button.active {
background-color: #007bff;
color: white;
font-weight: bold;
}

.item {
padding: 8px;
}

@media (max-width: 768px) {
.item {
width: calc(50% - 10px); /* 2 items per row on mobile */
}
#google_translate_element_container {
  text-align: center;
  margin-top: 20px;
}
#language_heading {
  font-size: 1.5em;
  margin-bottom: 10px;
}
  /* .movie-title {
    font-size: 32px !important;
  }


  @media (max-width: 768px) {
    .movie-title {
      font-size: 24px !important; 
    }
  }

  @media (max-width: 480px) {
    .movie-title {
      font-size: 18px !important; 
    }
  } */
}



