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;
  }
}
/* Add CSS styles for the ad container */
.ad-container {
  position: relative;
  padding: 2px;
  /* Adjust the padding as needed */

  border-radius: 20px;
  /* Add rounded corners */
  margin-bottom: 2px;
  /* Add some margin at the bottom */
  /* Center the contents vertically and horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.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.2);
}

@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: rgba(0, 0, 0, 0.8); /* 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;
}

/* 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;
}
/* 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);
}

/* 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; */


}
.vcurve {
  /* 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 */

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

.slide {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease-in-out;
  text-align: center;
  border: 4px solid grey;
  border-radius: 8px;
}



.slide {
  flex: 0 0 100%;
  text-align: center;
}



.slide img {
  width: 500px;
  height: auto;
  border: 4px solid grey;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: inline-block;
  cursor: pointer;

}   */




  



