@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}


body {
  font-family: 'Poppins', sans-serif;
}

/* ===== Infobar ===== */
.infobar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #E9A5F1;
  font-size: small;
}

.infobar .logo {
  margin-left: 10px;
  max-width: 30%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #eeeeff;
}

.info-links {
  list-style: none;
  display: flex;
  justify-content: right;
  padding: 3px 20px;
}

.info-links li a {
  color: #ffffff;
  margin-left: 20px;
  padding-right: 20px;
  font-size: small;
  text-decoration: none;
  display: block;
  border-right: 1px solid #0d0f13;
}

.info-links li:last-child a {
  border-right: none;
}

.info-links a:hover {
  color: #d7ddec;
}



/* ===== Navbar ===== */
.navbar {
  width: 100%;
  z-index: 100;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(30deg,#8F87F1, #C68EFD);
  position: relative;
  border-bottom: 0.5px solid #545050;
  box-sizing: border-box;

}

.navbar .logo {
  width: 20%;
}

.navbar .logo img {
  height: 80px;
  width: 170px;
  margin-left: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex: 1;
  width: 40%;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #eeeeff;
  text-decoration: none;
  margin-right: 10px;
  padding: 0 2px 6px;
  display: block;
}

.nav-links a:hover {
  border-bottom: 2px solid #eeeeff;
  padding-bottom: 4px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle i {
  color: #ffffff;
}

.menu-toggle:hover i {
  color: #5c5b5b;
}

/* ===== Icons and Search ===== */
.navbar .icons {
  width: 30%;
  display: flex;
  gap: 1rem;
  justify-content: right;
}

.icon {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  padding: 7px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon i {
  color: #ffffff;
}

.icon:hover {
  background-color: #ffffff;
}

.icon:hover i {
  color: #2e2e2e;
}

.search_box {
  background-color: white;
  max-width: 150px;
  padding: 5px;
  border-radius: 25px;
  margin-top: 3px;
}

.search_box:hover,
.search_box:hover .row {
  background-color: #f1eaea;
}

.row {
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-color: white;
}

.bsearch {
  background-color: white;
  border: none;
  border-radius: 50%;
  padding: 6px;
  margin: 0;
  cursor: pointer;
}

.bsearch:hover {
  background-color: #6188f5;
}

.bsearch:hover i {
  color: #ffffff;
}

.search {
  background-color: transparent;
  border: none;
  outline: 0;
  max-width: 100px;
  margin-left: 3px;
}

/* ===== Ticket Button ===== */
.ticket_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  padding: 3px;
  border: none;
  border-radius: 5px;
  background-color: #ec2525;
  color: #eeeeff;
  cursor: pointer;
}

.ticket_icon:hover {
  background-color: #c70039;
}


.ticket_icon:active {
  transform: translateY(1px);
}

.ticket_icon2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  padding: 3px;
  border: none;
  border-radius: 5px;
  background-color: #ec2525;
  color: #eeeeff;
  cursor: pointer;
}

.ticket_icon2:hover {
  background-color: #c70039;
}

/* ===== Footer ===== */
.footerbody {
  width: 100%;
  background: linear-gradient(168deg,#C68EFD, #E9A5F1);
  padding: 50px 100px;
  position: relative;
}

.cineplanet_footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  align-items: start;
}

.container {
  list-style: none;
}

.container h2 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.container li {
  margin-bottom: 10px;
}

.container a {
  text-decoration: none;
  color: #f1f1f1;
  transition: color 0.3s ease;
}

.container a:hover {
  color: #ffd700;
}

.container nav a {
  margin-right: 15px;
  font-size: 20px;
  color: #f1f1f1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.container nav a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.logo_footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo_footer img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.footer_description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 600px;
  margin-bottom: 20px;
}

.footer_description h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer_description p {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
}

.authenticity_footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  color: #f1f1f1;
}

.copy_right p {
  font-size: 13px;
  color: #eeeeff;
}

/* ===== Social Icons ===== */
.social_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* ===== Accordion (Mobile) ===== */
.accordion-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
}

.toggle-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  display: none;
}

.accordion-content {
  list-style: none;
  padding: 0;
  display: none;
}

.accordion-content.show {
  display: block;
}

.accordion-content li {
  margin-bottom: 10px;
}

.close_nav-bar{
  all: unset; /* Removes all styles */
  display: none;
  top: 20px;
  right: 30px;
  width: 30px;
  position: absolute;
    background: none; /* Ensures no background */
    border: none; /* Removes borders */
    padding: 10px; /* Removes padding */
    color: inherit; /* Inherits text color from parent */
    cursor: pointer; /* Makes sure the cursor is pointer on hover */
}

.close_nav-bar.active{
  display: flex;
  justify-content: center;
}

.close_nav-bar i{
  color: white;
}

.getTicket_li{
  display: none;
  justify-content: center;
}

/* ===== Responsive Styles ===== */
@media (max-width: 960px) {
  .nav-links {
    padding-top: 60px;
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    background-color: #C68EFD;
    display: flex;
    flex-direction: column;
    text-align: center;
    z-index: 2;
    transition: top 0.5s ease-in-out;
  }
  .ticket_icon{
    display: none;
  }

  .nav-links.active {
    top: 0;
  }
  .getTicket_li{
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
    padding: 10px;
    justify-content: center;
  }

  .nav-links li:hover {
    background-color: #9872bd;
  }

  .nav-links a:hover {
    border: none;
    padding-bottom: 6px;
  }

  .navbar {
    justify-content: flex-start;
  }

  .navbar .icons {
    right: 60px;
    position: absolute;
  }

  .navbar .logo{
    margin-left: 50px;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    left: 15px;
  }

  .search_box {
    display: none;
  }

  .infobar{
    display: none;
  }

  .toggle-icon {
    display: block;
  }

  .accordion-toggle.open .toggle-icon {
    transform: rotate(45deg);
  }

  .logo_footer {
    text-align: center;
  }

  .login_message_container{
    display: none;
  }

  .thumbnail{
    justify-content: start !important;
  }

  .upcoming_slide_container{
    justify-content: start !important;
  }

  .arrows_left, .arrows_right{
    top: 47% !important;
  }

  .movie .content h1{
    font-size: 35px !important;
    letter-spacing: 2px !important;
  
  }
  .movie .content h3{
    font-size: 20px !important;
  }
  
}



@media (min-width: 769px) {
  .accordion-content {
    display: block !important;
  }

  .accordion-toggle {
    pointer-events: none;
  }

  .toggle-icon {
    display: none;
  }
  .close_nav-bar{
    display: none;
  }
}

/* Login page css  */

.login_container{
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: 10%;
  padding: 30px;
  background-color: rgba(179, 170, 170, 0.1); /* Semi-transparent background for the blur effect */
  backdrop-filter: blur(4px);  /* Applies the blur effect */
  display: block;
  max-width: 380px;
  border-radius: 20px;
  height: fit-content;
}





.register_form{
  display: none;
  background-color: transparent;
}
.register_form.active{
  display: block;
  background-color: transparent;
}

.login_form{
  display: block;
}
.login_form.active{
  display: none;
}
.login_input {
  width: 280px;
  height: 45px;
  border-radius: 10px;
  border: none;
  padding: 0px 10px;
  margin: 20px;
  color: black;
  font-size: 16px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.login_input_pwd {
  width: 240px;
  height: 45px;
  border-radius: 10px;
  border: none;
  padding: 0px 10px;
  margin: 20px;
  color: black;
  font-size: 16px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.login_input_pwd::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.login_input_pwd:focus{
    outline: none;
    box-shadow: none;
    animation: neonPulse 1.5s ease-in-out infinite;
}

.login_input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.login_input:focus{
    outline: none;
    box-shadow: none;
    animation: neonPulse 1.5s ease-in-out infinite;
}
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 5px #E9A5F1,
      0 0 10px #E9A5F1,
      0 0 20px #E9A5F1,
      0 0 40px #E9A5F1;
  }
  50% {
    box-shadow:
      0 0 2px #E9A5F1,
      0 0 4px #E9A5F1,
      0 0 8px #E9A5F1,
      0 0 16px #E9A5F1;
  }
}


.action_center .login_input{
  width: 280px;
  height: 45px;
  border-radius: 10px;
  border: none;
  margin: 20px;
  background-color: #C68EFD;
  color: white;
}

.action_center .login_input:hover{
  background-color: #a263e0;
  color: white;
}

.action_center .login_input:focus{
  transform: translateY(0.5px);
  background-color: #a263e0;
  color: white;
}

.forgot_pwd_link{
  text-align: right;
  margin-right:  20px;
  margin-bottom: 20px;
}

.forgot_pwd_link a{
  color: white;
  text-decoration: none;
}

.forgot_pwd_link a:hover{
  color: rgb(176, 223, 240);
  text-decoration: none;
}

.login_logo{
  width: 150px;
  height: 90px;
}
.signup_link{
  color: white;
}
.signup_link a{
  color: white;
}
.signup_link a:hover{
  color: rgb(176, 223, 240);
  text-decoration: none;
}

.main{
  display: flex;
}

.login_message_container{
  text-align: center;
  justify-content: center;
  padding: 50px;
}
.login_message_container h1, h2{
  backdrop-filter: blur(4px);  /* Applies the blur effect */
} 

#policy_check {
  margin-right: 3px;  /* Adds space between the checkbox and the label */
  accent-color:  #900c3f ; /* Tomato red accent color for the checkbox */
  transform: scale(1.5);  /* Slightly enlarges the checkbox */
}

.carousel{
  height: 100vh;
  width: 100%;
  position: relative;
  margin-top: -20px;
}

.movie{
  position: absolute;
  inset: 0 0 0 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
}
.movie.active{
  opacity: 1;
  z-index: 10;
}

.img-poster{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to top, black 10%, transparent);
}

.content{
  position: absolute;
  text-align: left;
  left: 10%;
  top: 10%;
  width: 500px;
  max-width: 80%;
  z-index: 1;
}

.content h1{
  font-size: 35px;
  text-transform: capitalize;
  letter-spacing: 10px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); /* Safari support */
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.content h3{
  font-size: 20px;
  color: white;
}

.buttons button{
  all: unset;
  background-color: transparent;
  cursor: pointer;
  margin-top: 30px;
  padding-right: 10px;
  padding-left: 10px;
}

.buttons label{
  margin-left: 0;
  margin-top: 30px;
}

.buttons{
  display: flex;
  align-items: center;
}

@keyframes showContent {
  to{
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.movie.active .content,
.movie.active .content h1,
.movie.active .content .buttons,
.movie.active .content h3{
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 0.7s ease-in-out 1 forwards;
}

.movie.active .content h1{
  animation-delay: 1s;
}
.movie.active .content h3{
  animation-delay: 1.3s;
}

.movie.active .content .buttons{
  animation-delay: 1.5s;
}

.arrows_left{
  position: absolute;
  top: 30%;
  right: 40px;
  z-index: 10;
}

.arrows_right{
  position: absolute;
  top: 30%;
  left: 40px;
  z-index: 10;
}

.arrows_button{
  background-color: #eee5;
  border: none;
  font-family: monospace;
  width: 40px;
  border-radius: 5px;
  font-size: x-large;
  color: white;
  transition: .5s;
  padding: 10px;
}

.arrows_button:hover{
  background-color: white;
  color: black;
}

.thumbnail{
  position: absolute;
  bottom: 50px;
  z-index: 11;
  display: flex;
  gap: 10px;
  width: 100%;
  height: 250px;
  padding: 0 50px;
  box-sizing: border-box;
  overflow: auto;
  cursor: pointer;
  justify-content: center;
  
}
.thumbnail::-webkit-scrollbar{
  width: 0;
}

.thumbnail .item{
  width: 150px;
  height: 220px;
  filter: brightness(.5);
  transition: .5s;
  flex-shrink: 0;
  border-radius: 10px;
}

.thumbnail .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: relative;
}

.thumbnail .item.active{
  filter:  brightness(1.5);
  
}


.g-recaptcha{
  margin-left: 12px;
  width: 280px;
  margin-bottom: 5px;
}

.upcoming{
  
    height: 100vh;
    width: 100%;
    position: relative;
}

/* pop up trailer */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  width: 90vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  max-width: 100%;
  max-height: 80vh;
}

.popup-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 600px) {
  .popup-content {
    width: 100vw;
    height: 56.25vw;
  }

  .close-btn {
    top: -10px;
    right: 10px;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.upcomingMovie{
    display: block;
    justify-content: center;
    min-height: 100vh;
    align-content: center;
    background-color: black;
}

.Coming_soon_font{
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
}

.Coming_soon_container{
  display: flex;
  gap: 4px;
  min-height: 400px;
}

.ComingSoon_card{
  position: relative;
  left: 0;
  width: 80px;
  border-radius: 4px;
  padding: 8px;
  height: 300px;
  transition: 0.4s ease-in-out;
  flex: 1;
}

.ComingSoon_card:hover{
  flex: 3;
  cursor: pointer;
}

.ComingSoon_card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ComingSoon_card a{
  color: #eeeeff;
  font-family: 'Poppins', sans-serif;
}

.ComingSoon_card button {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  background-color: transparent;
  width: 80px;         /* Equal width */
  height: 80px;        /* Equal height */
  padding: 0;          /* Remove padding */
  border-radius: 50%;  /* Make it circular */
  border: 2px solid white; /* Optional: visible boundary */
  cursor: pointer;
}

.ComingSoon_card button:active{
  color: #d4d4d4;
}


.ComingSoon_card:hover button{
  display: block;
}

@media (max-width: 600px) {
  .Coming_soon_container{
    display: block;
    width: 100%;
    justify-content: center;
  }

  .ComingSoon_card{
    width: 90%;
    margin: auto;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 350px;
  }

  .ComingSoon_card img{
    border-radius: 10px;
    height: 300px;
  }

  .ComingSoon_card button{
    display: block;
  }

  
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  overflow: hidden; /* prevent image overflow */
}

.slideshow-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mySlides {
  display: none;
  height: 500px;
}

.slideshow-container a {
  color: #C68EFD;
  text-decoration: none;
}

/* Next & previous buttons */
.Newsprev, .Newsnext {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  user-select: none;
  z-index: 10;
  background-color: rgba(0,0,0,0.3);
}

.Newsprev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.Newsnext {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.Newsprev:hover, .Newsnext:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 35px;
  width: 100%;
  text-align: center;
}

/* Number text (1 / 3 etc.) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Dots/Indicators */
.dotsNews {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 9;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #C68EFD;
}

/* Fade animation */
.fade {
  animation: fade 1.5s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.4; }
  to   { opacity: 1; }
}

/* Responsive design */
@media (max-width: 600px) {
  .Newsprev, .Newsnext, .text {
    font-size: 11px;
    padding: 10px;
  }

  .dotsNews {
    top: 70%;
  }

  .slideshow-container img{
    object-fit: contain;
  }
}

/* Ensure full-height section for news */
.News {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
}
.profile-initial {
  background-color: #8f8a8a;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  border: 2px white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

.profile-initial:hover{
  background-color: grey;
}


/* Search bar container */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto 30px auto;
  background-color: white;
  border: 2px solid #8F87F1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(143, 135, 241, 0.2);
}

.search-container input {
  border: none;
  outline: none;
  padding: 12px 16px;
  flex: 1;
  font-size: 16px;
  color: #8F87F1;
  background-color: transparent;
}

.search-container input::placeholder {
  color: #aaa;
}

.search-btn {
  background-color: transparent;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  color: #8F87F1;
  font-size: 18px;
}

.cinema-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  color: #8F87F1;
  padding: 0 20px;
  justify-content: center; 
  margin-bottom: 30px;
}

.cinema-card {
  background-color: #cdbcdf; /* Soft lavender/purple tint */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(140, 84, 255, 0.15); /* Purple-toned shadow */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 400px;
  text-align: center;
  max-width: 500px;
  margin: 30px auto;
  border: 1px solid #ddd;
}

/* Optional hover effect */
.cinema-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}


.cinema-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.cinema-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
  text-align: center;
}

.cinema-card p {
  color: #8F87F1;
  margin: 4px 0;
  text-align: center;
}

.no-results {
  text-align: center;
  color: #aaa;
}

.profile-container {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 10px auto 30px auto;
  background-color: white;
  border-radius: 30px;
  overflow: hidden;
  height: fit-content;
  box-shadow: 0 0 12px rgba(21, 20, 33, 0.2);
}

.profile-icon{
  background-color: #8f8a8a;
  color: white;
  font-size: 4em;
  font-weight: bold;
  border: 2px white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 30px;
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 20px;
}

.profile-info h1,h3{
  color: #8F87F1;
}

.profile-info button{
  width: 80px;
  height: 30px;
  border-radius: 6px;
  background-color: #6188f5;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}

.profile-info button:hover{
  background-color: #4c71df;
}

.profile-info button:active{
  transform: translateY(1px);
}

.profile-info .topUP{
  background-color: #d583df;
}

.profile-info .topUP:hover{
  background-color: #dc6fe8;
}

.profile-detail table{
  width: 90%;
  margin-top: 20px;
  color: #8F87F1;
}

.profile-detail table td{
  width: 50px;
  padding-bottom: 20px;
  text-align: center;
  font-size: large;
  padding: 10px;
}

.profile-detail table td:nth-child(2){
  width: 150px;
  padding: 10px;
  margin-right: 5px;
  text-align: left;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0dddd;
}

.profile-detail p{
  padding-top: 3px;
  font-size: small;
}

.profile-container a{
  color: #8F87F1;
}


.profile-footer img{
  width: 200px;
}

.profile-footer{
  margin-top: 50px;
  justify-content: center;
  display: flex;
  background: linear-gradient(168deg,#C68EFD, #E9A5F1);
}

.theater-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
  padding: 10px;
}
.theater-container a{
  text-decoration: none;
}
.theater-card {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  height: 500px;
  color: #8f3be2;
}
.theater-card img{
  width: 100%;
  border-radius:  10px;
  margin-bottom:  15px;
  height: 280px;
}
.theater-card h2 {
  margin-top: 0;
}
.theater-card ul {
  padding-left: 20px;
}
.cinema-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
}