@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  background: #1B1B25;
  color:#9cabbe;
  user-select: none;
  margin: 0;
  padding: 0;
}
.router-link {
  text-decoration-line: none;
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
}
.router-link:hover {
    background-color: #3e8e41;
}
.router-link-active {
    background-color: #3e8e41;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4,4,4,0.884);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.loader.show {
  opacity: 1;
  visibility: visible;
}
.loader .spinner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid transparent;
  border-top-color: #9cabbe;
  border-bottom-color: #9cabbe;
  animation: spin 2s linear infinite;
}
.loader .spinner:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 10px solid transparent;
  border-left-color: #9cabbe;
  border-right-color: #9cabbe;
  animation: spin 3s linear infinite;
}
.loader .spinner:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 10px solid transparent;
  border-top-color: #9cabbe;
  border-bottom-color: #9cabbe;
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.refresh-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #A175FF;
  border: none;
  padding: 5;
  border-radius: 50px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.refresh-button:hover .fa-sync-alt, .refresh-button:active .fa-sync-alt {
  animation: spin 1s linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

.auth-page {
display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #1B1B25;
  padding: 0 20px;
  }
.auth-form {
    background-color: #f9f9f9;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  width:400px;
  max-width: 400px;
  text-align: center;
  height: 500px; /* Set a fixed height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  }
.auth-form  input[type="email"], input[type="password"] {
  outline-color:black ;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
.auth-form  button {
  width: 100%;
  padding: 8px;
  background:linear-gradient( #4EDFA6,#00E07A ) ;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  }
  
.auth-form  p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
  }
.auth-page  p a {
    color: #00E07A;
    font-weight: bold;
    text-decoration: none;
  }
.piccolo-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #00E07A;
  display: flex;
  justify-content: center;
  align-items: center;
}
#stool{
  font-size: 5px;
  text-align: center;
}
x{
  color:#A175FF;
  font-weight: bold;
}
.piccolo-char {
  animation: sizzle 1s infinite alternate;
}
.piccolo-char:nth-child(1) {
  animation-delay: 0s;
}
.piccolo-char:nth-child(2) {
  animation-delay: 0.1s;
}
.piccolo-char:nth-child(3) {
  animation-delay: 0.2s;
}
.piccolo-char:nth-child(4) {
  animation-delay: 0.3s;
}
.piccolo-char:nth-child(5) {
  animation-delay: 0.4s;
}
.piccolo-char:nth-child(6) {
  animation-delay: 0.5s;
}
.piccolo-char:nth-child(7) {
  animation-delay: 0.6s;
}
@keyframes sizzle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.password-input {
  position: relative;
  display: flex;
  align-items: center;
}
.authforms h2 {
  text-align: left;
  margin-bottom: 10px;
  color: #333;
}
.password-input input[type="password"],
.password-input input[type="text"] {
outline-color: black;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.toggle-password {
  position: absolute;
  top: 40%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
}
.toggle-password:hover {
  color: #666;
}
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background-color: #1B1B25;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #A175FF;
}
.header-buttons button {
  border: none;
  background: none;
  cursor: pointer;
}
.header-buttons button i {
  font-size: 20px;
  color:white;
}


.profile-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.profile-card h2 {
  color: #333;
  font-size: 12px;
  margin-bottom: 10px;
}
.profile-page p {
  color: #555;
  font-size: 1.2em;
  margin-bottom: 20px;
}
.profile-page button {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.profile-page button:hover {
  background-color: #d32f2f;
}


.Realtitle {
  margin:5px;
  font-size: 1rem;
  border:none;
}
.MovieCards,
.bingeCards,
.nollyCards,
.cartoonsCards,
.seriesCards {
  display: flex;
  overflow-x: auto;
  padding: 15px 25px;
  scrollbar-width: none; 
    -ms-overflow-style: none;
}
#kolo{
  border:1px solid #9cabbe ;
  margin-top: 7px;
  flex-shrink: 0;
  width: 200px;
  margin-right: 20px;
  border-radius: 5px;
  transition: transform 0.3s;
  margin-bottom: 7px;
}
.card {
  margin-top: 5px;
  flex-shrink: 0;
  width: 150px;
  margin-right: 20px;
  border-radius: 5px;
  transition: transform 0.3s;
  margin-bottom: 4px;
}
.card img {
  pointer-events: none;
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  cursor: pointer;
}
.card:hover {
  transform: scale(1.1);
  border-radius: 6px;
}
.card h3 {
  font-size: 1.2rem;
  margin-top: 10px;
  text-align: center;
}
.rating {
  font-size: 1.2rem;
  text-align: center;
}
.trailer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}
.trailer-list iframe {
  flex: 1 1 300px;
  width: 100%;
  height: 200px;
}
footer {
  background-color: #1B1B25;
  padding: 20px;
  border-top:1px solid #9cabbe;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
  text-align: center;
  font-size: 0.8rem;
}
footer a {
  color: #fff;
}
footer i {
  margin-right: 5px;
}
#googlesh {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: #141414;
  padding: 0 20px;
}
#searchbar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
}
#searchbar input {
  appearance: none;
  outline: none;
  border: none;
  background-color: #333;
  color: #fff;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 5px 0 0 5px;
  width: 100%;
}
#searchbar button {
  appearance: none;
  outline: none;
  border: none;
  background-color: #A175FF;
  color: #fff;
  font-weight: bolder;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}
#searchbar button:hover {
  background-color: #4518a6;
}
.search-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.result-card {
  display: flex;
  flex:1 1 100px;
  flex-wrap: wrap ;
  align-items: center;
  cursor: pointer;
  width: 200px;
}
.result-card img {
  pointer-events: none;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
}
.result-card img:hover {
  transform: scale(1.1);
}
.result-card h3 {
  margin-top: 10px;
  text-align: center;
  font-size: 1.2rem;
}
.message {
  padding: 20px;
  text-align: center;
  font-size: 1.2rem;
}
.MovieCards::-webkit-scrollbar,
.bingeCards::-webkit-scrollbar,
.nollyCards::-webkit-scrollbar,
.cartoonsCards::-webkit-scrollbar,
.seriesCards::-webkit-scrollbar{
  display: none; 
} 

.backdrop {
  pointer-events: none;
    position: relative;
    width: 100vw;
    border-radius: 10px;
    height: auto; /* Adjust the height as needed */
    object-fit: cover;
    object-position: top;
}
.series-info,
.cardinfo{
  margin: 10px;
}
.card-details h2 {
    font-size: 1.5rem;
}
.card-details p {
    margin-top: 10px;
}
.card-details a {
    display: block;
    margin-top: 10px;
}
.card-details button {
    margin-top: 10px;
}
.coming-soon-section {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px;
}
.trailer-list {
    display: flex;
}
iframe {
  border: solid 1.5px #f5f5f574;
  border-radius: 5px;
  margin: 5px;
    flex: 0 0 auto;
    width: 200px; /* Adjust width as needed */
    height: 150px; /* Adjust height as needed */
    scroll-snap-align: start;
}
.card-details button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .card-details button:hover {
    opacity: 0.8;
  }
  /* Season Buttons */
  .card-details button[data-season] {
    background-color: #531B80; /* Green */
    color: white;
  }
  /* Episode Buttons */
  .card-details button[data-episode] {
    background-color: #FF61F6; /* Light yellow */
    color: #333;
  }
  
.dummy-button-container {
    display: flex;
    justify-content: space-around;
}
.dummy-button-container .button {
    background-color:transparent; /* Adjust for preferred background */
    
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
}
.dummy-button-container .button i {
    font-size: 15px;
}
.dummy-button-container .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.instruction p {
  margin: 0;
}
.instruction i {
  margin-right: 10px;
}

#playbtn{
 text-decoration-line: none;
  text-align: center;
  justify-content: center;
  padding: 10px;
  font-weight: bolder;
  width: 90%;
  margin:10px ;
  color:black;
  background: whitesmoke;
  border-radius: 10px;
}
.instruction{
  text-align: center;
  justify-content: center;
  width: 90%;
  font-size: 10px;
 background-color: #0d1117;
  border: 1px solid #30363d;
  border-radius: 10px;
  color:#c9d1d9;
  padding: 10px;
  margin:10px; 
}

#jiggy{
text-align: center;
  justify-content: center;
  padding: 10px;
  font-weight: bolder;
  width: 90%;
  margin:10px ;
  color:black;
  background: whitesmoke;
  border-radius: 10px;
  }
  
  /* Season Card */
.season-card {
  border:solid 1px #282834e7;
  align-items: center;
    border-radius: 5px;
    margin-bottom: 10px;
}
.overview{
  margin: 10px;
}
.season-card h3 {
    font-size: 1.2em;
    margin: 10px;
}
.season-poster {
    width: 200px;
    border-radius: 10px;
    margin:15px;
}
/* Episode Card */
.episode-card {
  background: #1b1b25c7;
  border:solid 1px #282834e7;
  list-style-type: none;
  justify-content: center;
  align-content: center;
  text-align: center;
    align-items: center;
    margin: 0px 15px 10px;
    left:10px;
}
.episode-poster {
    width: 100%;
    object-fit: cover;
    margin: 1px;
    height: auto;
    border-radius: 1px;
}
.episode-details p{
  text-align: left;
  margin-left: 5px;
  margin:5px;
}
.episode-details h4 {
  text-align: left;
  margin-left: 5px;
    font-size: 1.1em;
    margin-bottom: 3px;
}
/* Play Button */
.episode-details button {
  text-decoration-line: none;
  text-align: center;
  justify-content: center;
  padding: 12px;
  cursor: pointer;
  border:none;
  font-weight: bolder;
  width: 90%;
  margin:5px ;
  color:black;
  background: whitesmoke;
  border-radius: 10px;
}



      .home-container {
            text-align: center;
            color: #ffffff;
        }
     .home-container h1 {
            font-size: 24px;
            color: #ffffff;
            margin-bottom: 20px;
        }
    .home-container .userprofiles {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        .home-container .userprofile-card {
            background-color: none;
            border-radius: 8px;
            padding: 20px;
            width: 150px;
            color: #ffffff;
            border:none;
            text-align: center;
        }
       .home-container .userprofile-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 10px;
            pointer-events: none;
        }
       .home-container .userprofile-name {
            font-size: 14px;
            margin-bottom: 5px;
        }
      .add-profile {
pointer-events: none;
            font-size: 12px;
            color: #999;
            cursor: pointer;
        }
       .options {
         pointer-events: none;
            margin-top: 20px;
color: #ffffff;
        }
       .home-container .options a {
pointer-events: none;
            color: #999;
            text-decoration: none;
            margin-right: 10px;
        }
/* Small screens (up to 767px) */
@media (max-width: 767px) {
  .home-container .profiles {
        flex-wrap: wrap;
    }

 .home-container .profile-card {
        width: 120px;
        padding: 15px;
    }

  .home-container .profile-avatar {
        width: 60px;
        height: 60px;
    }

  .home-container .profile-name {
        font-size: 12px;
    }

   .home-container .options a {
        font-size: 12px;
    }
}
/* Medium screens (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
   .home-container .profile-card {
        width: 130px;
        padding: 18px;
    }

   .home-container .profile-avatar {
        width: 70px;
        height: 70px;
    }

   .home-container .profile-name {
        font-size: 13px;
    }

    .options a {
        font-size: 13px;
    }
}
/* Large screens (1024px and above) */
@media (min-width: 1024px) {
    h1 {
        font-size: 28px;
    }

  .home-container .profile-card {
        width: 160px;
        padding: 20px;
    }

 .home-container  .profile-avatar {
        width: 80px;
        height: 80px;
    }

   .home-container .profile-name {
        font-size: 14px;
    }
 .options a {
        font-size: 14px;
    }
}


/* General styles for the subscription page */
.subscription-page {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Message display styles */
.message-display .success-message {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.message-display .error-message {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Passkey input area styles */
.passkey-input {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.passkey-input h3 {
  color: #A175FF;
}

.passkey-input p {
  color: #666;
}

.passkey-input .passkeyspot {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.passkey-input input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.passkey-input button {
  padding: 10px 20px;
  background-color: #A175FF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.passkey-input button:hover {
  background-color: #6021e6;
}

/* Payment information styles */
.payment-info {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.payment-info ul {
  list-style-type: none;
  padding: 0;
}

.payment-info li {
  user-select: auto;
  margin-bottom: 10px;
}

.payment-info li i {
  margin-right: 5px;
}

/* WhatsApp button styles */
.whatsapp-button a {
  display: inline-block;
  background-color: #25D366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp-button a:hover {
  background-color: #1da851;
}

/* Logout button styles */
.logout-button button {
  padding: 10px 20px;
  background-color: #d9534f;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
}

.logout-button button:hover {
  background-color: #c9302c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .passkey-input .passkeyspot {
    flex-direction: column;
  }
}



.disabled-download {
  pointer-events: none;
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f5f5f5;
  text-align: center;
}
.error-page img {
  width: 300px;
  margin-bottom: 30px;
}
.error-page h1 {
  font-size: 20px;
  color: #333;
}
.error-page p {
  margin: 10px;
  font-size: 14px;
  color: #666;
}

.profile-card {
  background: whitesmoke;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px 60px 30px;
  padding: 30px;
  border: solid 1px #9cabbe;
  max-width: 400px;
  margin: 50px auto;
  text-align: center;
}

.profile-card h2 {
  margin-bottom: 20px;
  color: #111;
}

.profile-card p {
  margin-bottom: 10px;
  color: #111;
}

.profile-card button {
  background-color: #A175FF;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.profile-card button:hover {
  background-color: #2b0c6d;
}

.profile-card p3 {
  margin-top: 30px;
  font-size: 14px;
  color: #999;
}
  .home-container {
    text-decoration-line:none;
            text-align: center;
            color: #ffffff;
        }
     .home-container h1 {
            font-size: 24px;
            color: #ffffff;
            margin-bottom: 20px;
        }
    .home-container .userprofiles {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        .home-container .userprofile-card {
            background-color: none;
            border-radius: 8px;
            padding: 20px;
            width: 150px;
            color: #ffffff;
            border:none;
            text-align: center;
        }
       .home-container .userprofile-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 10px;
            pointer-events: none;
        }
       .home-container .userprofile-name {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 5px;
        }
      .add-profile {
pointer-events: none;
            font-size: 12px;
            color: #999;
            cursor: pointer;
        }
       .options {
         pointer-events: none;
            margin-top: 20px;
color: #ffffff;
        }
       .home-container .options a {
pointer-events: none;
            color: #999;
            text-decoration: none;
            margin-right: 10px;
        }
/* Small screens (up to 767px) */
@media (max-width: 767px) {
  .home-container .profiles {
        flex-wrap: wrap;
    }

 .home-container .profile-card {
        width: 120px;
        padding: 15px;
    }

  .home-container .profile-avatar {
        width: 60px;
        height: 60px;
    }

  .home-container .profile-name {
        font-size: 12px;
    }

   .home-container .options a {
        font-size: 12px;
    }
}
/* Medium screens (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
   .home-container .profile-card {
        width: 130px;
        padding: 18px;
    }

   .home-container .profile-avatar {
        width: 70px;
        height: 70px;
    }

   .home-container .profile-name {
        font-size: 13px;
    }

    .options a {
        font-size: 13px;
    }
}
/* Large screens (1024px and above) */
@media (min-width: 1024px) {
    h1 {
        font-size: 28px;
    }

  .home-container .profile-card {
        width: 160px;
        padding: 20px;
    }

 .home-container  .profile-avatar {
        width: 80px;
        height: 80px;
    }

   .home-container .profile-name {
        font-size: 14px;
    }
 .options a {
        font-size: 14px;
    }
}



