@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --color-primary: #F84565;
  --color-primary-dull: #D63854;
  --color-background: #060010;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #060010;
  color: white;
  min-height: 100vh;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Custom scrollbar */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(30, 144, 255, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(30, 144, 255, 0.7);
}

#root {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.no-scrollbar{
  scrollbar-width: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}.city-selector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.city-selector-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
}

.city-selector-container:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.city-selector-icon {
    width: 16px;
    height: 16px;
    color: #a365ff;
}

.city-selector-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
}

.city-selector-chevron {
    width: 12px;
    height: 12px;
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.city-selector-chevron.rotated {
    transform: rotate(180deg);
}

.city-selector-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
    z-index: 1000;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.city-selector-section {
    margin-bottom: 12px;
}

.city-selector-section:last-child {
    margin-bottom: 0;
}

.city-selector-label {
    display: block;
    color: #d1d5db;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.city-selector-state-dropdown,
.city-selector-city-dropdown {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-selector-state-dropdown:focus,
.city-selector-city-dropdown:focus {
    outline: none;
    border-color: #a365ff;
    box-shadow: 0 0 0 2px rgba(163, 101, 255, 0.2);
}

.city-selector-state-dropdown:disabled,
.city-selector-city-dropdown:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.city-selector-state-dropdown option,
.city-selector-city-dropdown option {
    background: #1a1a1a;
    color: white;
    padding: 8px;
}

.city-selector-loading {
    color: #a365ff;
    font-size: 0.8rem;
    margin-top: 4px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .city-selector-container {
        padding: 6px 10px;
        min-width: 120px;
    }
    
    .city-selector-text {
        font-size: 0.8rem;
    }
    
    .city-selector-dropdown {
        min-width: 180px;
        padding: 12px;
    }
} .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  padding: 0.4rem 1.5rem !important;
}

@media (min-width: 768px) {
  .navbar {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.scrolled {
  transform: translateY(0);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  gap: 20rem;
}



/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}

.navbar-logo:hover {
  opacity: 0.8;
}

.navbar-logo img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

@media (min-width: 768px) {
  .navbar-logo img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.navbar-logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .navbar-logo-text {
    font-size: 1rem;
  }
}

/* Navigation */
.navbar-nav {
  display: none;
  align-items: center;
  gap: 0;
}

@media (min-width: 768px) {
  .navbar-nav {
    display: flex;
  }
}

.navbar-nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem !important;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.navbar-nav-link:hover {
  color: white;
}

.navbar-nav-link.active {
  color: white;
}

@keyframes slideIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* User Menu */
.navbar-profile {
  display: flex;
  align-items: center;
}

.navbar-profile-container {
  position: relative;
}

.navbar-profile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white;
  border-radius: 0.5rem;
}

.navbar-profile-btn:hover {
  background: none;
}

.navbar-profile-avatar {
  width: 1.25rem;
  height: 1.25rem;
  background: #a365ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 0.6rem;
}



.navbar-dropdown-icon {
  color: #9ca3af;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-profile-container:hover .navbar-dropdown-icon {
  transform: rotate(180deg);
  color: white;
}

.navbar-profile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  width: 12rem;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
  z-index: 1000;
  overflow: hidden;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  transform-origin: top right;
}

.navbar-profile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.navbar-profile-menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #a365ff;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.navbar-profile-menu-item:hover::before {
  transform: scaleY(1);
}

.navbar-profile-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.navbar-profile-greeting {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
  padding: 0.75rem 1rem 0.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.25rem;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Login Button */
.navbar-login-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  background-color: #9333ea;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.navbar-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
  background-color: #7c3aed;
}

/* Mobile menu */
.navbar-mobile-menu {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-mobile-menu:hover {
  transform: scale(1.1) rotate(90deg);
}

@media (min-width: 768px) {
  .navbar-mobile-menu {
    display: none;
  }
}

.navbar-mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
}

.navbar-mobile-menu-container.open {
  opacity: 1;
  visibility: visible;
  animation: slideInFromTop 0.3s ease-out;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.navbar-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.navbar-mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.navbar-mobile-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3b82f6;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.navbar-mobile-nav a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-mobile-nav a:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  transform: scale(1.05) translateY(-2px);
}.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  overflow: hidden;
}

/* Aurora canvas container */
.hero-background .aurora-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}



@keyframes aurora-spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(90deg) scale(1.1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  75% {
    transform: rotate(270deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes aurora-drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translate(-30px, -20px) rotate(5deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(20px, -40px) rotate(-3deg);
    opacity: 0.4;
  }
  75% {
    transform: translate(-10px, 30px) rotate(7deg);
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  margin-top: -18rem;
}

.hero-text {
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-family: Manrope, sans-serif;
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
}

.hero-title-highlight {
  color: #9333ea;
  position: relative;
}

.hero-title-underline {
  position: relative;
  color: white;
}

.hero-title-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #e1bbfb 0%, #d4a5f9 50%, #e1bbfb 100%);
  border-radius: 4px;
  transform: scaleX(1.1);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #9333ea;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
  background: #7c3aed;
}

.hero-button-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.hero-cta-button:hover .hero-button-icon {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    padding: 0 1.5rem;
    margin-top: -15rem;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    padding: 0 1.5rem;
    margin-top: -12rem;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 90vh;
  }
  
  .hero-content {
    padding: 0 1rem;
    margin-top: -8rem;
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  .hero-cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 85vh;
  }
  
  .hero-content {
    padding: 0 0.75rem;
    margin-top: -6rem;
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
  }
  
  .hero-cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-button-icon {
    width: 1rem;
    height: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-section {
    height: 80vh;
  }
  
  .hero-content {
    margin-top: -4rem;
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 10vw, 2rem);
  }
  
  .hero-description {
    font-size: 0.85rem;
  }
  
  .hero-cta-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Movie Carousel Section */
.movie-carousel-section {
  background: transparent;
  padding: 0;
  margin: 0;
  margin-top: -20rem;
  overflow: hidden;
  position: relative;
}

.movie-carousel-container {
  width: 100%;
  overflow: hidden;
}

.movie-carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-left 60s linear infinite;
  width: calc(200px * 32 + 1.5rem * 31); /* 32 cards (16 x 2) + gaps */
}

.movie-card {
  flex-shrink: 0;
  width: 200px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.movie-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.movie-card:hover img {
  transform: scale(1.1);
}

/* Scroll Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 16 - 1.5rem * 16));
  }
}

/* Pause animation on hover */
.movie-carousel-section:hover .movie-carousel-track {
  animation-play-state: paused;
}

/* Responsive Design for Movie Carousel */
@media (max-width: 1024px) {
  .movie-card {
    width: 150px;
    height: 225px;
  }
  
  .movie-carousel-track {
    gap: 1rem;
    width: calc(150px * 32 + 1rem * 31);
    animation: scroll-left-tablet 45s linear infinite;
  }
  
  @keyframes scroll-left-tablet {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 16 - 1rem * 16));
    }
  }
}

@media (max-width: 768px) {
  .movie-carousel-section {
    padding: 2rem 0;
  }
  
  .movie-card {
    width: 120px;
    height: 180px;
  }
  
  .movie-carousel-track {
    gap: 0.75rem;
    width: calc(120px * 32 + 0.75rem * 31);
    animation: scroll-left-mobile 35s linear infinite;
  }
  
  @keyframes scroll-left-mobile {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 16 - 0.75rem * 16));
    }
  }
}

@media (max-width: 480px) {
  .movie-card {
    width: 100px;
    height: 150px;
  }
  
  .movie-carousel-track {
    gap: 0.5rem;
    width: calc(100px * 32 + 0.5rem * 31);
    animation: scroll-left-small 30s linear infinite;
  }
  
  @keyframes scroll-left-small {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100px * 16 - 0.5rem * 16));
    }
  }
}.chroma-movie-card-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.chroma-movie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 15rem;
  height: auto;
  min-height: 26rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
  background-color: #010915 !important;
  cursor: pointer;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transform-style: preserve-3d;

  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-color: rgba(255, 255, 255, 0.15);
  --glow-color: rgba(163, 101, 255, 0.3);
}

.chroma-movie-card:hover {
  border-color: transparent;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px) scale(1);
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.2),
    0 0 10px var(--glow-color);
  position: relative;
  z-index: 5;
}

/* Spotlight effect using CSS */
.chroma-movie-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x) var(--mouse-y),
    var(--spotlight-color) 0%,
    transparent 50%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border-radius: 0.75rem;
}

.chroma-movie-card:hover .chroma-movie-spotlight {
  opacity: 1;
}

/* Glow effect */
.chroma-movie-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    var(--glow-color) 50%,
    transparent 70%
  );
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.chroma-movie-card:hover .chroma-movie-glow {
  opacity: 0.4;
}

.chroma-movie-img-wrapper {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0.5rem 0.5rem 0 0.5rem;
  box-sizing: border-box;
  background: transparent;
  transition: all 0.3s ease;
  height: 18rem;
  overflow: hidden;
}

.chroma-movie-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
  transition: transform 0.3s ease;
}

.chroma-movie-card:hover .chroma-movie-img-wrapper img {
  transform: scale(1.1);
}

.chroma-movie-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
  padding: 0.75rem;
}

.chroma-movie-rating-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0.5rem 0 0 0.5rem;
}

.chroma-movie-language-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0 0.3rem 0.05rem 0;
}

.chroma-movie-rating-block {
  display: flex;
  align-items: center;
  background: rgba(14, 20, 47, 0.95);
  border-radius: 0.75rem;
  padding: 0.4rem 0.7rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 0.3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  transition: all 0.3s ease;
}

.chroma-movie-card:hover .chroma-movie-rating-block {
  transform: translateY(0px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chroma-movie-rating-icon {
  width: 1rem;
  height: 1rem;
  color: #FFD700;
  fill: #FFD700;
  transition: transform 0.3s ease;
}

.chroma-movie-card:hover .chroma-movie-rating-icon {
  transform: scale(1) rotate(0deg);
}

.chroma-movie-rating-value {
  font-weight: 700;
  color: #fff;
  font-size: 0.95em;
}

.chroma-movie-language-badge {
  background: rgba(14, 20, 47, 0.95);
  color: #d1d5db;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.35rem 0.8rem;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.chroma-movie-card:hover .chroma-movie-language-badge {
  transform: translateY(0px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chroma-movie-info {
  position: relative;
  z-index: 1;
  padding: 0.6rem 0.5rem 0.8rem 0.5rem;
  color: #fff;
  font-family: system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: all 0.3s ease;
}

@media (min-width: 480px) {
  .chroma-movie-info {
    padding: 0.7rem 0.625rem 0.9rem 0.625rem;
  }
}

@media (min-width: 640px) {
  .chroma-movie-info {
    padding: 0.8rem 0.75rem 1rem 0.75rem;
  }
}

@media (min-width: 768px) {
  .chroma-movie-info {
    padding: 0.9rem 0.875rem 1.1rem 0.875rem;
  }
}

@media (min-width: 1024px) {
  .chroma-movie-info {
    padding: 1rem 1rem 1.25rem 1rem;
  }
}

@media (min-width: 1280px) {
  .chroma-movie-info {
    padding: 1.1rem 1.125rem 1.4rem 1.125rem;
  }
}

.chroma-movie-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  transition: color 0.3s ease;
}

@media (min-width: 480px) {
  .chroma-movie-title {
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .chroma-movie-title {
    font-size: 1.05rem;
  }
}

@media (min-width: 768px) {
  .chroma-movie-title {
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  .chroma-movie-title {
    font-size: 1.15rem;
  }
}

@media (min-width: 1280px) {
  .chroma-movie-title {
    font-size: 1.2rem;
  }
}

.chroma-movie-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #bbb;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.chroma-movie-card:hover .chroma-movie-meta {
  color: #d1d5db;
}

.chroma-movie-dot {
  font-size: 1.2em;
  color: var(--card-border);
  margin: 0 0.2rem;
  transition: color 0.3s ease;
}

.chroma-movie-card:hover .chroma-movie-dot {
  color: #a365ff;
}

.chroma-movie-year, 
.chroma-movie-duration {
  color: #bbb;
  transition: color 0.3s ease;
}

.chroma-movie-card:hover .chroma-movie-year,
.chroma-movie-card:hover .chroma-movie-duration {
  color: #d1d5db;
}

/* Force gradient background on all movie cards */
.chroma-movie-card-container .chroma-movie-card,
.featured-chroma-grid .chroma-movie-card,
article.chroma-movie-card {
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
  background-color: #010915 !important;
}

/* Enhanced 3D tilt effect on mouse move */
.chroma-movie-card {
  transform-style: preserve-3d;
}

/* Responsive Design */
@media (min-width: 480px) {
  .chroma-movie-card {
    width: 16rem;
    min-height: 27rem;
  }
  .chroma-movie-img-wrapper {
    padding: 0.625rem 0.625rem 0 0.625rem;
    height: 19rem;
  }
}

@media (min-width: 640px) {
  .chroma-movie-card {
    width: 17rem;
    min-height: 29rem;
  }
  .chroma-movie-img-wrapper {
    padding: 0.75rem 0.75rem 0 0.75rem;
    height: 21rem;
  }
}

@media (min-width: 768px) {
  .chroma-movie-card {
    width: 18rem;
    min-height: 30rem;
  }
  .chroma-movie-img-wrapper {
    padding: 0.875rem 0.875rem 0 0.875rem;
    height: 22rem;
  }
}

@media (min-width: 1024px) {
  .chroma-movie-card {
    width: 19rem;
    min-height: 31rem;
  }
  .chroma-movie-img-wrapper {
    padding: 1rem 1rem 0 1rem;
    height: 23rem;
  }
}

@media (min-width: 1280px) {
  .chroma-movie-card {
    width: 20rem;
    min-height: 32rem;
  }
  .chroma-movie-img-wrapper {
    padding: 1.125rem 1.125rem 0 1.125rem;
    height: 24rem;
  }
}

@media (max-width: 480px) {
  .chroma-movie-card {
    width: 15rem;
    min-height: 26rem;
  }
  
  .chroma-movie-img-wrapper {
    height: 18rem;
    padding: 0.5rem 0.5rem 0 0.5rem;
  }
  
  .chroma-movie-info {
    padding: 0.6rem 0.5rem 0.8rem 0.5rem;
  }
  
  .chroma-movie-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .chroma-movie-card {
    width: 13rem;
    min-height: 24rem;
  }
  
  .chroma-movie-img-wrapper {
    height: 16rem;
  }
}

/* Smooth animations for all interactive elements */
.chroma-movie-card * {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.chroma-movie-card:focus {
  outline: 2px solid #a365ff;
  outline-offset: 2px;
}

.chroma-movie-card:focus:not(:focus-visible) {
  outline: none;
}

.chroma-movie-card:hover .chroma-movie-info {
  transform: translateY(0px);
}

.chroma-movie-card:hover .chroma-movie-title {
  color: #a365ff;
}
.chroma-movie-grid-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 0.5rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .chroma-movie-grid-container {
    padding: 1.5rem 1rem;
  }
}

@media (min-width: 768px) {
  .chroma-movie-grid-container {
    padding: 2rem 1rem;
  }
}

.chroma-movie-grid-layout {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns, 1), 1fr);
  gap: var(--grid-gap, 1rem);
  justify-items: center;
  align-items: start;
}

@media (min-width: 480px) {
  .chroma-movie-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 640px) {
  .chroma-movie-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .chroma-movie-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .chroma-movie-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
}

@media (min-width: 1280px) {
  .chroma-movie-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.25rem;
  }
}

.no-movies-message {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin: 2rem 0;
  grid-column: 1 / -1;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .no-movies-message {
    font-size: 1.1rem;
    margin: 3rem 0;
  }
}

/* Responsive Grid */
@media (max-width: 1200px) {
  .chroma-movie-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .chroma-movie-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .chroma-movie-grid-container {
    padding: 1.5rem 0.75rem;
  }
  
  .chroma-movie-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .chroma-movie-grid-container {
    padding: 1rem 0.5rem;
  }
  
  .chroma-movie-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.875rem;
  }
}

@media (max-width: 480px) {
  .chroma-movie-grid-container {
    padding: 1rem 0.25rem;
  }
  
  .chroma-movie-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 360px) {
  .chroma-movie-grid-container {
    padding: 0.75rem 0.25rem;
  }
  
  .chroma-movie-grid-layout {
    gap: 1.25rem;
  }
}

.featured-section {
  padding: 0 1rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .featured-section {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .featured-section {
    padding-left: 2rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .featured-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1280px) {
  .featured-section {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media (min-width: 1536px) {
  .featured-section {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.featured-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .featured-header {
    padding-top: 3rem;
  }
}

@media (min-width: 1024px) {
  .featured-header {
    padding-top: 3.5rem;
  }
}

.featured-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #9333ea;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .featured-title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .featured-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .featured-title {
    font-size: 2.5rem;
  }
}

.featured-title-text {
  color: #ffffff;
  font-weight: 500;
}

.featured-city-name {
  font-size: inherit;
  font-weight: 500;
  color: #9333ea;
}

.featured-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #d1d5db;
  cursor: pointer;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0.5rem 1.2rem;
}

.featured-view-all:hover {
  background: none;
}

.featured-view-all:hover .featured-view-all-icon {
  transform: translateX(0.125rem);
}

.featured-view-all-icon {
  width: 1.7rem;
  height: 1.7rem;
  transition: transform 0.2s;
}

.featured-movies {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .featured-movies {
    margin-top: 1.5rem;
  }
}

/* ChromaMovieGrid integration styles */
.featured-chroma-grid {
  width: 100%;
  position: relative;
}

.featured-chroma-grid .chroma-movie-grid-container {
  padding: 0;
  max-width: none;
  margin: 0;
}

.featured-chroma-grid .chroma-movie-grid-layout {
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .featured-chroma-grid .chroma-movie-grid-layout {
    gap: 1.5rem;
  }
}

/* Enhanced chroma effect for featured section */
.featured-chroma-grid .chroma-movie-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
  margin-bottom: 1rem;
}

.featured-chroma-grid .chroma-movie-card:hover {
  box-shadow: none;
  z-index: 10;
}

/* Responsive adjustments for featured section */
@media (max-width: 1200px) {
  .featured-chroma-grid .chroma-movie-grid-layout {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .featured-chroma-grid .chroma-movie-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 639px) {
  .featured-chroma-grid .chroma-movie-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
  }
}

.featured-show-more {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .featured-show-more {
    margin-top: 1.5rem;
    margin-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .featured-show-more {
    margin-bottom: 8rem;
  }
}

.featured-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #9333ea;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

@media (min-width: 768px) {
  .featured-show-more-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.featured-show-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
  background: #7c3aed;
}

.featured-view-all-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.featured-show-more-btn:hover .featured-view-all-icon {
  transform: translateX(4px);
}

.featured-no-movies {
  text-align: center;
  padding: 2rem 1rem;
  color: #9ca3af;
}

@media (min-width: 768px) {
  .featured-no-movies {
    padding: 3rem 2rem;
  }
}

.featured-no-movies p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .featured-no-movies p {
    margin: 0.75rem 0;
    font-size: 1rem;
  }
}

.featured-loading {
  text-align: center;
  padding: 2rem 1rem;
  color: #1E90FF;
}

@media (min-width: 768px) {
  .featured-loading {
    padding: 3rem 2rem;
  }
}

.featured-loading p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .featured-loading p {
    margin: 0.75rem 0;
    font-size: 1rem;
  }
}

 /* Movie Trailers Section */
.movie-trailers-section {
  margin-top: -1rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .movie-trailers-section {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .movie-trailers-section {
    padding: 0 4rem;
  }
}

.trailer-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: visible;
  width: 100%;
  height: 400px;
}

@media (min-width: 768px) {
  .trailer-carousel {
    margin-bottom: 4rem;
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .trailer-carousel {
    height: 600px;
  }
}

.trailer-preview {
  width: 300px;
  height: 200px;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  filter: brightness(0.6);
  transform: scale(1);
  position: relative;
}

@media (min-width: 640px) {
  .trailer-preview {
    width: 400px;
    height: 250px;
  }
}

@media (min-width: 768px) {
  .trailer-preview {
    width: 500px;
    height: 300px;
    opacity: 0.6;
    filter: brightness(0.7);
  }
}

@media (min-width: 1024px) {
  .trailer-preview {
    width: 667px;
    height: 400px;
  }
}

.trailer-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.trailer-preview:hover {
  opacity: 0.7;
  filter: brightness(0.8);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.trailer-preview:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.trailer-preview img,
.trailer-preview iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
  border-radius: 1rem;
}

.trailer-preview-left {
  position: absolute;
  left: -200px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

@media (max-width: 1024px) {
  .trailer-preview-left {
    left: -150px;
  }
}

@media (max-width: 768px) {
  .trailer-preview-left {
    left: -100px;
  }
}

@media (max-width: 640px) {
  .trailer-preview-left {
    left: -50px;
  }
}

.trailer-preview-right {
  position: absolute;
  right: -200px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

@media (max-width: 1024px) {
  .trailer-preview-right {
    right: -150px;
  }
}

@media (max-width: 768px) {
  .trailer-preview-right {
    right: -100px;
  }
}

@media (max-width: 640px) {
  .trailer-preview-right {
    right: -50px;
  }
}

.trailer-preview-left:hover {
  opacity: 0.6;
  filter: brightness(0.8);
}

.trailer-preview-right:hover {
  opacity: 0.6;
  filter: brightness(0.8);
}

.trailer-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 1024px) {
  .trailer-card {
    max-width: 1000px;
    border-radius: 2rem;
  }
}

.trailer-movie-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: white;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  z-index: 10;
  text-align: center;
}

@media (min-width: 768px) {
  .trailer-movie-title {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
  }
}

.trailer-card img,
.trailer-card iframe {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
  border-radius: 1.5rem;
}

@media (min-width: 768px) {
  .trailer-card img,
  .trailer-card iframe {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .trailer-card img,
  .trailer-card iframe {
    height: 600px;
    border-radius: 2rem;
  }
}

.trailer-thumbnail {
  position: relative;
  width: 60%;
  height: 300px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.trailer-card:hover .trailer-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(147, 51, 234, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .play-button {
    width: 80px;
    height: 80px;
  }
}

.trailer-card:hover .play-button {
  background: rgba(147, 51, 234, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.trailer-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
}

@media (min-width: 768px) {
  .trailer-info {
    padding: 2.5rem;
  }
}

.trailer-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .trailer-title {
    font-size: 1.75rem;
  }
}

.trailer-duration {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

@media (min-width: 768px) {
  .trailer-duration {
    font-size: 1.125rem;
  }
}

.trailer-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .trailer-indicators {
    gap: 1rem;
    margin-bottom: 3rem;
  }
}

.trailer-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .trailer-indicator {
    width: 12px;
    height: 12px;
  }
}

.trailer-indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}

.trailer-indicator.active {
  background: #9333ea;
}

.trailers-header {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .trailers-header {
    margin-bottom: 3rem;
  }
}

.trailers-title {
  font-size: 1.75rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .trailers-title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .trailers-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .trailers-title {
    font-size: 2.5rem;
  }
}

.trailers-title-text {
  color: #ffffff;
  font-weight: 500;
}

.trailers-title-highlight {
  color: #a365ff;
  font-weight: 700;
}

/* Loading and no-trailers states */
.trailer-loading,
.trailer-no-trailers {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  background: transparent;
  border-radius: 0;
  margin: 2rem 0;
  flex-direction: column;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .trailer-loading,
  .trailer-no-trailers {
    padding: 0 2rem;
  }
}

.trailer-loading p,
.trailer-no-trailers p {
  color: #d1d5db;
  font-size: 1rem;
  text-align: center;
  margin: 0.5rem 0;
}

@media (min-width: 768px) {
  .trailer-loading p,
  .trailer-no-trailers p {
    font-size: 1.1rem;
  }
}

.trailer-no-trailers ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  text-align: center;
}

.trailer-no-trailers li {
  color: #9ca3af;
  font-size: 0.85rem;
  margin: 0.3rem 0;
  padding: 0;
}

@media (min-width: 768px) {
  .trailer-no-trailers li {
    font-size: 0.9rem;
  }
}

.trailer-loading p {
  color: #a365ff;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .trailer-carousel {
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
  }
  
  .trailer-preview-left,
  .trailer-preview-right {
    transform: none;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    opacity: 0.6;
    filter: brightness(0.7);
  }

  .trailer-card {
    max-width: 100%;
    flex-direction: column;
  }
  
  .trailer-card img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .trailer-preview {
    width: 280px;
    height: 180px;
  }

  .trailer-card img {
    height: 200px;
  }
  
  .trailer-indicators {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .trailer-indicator {
    width: 8px;
    height: 8px;
  }
  
  .trailer-movie-title {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }
} .aurora-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: screen;
}

.aurora-container canvas {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
/* Home Page Responsive Layout */
.home-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Section spacing and responsive adjustments */
.home-page > * {
  width: 100%;
}

/* Aurora background positioning */
.home-page .aurora-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  mask: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 60%);
  -webkit-mask: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0) 60%);
}

/* Reduce Aurora intensity on mobile for better performance */
@media (max-width: 768px) {
  .home-page .aurora-container {
    opacity: 0.4;
    height: 50vh;
  }
}

/* Disable Aurora on very small screens for performance */
@media (max-width: 480px) {
  .home-page .aurora-container {
    display: none;
  }
}

/* Ensure proper spacing between sections on mobile */
@media (max-width: 768px) {
  .home-page {
    padding-bottom: 2rem;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .home-page {
    padding-bottom: 3rem;
  }
}

/* Desktop adjustments */
@media (min-width: 1024px) {
  .home-page {
    padding-bottom: 4rem;
  }
}

/* Large screen optimizations */
@media (min-width: 1536px) {
  .home-page {
    padding-bottom: 5rem;
  }
}

/* Ensure smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Optimize for mobile performance */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Reduce motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}

/* Ensure proper viewport handling */
@media (max-width: 480px) {
  .home-page {
    min-height: 100dvh; /* Use dynamic viewport height for mobile */
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .home-page {
    min-height: 100vh;
  }
}
.movies-page {
  position: relative;
  margin-top: 10rem;
  margin-bottom: 15rem;
  padding: 0 1.5rem;
  overflow: hidden;
  min-height: 80vh;
}

@media (min-width: 768px) {
  .movies-page {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .movies-page {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

@media (min-width: 1280px) {
  .movies-page {
    padding-left: 11rem;
    padding-right: 11rem;
  }
}

.movies-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0.4rem;
  margin-top: -1rem;
}

.movies-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #9333ea;
}

.movies-title-text {
  color: #ffffff;
  font-weight: 500;
}

.movies-city-name {
  font-size: inherit;
  font-weight: 500;
  color: #9333ea;
}

.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center;
  align-items: start;
}

@media (max-width: 639px) {
  .movies-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.movies-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.movies-empty-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.movies-empty-subtitle {
  font-size: 1rem;
  color: #9ca3af;
  text-align: center;
  max-width: 400px;
  line-height: 1.5;
}

.movies-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  color: #9ca3af;
  font-size: 1.1rem;
  text-align: center;
}

.movies-loading p {
  margin: 0;
  padding: 20px;
  background: rgba(14, 20, 47, 0.3);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
} .loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.loading-spinner {
  animation: spin 1s linear infinite;
  border-radius: 50%;
  height: 3.5rem;
  width: 3.5rem;
  border: 2px solid transparent;
  border-top-color: #1E90FF;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
} .movie-details-page {
  padding: 0 1.5rem;
  padding-top: 7.5rem;
}

@media (min-width: 768px) {
  .movie-details-page {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 12.5rem;
  }
}

@media (min-width: 1024px) {
  .movie-details-page {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media (min-width: 1280px) {
  .movie-details-page {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}

.movie-details-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 90rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .movie-details-container {
    flex-direction: row;
    gap: 5rem;
  }
}

.movie-details-poster {
  margin: 0 auto;
  border-radius: 0.75rem;
  height: 30rem;
  max-width: 24rem;
  object-fit: cover;
}

@media (max-width: 767px) {
  .movie-details-poster {
    margin: 0 auto;
  }
}

.movie-details-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.movie-details-language {
  color: #9333ea;
  font-size: 0.875rem;
  font-weight: 600;
}

.movie-details-title {
  font-size: 2.25rem;
  font-weight: 600;
  max-width: 40rem;
  text-wrap: balance;
  line-height: 1.1;
  color: white;
}

@media (min-width: 768px) {
  .movie-details-title {
    font-size: 2.75rem;
    line-height: 1.2;
  }
}

.movie-details-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  font-size: 0.875rem;
}

.movie-details-rating-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #9333ea;
  fill: #9333ea;
}

.movie-details-overview {
  color: #d1d5db;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 50rem;
}

.movie-details-meta {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.4;
}

.movie-details-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.movie-details-trailer-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.movie-details-trailer-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

.movie-details-trailer-btn:active {
  transform: scale(0.95);
}

.movie-details-trailer-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.movie-details-tickets-btn {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.movie-details-tickets-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

.movie-details-tickets-btn:active {
  transform: scale(0.95);
}

.movie-details-favorite-btn {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
  padding: 0.625rem;
  border: none;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.movie-details-favorite-btn:hover {
  background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.movie-details-favorite-btn:active {
  transform: scale(0.95);
}

.movie-details-favorite-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #d1d5db;
  transition: all 0.3s ease;
}

.movie-details-favorite-icon.filled {
  fill: #9333ea;
  color: #9333ea;
}

.movie-details-cast-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-top: 5rem;
  color: white;
}

.movie-details-cast-container {
  overflow-x: auto;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.movie-details-cast-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  padding: 0 1rem;
}

.movie-details-cast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.movie-details-cast-image {
  border-radius: 50%;
  height: 5.5rem;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (min-width: 768px) {
  .movie-details-cast-image {
    height: 5.5rem;
  }
}

.movie-details-cast-name {
  font-weight: 500;
  font-size: 0.8rem;
  margin-top: 0.75rem;
  color: #d1d5db;
}

.movie-details-recommendations-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-top: 5rem;
  margin-bottom: 0.4rem;
  color: white;
}

.movie-details-recommendations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
}

.movie-details-recommendations-grid .movie-card {
  flex-shrink: 0;
  width: 200px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.movie-details-recommendations-grid .movie-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.movie-details-recommendations-grid .movie-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.movie-details-recommendations-grid .movie-card:hover img {
  transform: scale(1.1);
}

.movie-details-no-recommendations {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
  color: #9ca3af;
  font-style: italic;
}

@media (max-width: 639px) {
  .movie-details-recommendations-grid {
    justify-content: flex-start;
    gap: 1rem;
  }
  
  .movie-details-recommendations-grid .movie-card {
    width: 150px;
    height: 225px;
  }
}

.movie-details-show-more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.movie-details-show-more-btn {
  font-size: 0.95rem;
  padding: 0.6rem 1.7rem;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.movie-details-show-more-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

/* Trailer Section */
.movie-details-trailer-section {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.movie-details-trailer-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
}

.movie-details-trailer-container {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  padding-bottom: 42.85%; /* Landscape aspect ratio (21:9) */
}

.movie-details-trailer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.75rem;
}

.movie-details-trailer-message {
  text-align: center;
  color: #9ca3af;
  font-size: 1rem;
  margin-top: 1rem;
  padding: 2rem;
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733));
  border-radius: 0.75rem;
  border: 1px solid rgba(147, 51, 234, 0.2);
}

.movie-details-trailer-loading {
  text-align: center;
  color: #9333ea;
  font-size: 1rem;
  margin-top: 1rem;
  padding: 2rem;
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733));
  border-radius: 0.75rem;
  border: 1px solid rgba(147, 51, 234, 0.2);
  font-weight: 500;
}

.movie-details-trailer-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

@media (max-width: 768px) {
  .movie-details-trailer-container {
    max-width: 100%;
  }
  
  .movie-details-trailer-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
} 

.movie-details-book-btn {
  padding: 0.75rem 2.5rem;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.movie-details-book-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

.movie-details-book-btn:active {
  transform: scale(0.95);
}

.movie-details-book-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.3);
}

.movie-details-watch-trailer-btn {
  padding: 0.75rem 2.5rem;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.movie-details-watch-trailer-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

.movie-details-watch-trailer-btn:active {
  transform: scale(0.95);
}

.movie-details-watch-trailer-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.3);
} .payment-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-header h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.payment-header p {
    color: #10B981;
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-info h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.payment-info p {
    color: #9CA3AF;
    margin: 0.25rem 0;
}

.checkout-info {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.checkout-info h3 {
    color: #10B981;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.checkout-info p {
    color: #9CA3AF;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.security-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.card-element-container {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-element-container label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.payment-cancel-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(239, 68, 68, 0.8);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
}

.payment-cancel-btn:hover:not(:disabled) {
    background: rgba(239, 68, 68, 1);
    transform: translateY(-1px);
}

.payment-submit-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    flex: 2;
}

.payment-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
}

.payment-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.payment-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: white;
}

.payment-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #10B981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

/* Stripe Elements styling */
.StripeElement {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background: white;
}

.StripeElement--focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.StripeElement--invalid {
    border-color: #ef4444;
}

/* Responsive design */
@media (max-width: 640px) {
    .payment-form-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .payment-cancel-btn,
    .payment-submit-btn {
        flex: none;
    }
    
    .security-badges {
        justify-content: center;
    }
} .seat-layout-page {
  min-height: 100vh;
  background: none;
  color: white;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  padding-top: 5rem;
}

/* Loading and Error States */
.seat-layout-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  width: 100%;
}

.seat-layout-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  width: 100%;
  text-align: center;
  padding: 2rem;
}

.seat-layout-error h2 {
  color: #ef4444;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.seat-layout-error p {
  color: #9ca3af;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.seat-layout-back-btn {
  padding: 0.75rem 1.5rem;
  background-color: #1E90FF;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.seat-layout-back-btn:hover {
  background-color: #4682B4;
}

.seat-layout-container {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
  padding: 0 2rem;
}

.seat-layout-main,
.seat-layout-main-large {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  width: auto;
  max-width: none;
  min-width: 0;
  position: relative;
  overflow-x: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* Summary Section */
.seat-layout-summary {
  width: 320px;
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
  background-color: #010915 !important;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.seat-layout-summary-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.seat-layout-summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.75rem;
}

.seat-layout-movie-info {
  text-align: center;
}

.seat-layout-movie-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.5rem 0;
}

.seat-layout-movie-date {
  font-size: 0.9rem;
  color: #a855f7;
  margin: 0;
}

.seat-layout-theatre-info {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0.25rem 0 0 0;
}

.seat-layout-seats-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.seat-layout-seats-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.seat-layout-no-seats {
  color: #9ca3af;
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

.seat-layout-seats-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
}

.seat-layout-seat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.seat-layout-seat-item:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.seat-layout-seat-id {
  font-weight: 600;
  color: #f59e0b;
}

.seat-layout-seat-price {
  color: #10b981;
  font-weight: 500;
}

.seat-layout-price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
}

.seat-layout-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.seat-layout-price-row:first-child {
  color: #9ca3af;
}

.seat-layout-total-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #10b981;
}

.seat-layout-checkout-btn {
  background: linear-gradient(135deg, #a365ff, #8b5cf6) !important;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  box-shadow: 0 4px 8px rgba(163, 101, 255, 0.2);
}

.seat-layout-checkout-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(163, 101, 255, 0.4);
}

.seat-layout-checkout-btn:disabled {
  background: #6b7280;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.seat-layout-checkout-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.seat-layout-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
  margin-top: 1.5rem;
}

/* Screen Container */
.seat-layout-screen-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  width: auto;
}

.seat-layout-screen {
  width: 60vw;
  max-width: 40rem;
  height: 0.5rem;
  background: linear-gradient(90deg, #8b5cf6 0%, #a855f7 50%, #8b5cf6 100%);
  border-radius: 0.25rem;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  margin-bottom: 0.5rem;
}

.seat-layout-screen-text {
  color: #a855f7;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Theater Layout */
.seat-layout-theater {
  width: auto;
  margin-bottom: 2rem;
  overflow-x: visible;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seat-layout-section {
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: none;
}

.seat-layout-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.seat-layout-section-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #a365ff;
  margin-bottom: 0.5rem;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 1;
}

.seat-layout-section-price {
  color: #10b981;
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 1;
  margin-left: 0.5rem;
}

.seat-layout-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
  width: auto;
}

.seat-layout-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  width: auto;
  max-width: none;
  min-width: 0;
  justify-content: center;
  height: 2.5rem;
}

.seat-layout-row-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #a855f7;
  width: 2.5rem;
  text-align: center;
  margin-right: 1.2rem;
  text-transform: uppercase;
}

/* Seat Blocks */
.seat-layout-block {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 2.5rem;
}

.seat-layout-block.upper-left,
.seat-layout-block.upper-right {
  margin-bottom: 0.5rem;
}

.seat-layout-block.lower-left,
.seat-layout-block.lower-right {
  margin-top: 0.5rem;
}

/* Aisles */
.seat-layout-aisle {
  width: 2rem;
  height: 2rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px dashed rgba(139, 92, 246, 0.3);
  border-radius: 0.25rem;
  margin: 0 0.5rem;
}

.seat-layout-aisle.upper-aisle {
  margin-bottom: 0.5rem;
}

.seat-layout-aisle.lower-aisle {
  margin-top: 0.5rem;
}

/* Individual Seats */
.seat-layout-seat {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.seat-layout-seat:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.seat-layout-seat.selected {
  background: linear-gradient(135deg, #a365ff, #8b5cf6);
  border-color: #a365ff;
  color: white;
  box-shadow: 0 4px 12px rgba(163, 101, 255, 0.4);
  transform: scale(1.05);
}

.seat-layout-seat.occupied {
  background: rgba(107, 114, 128, 0.3);
  border-color: #6b7280;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.seat-layout-seat.occupied:hover {
  background: rgba(107, 114, 128, 0.3);
  border-color: #6b7280;
  color: #9ca3af;
  transform: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.seat-layout-seat.locked {
  background: rgba(255, 193, 7, 0.3);
  border-color: #ffc107;
  color: #ffc107;
  cursor: not-allowed;
  opacity: 0.8;
  animation: pulse 2s infinite;
}

.seat-layout-seat.locked:hover {
  background: rgba(255, 193, 7, 0.3);
  border-color: #ffc107;
  color: #ffc107;
  transform: none;
  box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .seat-layout-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .seat-layout-summary {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: static;
  }
  
  .seat-layout-main,
  .seat-layout-main-large,
  .seat-layout-theater,
  .seat-layout-rows,
  .seat-layout-row {
    min-width: 0;
    max-width: none;
    width: auto;
  }
}

@media (max-width: 900px) {
  .seat-layout-container {
    padding: 0 0.5rem;
  }
  
  .seat-layout-main,
  .seat-layout-main-large,
  .seat-layout-theater,
  .seat-layout-rows,
  .seat-layout-row {
    min-width: 0;
    max-width: none;
    width: auto;
  }
}

@media (max-width: 768px) {
  .seat-layout-container {
    padding: 0 0.25rem;
  }
  
  .seat-layout-main,
  .seat-layout-main-large {
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .seat-layout-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .seat-layout-screen {
    width: 90vw;
    max-width: 30rem;
  }

  .seat-layout-theater,
  .seat-layout-rows {
    width: 100%;
    max-width: none;
    min-width: 0;
    overflow-x: auto;
  }

  .seat-layout-row {
    min-width: 0;
    max-width: none;
    width: auto;
  }

  .seat-layout-row-number {
    font-size: 0.75rem;
  }

  .seat-layout-block {
    min-width: 0;
    max-width: none;
    width: auto;
  }

  .seat-layout-aisle {
    width: 1.5rem;
    height: 1.5rem;
  }

  .seat-layout-seat {
    width: 2rem;
    height: 2rem;
    font-size: 0.625rem;
  }

  .seat-layout-checkout-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
} 

.seat-layout-center-gap {
  width: 3rem;
  min-width: 3rem;
  height: 1px;
  display: inline-block;
} 

/* Payment Overlay */
.payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
} .my-bookings-page {
  min-height: 100vh;
  background: none;
  color: white;
  padding: 2rem 1rem;
  padding-top: 7rem;
}

.my-bookings-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0.4rem;
  margin-top: -1rem;
}

.my-bookings-title-container {
  text-align: center;
}

.my-bookings-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #9333ea;
}

.my-bookings-title-text {
  color: #ffffff;
  font-weight: 500;
}

.my-bookings-title-highlight {
  font-size: inherit;
  font-weight: 500;
  color: #9333ea;
}

.my-bookings-subtitle {
  font-size: 1.1rem;
  color: #9ca3af;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Empty State */
.my-bookings-empty {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.my-bookings-empty-icon {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.my-bookings-empty-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.my-bookings-empty-text {
  color: #9ca3af;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.my-bookings-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.my-bookings-empty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Grid Layout */
.my-bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}

/* Booking Cards */
.my-bookings-card {
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
  background-color: #010915 !important;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.my-bookings-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(163, 101, 255, 0.05) 0%, rgba(163, 101, 255, 0.02) 100%);
  pointer-events: none;
  border-radius: 0.75rem;
}

.my-bookings-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(163, 101, 255, 0.3);
}

.my-bookings-card.cancelled {
  opacity: 0.6;
  border-color: rgba(239, 68, 68, 0.3);
}

.my-bookings-card.cancelled::before {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.my-bookings-card.cancelled:hover {
  transform: none;
  opacity: 0.7;
}

/* Card Header */
.my-bookings-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.my-bookings-movie-poster {
  width: 80px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.my-bookings-poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-bookings-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.my-bookings-status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card Content */
.my-bookings-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.my-bookings-movie-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.3;
}

/* Details Section */
.my-bookings-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.my-bookings-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  font-size: 0.9rem;
}

.my-bookings-detail-icon {
  width: 16px;
  height: 16px;
  color: #8b5cf6;
  flex-shrink: 0;
}

/* Seats Section */
.my-bookings-seats-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.my-bookings-seats-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.my-bookings-seats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.my-bookings-seat-badge {
  background: linear-gradient(135deg, #a365ff 0%, #8b5cf6 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Card Footer */
.my-bookings-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: auto;
}

.my-bookings-amount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.my-bookings-amount-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
}

.my-bookings-amount-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
}

.my-bookings-actions {
  display: flex;
  gap: 0.75rem;
}

.my-bookings-action-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.my-bookings-view-btn {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.my-bookings-view-btn:hover {
  background: rgba(139, 92, 246, 0.3);
  transform: translateY(-1px);
}

.my-bookings-cancel-btn {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.my-bookings-cancel-btn:hover {
  background: rgba(239, 68, 68, 0.3);
  transform: translateY(-1px);
}

.my-bookings-cancel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.my-bookings-cancel-btn:disabled:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .my-bookings-page {
    padding: 1rem;
    padding-top: 6rem;
  }

  .my-bookings-title {
    font-size: 2rem;
  }

  .my-bookings-subtitle {
    font-size: 1rem;
  }

  .my-bookings-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .my-bookings-card {
    padding: 1.25rem;
  }

  .my-bookings-movie-poster {
    width: 60px;
    height: 90px;
  }

  .my-bookings-movie-title {
    font-size: 1.1rem;
  }

  .my-bookings-card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .my-bookings-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .my-bookings-card {
    padding: 1rem;
  }

  .my-bookings-movie-poster {
    width: 50px;
    height: 75px;
  }

  .my-bookings-amount-text {
    font-size: 1.1rem;
  }

  .my-bookings-action-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
} .favorite-page {
  position: relative;
  margin-top: 10rem;
  margin-bottom: 15rem;
  padding: 0 1.5rem;
  overflow: hidden;
  min-height: 80vh;
}

@media (min-width: 768px) {
  .favorite-page {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .favorite-page {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

@media (min-width: 1280px) {
  .favorite-page {
    padding-left: 11rem;
    padding-right: 11rem;
  }
}

.favorite-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0.4rem;
  margin-top: -1rem;
}

.favorite-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #9333ea;
}

.favorite-title-text {
  color: #ffffff;
  font-weight: 500;
}

.favorite-title-highlight {
  font-size: inherit;
  font-weight: 500;
  color: #9333ea;
}

.favorite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  justify-items: center;
  align-items: start;
}

@media (max-width: 639px) {
  .favorite-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}

.favorite-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.favorite-empty-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.favorite-empty-subtitle {
  font-size: 1rem;
  color: #9ca3af;
  text-align: center;
  max-width: 400px;
  line-height: 1.5;
} .footer {
  padding: 2rem 1.5rem;
  margin-top: 6rem;
  width: 100%;
  color: #d1d5db;
  background: #0e142f;
  background: radial-gradient(circle, #7214ff40 0, #0e142f 100%);
}

@media (min-width: 768px) {
  .footer {
    padding: 2.5rem 4rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 3rem 9rem;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
  border-bottom: 1px solid #6b7280;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.footer-brand {
  max-width: 18rem;
  flex: 1;
}

@media (min-width: 768px) {
  .footer-brand {
    max-width: 22rem;
  }
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .footer-logo {
    width: 3.5rem;
    height: 3.5rem;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 3rem;
    height: 3rem;
  }
}

.footer-logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

@media (max-width: 767px) {
  .footer-logo-text {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .footer-logo-text {
    font-size: 2rem;
  }
}

.footer-description {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .footer-description {
    font-size: 0.9rem;
  }
}

.footer-social {
  margin-top: 0.8rem;
}

.footer-social-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.4rem;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: white;
}

.social-icon {
  width: 1.28rem;
  height: 1.28rem;
  transition: transform 0.2s;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

/* Facebook hover color */
.social-link:nth-child(1):hover .social-icon {
  fill: #1877F2;
}

/* X (Twitter) hover color */
.social-link:nth-child(2):hover .social-icon {
  fill: #000000;
}

/* Instagram hover color */
.social-link:nth-child(3):hover .social-icon {
  fill: #E4405F;
}

.footer-links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .footer-links {
    gap: 2rem;
    align-items: flex-start;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: flex-start;
  min-height: 0;
}

.footer-section-title {
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: white;
  font-size: 0.9rem;
  align-self: flex-start;
  margin-top: 0;
}

.footer-section-list {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section-list a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.2rem 0;
  display: block;
}

.footer-section-list a:hover {
  color: white;
}

.footer-section-text {
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: #9ca3af;
}

.footer-section-text p {
  margin: 0;
  line-height: 1.3;
}

.footer-section-text strong {
  color: white;
  font-weight: 600;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid #374151;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .footer-social-links {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer {
    margin-top: 4rem;
    padding: 1.5rem 1rem;
  }
} .navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .navbar {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding-left: 9rem;
    padding-right: 9rem;
  }
}

/* Left side - Profile */
.navbar-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.navbar-profile:hover {
  transform: none;
}

.navbar-profile-container {
  position: relative;
}

.navbar-profile-btn {
  display: flex;
  align-items: center;
    gap: 0.5rem;
  padding: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-size: 1.15rem;
}

.navbar-profile-btn:hover {
  transform: none;
}

.navbar-profile-avatar {
  width: 2.7rem;
  height: 2.7rem;
  background: #a365ff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
}

.navbar-profile-btn:hover .navbar-profile-avatar {
  transform: none;
  box-shadow: none;
}

.navbar-dropdown-icon {
  color: #9ca3af;
  transition: all 0.2s ease;
}

.navbar-profile-container:hover .navbar-dropdown-icon {
  transform: rotate(180deg);
  color: white;
}

.navbar-profile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 12rem;
  max-width: calc(100vw - 2rem);
  background-color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0;
  z-index: 1000;
  overflow: hidden;
  animation: slideDown 0.2s ease;
  min-width: 160px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-profile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.1rem 1.3rem;
  font-size: 1.15rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-profile-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  /* No scale effect */
}

.navbar-profile-greeting {
  font-size: 1.25rem;
  font-weight: 600;
  color: #a365ff;
  padding: 1.1rem 1.3rem 0.7rem 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.25rem;
}

/* Center - Navigation */
.navbar-center {
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
  transition: transform 0.2s ease;
}

.navbar-center:hover {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .navbar-center {
    display: flex;
  }
}

.navbar-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.navbar-nav-indicator {
  position: absolute;
  bottom: -0.5rem;
  height: 0.25rem;
  background-color: #a365ff;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
  z-index: 1;
}

.navbar-nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.35rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.navbar-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.navbar-nav-link.active {
  color: #a365ff;
  transform: scale(1.05);
}

/* Active indicator positioning */
.navbar-nav-links .navbar-nav-link:nth-child(2).active ~ .navbar-nav-indicator {
  left: 0;
  width: 3.5rem;
}

.navbar-nav-links .navbar-nav-link:nth-child(3).active ~ .navbar-nav-indicator {
  left: 4.5rem;
  width: 3.5rem;
}

.navbar-nav-links .navbar-nav-link:nth-child(4).active ~ .navbar-nav-indicator {
  left: 9rem;
  width: 4rem;
}

/* Right side - Logo */
.navbar-logo {
  max-width: 100%;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .navbar-logo {
    max-width: none;
    flex: none;
  }
}

.navbar-logo img {
  width: 3.5rem;
  height: 3.5rem;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .navbar-logo img {
    width: 2rem;
    height: 2rem;
  }
}

/* Mobile menu */
.navbar-mobile-menu {
  display: block;
  margin-left: 1rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  flex-shrink: 0;
  color: white;
  transition: transform 0.2s ease;
}

.navbar-mobile-menu:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .navbar-mobile-menu {
    display: none;
  }
}

.navbar-mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.navbar-mobile-menu-container.open {
  opacity: 1;
  visibility: visible;
}

.navbar-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  color: white;
  transition: transform 0.2s ease;
}

.navbar-close:hover {
  transform: scale(1.1);
}

.navbar-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.navbar-mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.navbar-mobile-nav a:hover {
  color: #1E90FF;
  transform: scale(1.05);
} .admin-layout {
  min-height: 100vh;
  margin-top: 5rem;
  background-color: #060010;
  color: white;
}

.admin-layout-content {
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .admin-layout-content {
    padding: 2rem 4rem;
  }
}

@media (min-width: 1024px) {
  .admin-layout-content {
    padding: 2rem 9rem;
  }
} .dashboard-cards {
  margin-top: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.dashboard-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.dashboard-card {
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733));
  background-color: #010915;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}



.dashboard-card-content h1 {
  font-size: 0.875rem;
  font-weight: 500;
  color: #9ca3af;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-card-content p {
  font-size: 1.75rem;
  font-weight: 600;
  color: #d1d5db;
  margin: 0;
}

.dashboard-card-icon {
  width: 2rem;
  height: 2rem;
  color: #1E90FF;
  flex-shrink: 0;
}

.dashboard-shows-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.dashboard-shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-show-card {
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733));
  background-color: #010915;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}



.dashboard-show-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.dashboard-show-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-show-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-show-rating-block {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.dashboard-show-rating-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #1E90FF;
  fill: #1E90FF;
}

.dashboard-show-rating-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: #d1d5db;
}



.dashboard-show-details {
  padding: 1rem;
}

.dashboard-show-title {
  font-size: 1rem;
  font-weight: 600;
  color: #d1d5db;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.dashboard-show-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.dashboard-show-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dashboard-actions {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.dashboard-update-btn {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

.dashboard-update-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.dashboard-update-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
  .dashboard-cards-container {
    grid-template-columns: 1fr;
  }
  
  .dashboard-shows-grid {
    grid-template-columns: 1fr;
  }
} /* Add Shows Container */
.add-shows-container {
    padding: 20px;
    width: 100%;
    min-height: 100vh;
    background: transparent;
    color: white;
}

/* Header Section */
.add-shows-header {
    background: transparent;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    margin-bottom: 30px;
}

.add-shows-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E90FF;
    margin: 0 0 8px 0;
}

.add-shows-header-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin: 0;
    font-weight: 400;
}

/* Main Content */
.add-shows-main {
    width: 100%;
}

/* Latest Movies Section */
.add-shows-latest-section {
    margin-bottom: 40px;
}

.add-shows-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d1d5db;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.add-shows-subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 15px;
}

/* OR Divider */
.add-shows-or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    gap: 20px;
}

.add-shows-or-line {
    flex: 1;
    height: 1px;
    background: #333;
}

.add-shows-or-text {
    color: #1E90FF;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0 20px;
}

/* Configuration Section */
.add-shows-config-section {
    margin-bottom: 40px;
}

/* Theatre Selection Section */
.add-shows-theatre-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.add-shows-dropdown-group {
    margin-bottom: 20px;
}

.add-shows-dropdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 8px;
}

.add-shows-dropdown-icon {
    width: 16px;
    height: 16px;
    color: #8b5cf6;
}

.add-shows-dropdown {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.add-shows-dropdown:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.add-shows-dropdown:disabled {
    background: rgba(255, 255, 255, 0.05);
    color: #6b7280;
    cursor: not-allowed;
}

.add-shows-dropdown option {
    background: #1a1a1a;
    color: white;
    padding: 8px;
}

.add-shows-loading {
    font-size: 0.875rem;
    color: #8b5cf6;
    margin-top: 4px;
    font-style: italic;
}

/* Manual Input Help Text */
.add-shows-manual-help {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.4;
    text-align: center;
    max-width: 400px;
}

.add-shows-manual-help a {
    color: #1E90FF;
    text-decoration: none;
}

.add-shows-manual-help a:hover {
    text-decoration: underline;
}

/* Offline Notice */
.add-shows-offline-notice {
    background: transparent;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px;
    margin-top: 15px;
    text-align: center;
}

.add-shows-offline-notice p {
    margin: 0;
    color: #1E90FF;
    font-size: 1rem;
    font-weight: 500;
}

/* Movies Container */
.add-shows-movies-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
}

.add-shows-movies-grid {
    display: flex;
    gap: 15px;
    padding: 10px 0;
    min-width: max-content;
}

.add-shows-movie-card {
    position: relative;
    width: 200px;
    min-width: 200px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    overflow: hidden;
}

.add-shows-movie-card:hover {
    transform: translateY(-2px);
    border-color: #1E90FF;
}

.add-shows-movie-image-container {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.add-shows-movie-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-shows-movie-selected {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #9333ea;
    height: 24px;
    width: 24px;
    border-radius: 4px;
    z-index: 2;
}

.add-shows-movie-selected-icon {
    width: 14px;
    height: 14px;
    color: white;
    stroke-width: 2.5;
}

.add-shows-movie-info {
    padding: 12px;
    background: transparent;
    border-top: 1px solid #333;
}

.add-shows-movie-title {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.add-shows-movie-date {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4px;
}

.add-shows-movie-id {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4px;
}

.add-shows-movie-status {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.add-shows-movie-status.selected {
    color: #9333ea;
    font-weight: 700;
}

.add-shows-manual-section {
    margin-bottom: 30px;
    text-align: center;
}

.add-shows-price-section {
    margin-bottom: 30px;
    max-width: 400px;
}

.add-shows-price-input {
    margin-bottom: 20px;
}

.add-shows-price-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #d1d5db;
    font-size: 1rem;
}

.add-shows-price-field-container {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
}

.add-shows-price-currency {
    padding: 12px 16px;
    background-color: #333;
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 600;
    border-right: 1px solid #333;
    white-space: nowrap;
}

.add-shows-price-field {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background-color: transparent;
    color: white;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
}

.add-shows-price-field:focus {
    background-color: rgba(42, 42, 42, 0.3);
}

.add-shows-datetime-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.add-shows-datetime-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: end;
}

.add-shows-datetime-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.add-shows-datetime-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 5px;
}

.add-shows-datetime-field {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: transparent;
    color: white;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
}

.add-shows-datetime-field:focus {
    border-color: #1E90FF;
    background-color: rgba(42, 42, 42, 0.3);
}

.add-shows-datetime-button {
    padding: 0.75rem 2.5rem;
    background-color: #9333ea;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.875rem;
    white-space: nowrap;
}

.add-shows-datetime-button:hover {
    background-color: #7c3aed;
}

.add-shows-datetime-button:active {
    transform: scale(0.95);
}

.add-shows-datetime-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.3);
}

.add-shows-selected-times {
    margin-bottom: 30px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 15px;
    max-width: 500px;
}

.add-shows-selected-times-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.add-shows-time-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.add-shows-time-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.add-shows-time-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.add-shows-time-datetime {
    font-weight: 600;
    color: #d1d5db;
    font-size: 1rem;
}

.add-shows-time-screen {
    color: #9ca3af;
    font-size: 12px;
    margin-left: 10px;
}

.add-shows-time-language {
    color: #9ca3af;
    font-size: 12px;
    margin-left: 10px;
}

.add-shows-time-format {
    font-size: 0.9rem;
    color: #9ca3af;
}

.add-shows-time-delete {
    cursor: pointer;
    color: #ef4444;
    transition: color 0.2s;
}

.add-shows-time-delete:hover {
    color: #dc2626;
}

.add-shows-submit-button {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 2.5rem;
    background-color: #9333ea;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.875rem;
    white-space: nowrap;
}

.add-shows-submit-button:hover {
    background-color: #7c3aed;
}

.add-shows-submit-button:active {
    transform: scale(0.95);
}

.add-shows-submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.3);
}

.add-shows-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.add-shows-no-movies {
    text-align: center;
    padding: 40px;
    color: #9ca3af;
}

.add-shows-no-movies p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.add-shows-manual-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
    align-items: center;
}

.add-shows-manual-input label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d1d5db;
    text-align: center;
}

.add-shows-manual-field {
    padding: 12px 16px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: transparent;
    color: white;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.2s;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.add-shows-manual-field:focus {
    border-color: #1E90FF;
    background-color: rgba(42, 42, 42, 0.3);
}

.add-shows-manual-field::placeholder {
    color: #666;
    text-align: center;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .add-shows-container {
        padding: 15px;
    }
    
    .add-shows-header-title {
        font-size: 2rem;
    }
    
    .add-shows-header-subtitle {
        font-size: 1rem;
    }
    
    .add-shows-section-title {
        font-size: 1.5rem;
    }
    
    .add-shows-subsection-title {
        font-size: 1.3rem;
    }
    
    .add-shows-movie-card {
        width: 160px;
        min-width: 160px;
    }
    
    .add-shows-movie-image-container {
        height: 220px;
    }
    
    .add-shows-movie-title {
        font-size: 0.9rem;
    }
    
    .add-shows-movie-date,
    .add-shows-movie-id,
    .add-shows-movie-status {
        font-size: 0.7rem;
    }
}

/* Search Section Styles */
.add-shows-search-section {
  margin-bottom: 20px;
}

.add-shows-search-input {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.add-shows-search-input input {
  flex: 1;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #1a1a1a;
  color: white;
  font-size: 14px;
}

.add-shows-search-btn {
  padding: 12px 16px;
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-shows-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.add-shows-search-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.add-shows-search-results {
  margin-top: 15px;
}

.add-shows-search-results h4 {
  color: #9333ea;
  margin-bottom: 10px;
  font-size: 16px;
}

.add-shows-search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.add-shows-search-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-shows-search-item:hover {
  border-color: #9333ea;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
}

.add-shows-search-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.add-shows-search-info {
  text-align: center;
}

.add-shows-search-title {
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  line-height: 1.2;
}

.add-shows-search-date {
  font-size: 10px;
  color: #888;
  margin-bottom: 2px;
}

.add-shows-search-id {
  font-size: 10px;
  color: #9333ea;
  font-weight: 600;
}

/* Popular Movies Section */
.add-shows-popular-section {
  margin-bottom: 20px;
}

.add-shows-popular-section h4 {
  color: #9333ea;
  margin-bottom: 10px;
  font-size: 16px;
}

.add-shows-popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  max-height: 250px;
  overflow-y: auto;
}

.add-shows-popular-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-shows-popular-item:hover {
  border-color: #9333ea;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
}

.add-shows-popular-image {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 6px;
}

.add-shows-popular-info {
  text-align: center;
}

.add-shows-popular-title {
  font-size: 11px;
  font-weight: 600;
  color: white;
  margin-bottom: 3px;
  line-height: 1.2;
}

.add-shows-popular-rating {
  font-size: 9px;
  color: #ffd700;
  margin-bottom: 2px;
}

.add-shows-popular-id {
  font-size: 9px;
  color: #9333ea;
  font-weight: 600;
}

/* Movie Format Section */
.add-shows-format-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.add-shows-format-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.add-shows-format-input label {
    font-size: 1rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 5px;
}

.add-shows-format-dropdown {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-shows-format-dropdown:focus {
    outline: none;
    border-color: #1E90FF;
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.2);
}

.add-shows-format-dropdown option {
    background: #1a1a1a;
    color: white;
    padding: 8px;
}

/* Screen Selection Section */
.add-shows-screen-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.add-shows-screen-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.add-shows-screen-input label {
    font-size: 1rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 5px;
}

.add-shows-screen-dropdown {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-shows-screen-dropdown:focus {
    outline: none;
    border-color: #1E90FF;
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.2);
}

.add-shows-screen-dropdown option {
    background: #1f2937;
    color: white;
    padding: 8px;
}

.add-shows-language-dropdown {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.add-shows-language-dropdown:focus {
    outline: none;
    border-color: #1E90FF;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.add-shows-language-dropdown option {
    background: #1f2937;
    color: white;
    padding: 8px;
}






/* Seat Prices Input */
.admin-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0.75rem;
  width: 4rem;
  border-right: 1px solid rgba(209, 213, 219, 0.2);
  background-color: rgba(1, 9, 21, 0.9);
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .admin-sidebar {
    width: 16rem;
    padding: 2rem 1rem;
  }
}

.admin-sidebar-profile {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .admin-sidebar-profile {
    height: 4rem;
    width: 4rem;
    margin-bottom: 1rem;
  }
}

.admin-sidebar-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #d1d5db;
  text-align: center;
  display: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .admin-sidebar-name {
    display: block;
    font-size: 1rem;
  }
} /* Add Theatre Container */
.add-theatre-container {
    padding: 20px;
    width: 100%;
    min-height: 100vh;
    background: transparent;
    color: white;
}

/* Header Section */
.add-theatre-header {
    background: transparent;
    border-bottom: 1px solid #333;
    padding: 20px 0;
    margin-bottom: 30px;
}

.add-theatre-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E90FF;
    margin: 0 0 8px 0;
}

.add-theatre-header-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin: 0;
    font-weight: 400;
}

/* Main Content */
.add-theatre-main {
    width: 100%;
}

/* Section Styling */
.add-theatre-section {
    margin-bottom: 40px;
    margin-top: 0;
}

.add-theatre-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d1d5db;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

/* Form Styling */
.add-theatre-form {
    width: 100%;
}

.add-theatre-form-group {
    margin-bottom: 20px;
}

.add-theatre-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.add-theatre-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #d1d5db;
    font-size: 1rem;
}

.add-theatre-input,
.add-theatre-select,
.add-theatre-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    transition: all 0.3s ease;
}

.add-theatre-input:focus,
.add-theatre-select:focus,
.add-theatre-textarea:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.add-theatre-input:disabled,
.add-theatre-select:disabled {
    background: #2a2a2a;
    color: #666;
    cursor: not-allowed;
}

.add-theatre-textarea {
    resize: vertical;
    min-height: 80px;
}

.add-theatre-help-text {
    display: block;
    margin-top: 8px;
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Screens Preview */
.add-theatre-screens-preview {
    margin-top: 20px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
}

.add-theatre-screens-preview label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #d1d5db;
    font-size: 1.1rem;
}

.add-theatre-screens-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.add-theatre-screen-item {
    background: #9333ea;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #9333ea;
    transition: all 0.3s ease;
}

.add-theatre-screen-item:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

/* Message Styling */
.add-theatre-message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    border: 1px solid;
}

.add-theatre-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: #22c55e;
}

.add-theatre-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: #ef4444;
}

/* Form Actions */
.add-theatre-form-actions {
    margin-top: 30px;
    text-align: center;
}

.add-theatre-submit-btn {
    width: auto;
    padding: 0.75rem 2.5rem;
    background-color: #9333ea;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.875rem;
    white-space: nowrap;
}

.add-theatre-submit-btn:hover {
    background-color: #7c3aed;
}

.add-theatre-submit-btn:active {
    transform: scale(0.95);
}

.add-theatre-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.3);
}

.add-theatre-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .add-theatre-container {
        padding: 15px;
    }
    
    .add-theatre-header-title {
        font-size: 2rem;
    }
    
    .add-theatre-header-subtitle {
        font-size: 1rem;
    }
    
    .add-theatre-section-title {
        font-size: 1.5rem;
    }
    
    .add-theatre-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .add-theatre-screens-list {
        justify-content: center;
    }
    
    .add-theatre-submit-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .add-theatre-container {
        padding: 10px;
    }
    
    .add-theatre-header-title {
        font-size: 1.75rem;
    }
    
    .add-theatre-section-title {
        font-size: 1.25rem;
    }
    
    .add-theatre-input,
    .add-theatre-select,
    .add-theatre-textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
} .list-shows-container {
  max-width: 120rem;
  margin-top: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  overflow-x: auto;
  width: calc(100% - 2rem);
  box-sizing: border-box;
}

.list-shows-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  border-radius: 0.375rem;
  overflow: hidden;
  white-space: nowrap;
}

.list-shows-thead {
  background-color: rgba(147, 51, 234, 0.3);
  text-align: left;
  color: white;
}

.list-shows-th {
  padding: 0.5rem;
  font-weight: 500;
  padding-left: 1.25rem;
  white-space: nowrap;
}

.list-shows-tbody {
  font-size: 0.875rem;
  font-weight: 300;
}

.list-shows-tr {
  border-bottom: 1px solid rgba(147, 51, 234, 0.2);
  background-color: rgba(147, 51, 234, 0.05);
}

.list-shows-tr:nth-child(even) {
  background-color: rgba(147, 51, 234, 0.1);
}

.list-shows-td {
  padding: 0.5rem;
  min-width: 11.25rem;
  padding-left: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
} .list-bookings-container {
  max-width: 120rem;
  margin-top: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  overflow-x: auto;
  width: calc(100% - 2rem);
  box-sizing: border-box;
}

.list-bookings {
  background: rgba(147, 51, 234, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 8px 32px 0 rgba(147, 51, 234, 0.1);
}

.list-bookings-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  border-radius: 0.375rem;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 1rem;
}

.list-bookings-table th {
  padding: 0.5rem;
  font-weight: 500;
  padding-left: 1.25rem;
  white-space: nowrap;
  border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.list-bookings-table td {
  padding: 0.5rem;
  min-width: 11.25rem;
  padding-left: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.list-bookings-table th {
  background-color: rgba(147, 51, 234, 0.3);
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.list-bookings-table td {
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 300;
}

.list-bookings-table tr {
  background-color: rgba(147, 51, 234, 0.05);
}

.list-bookings-table tr:nth-child(even) {
  background-color: rgba(147, 51, 234, 0.1);
}

.list-bookings-table tr:hover {
  background-color: rgba(147, 51, 234, 0.15);
}

.list-bookings-error {
  color: #fca5a5;
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.list-bookings-empty {
  color: #9ca3af;
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
} .contact-management {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #d1d5db;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: #9ca3af;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
    background-color: #010915 !important;
    padding: 1.5rem;
    text-align: center;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(255, 255, 255, 0.15);
    --glow-color: rgba(163, 101, 255, 0.3);
}

.stat-card:hover {
    border-color: transparent;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px) scale(1);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 10px var(--glow-color);
    position: relative;
    z-index: 5;
}

.stat-card h3 {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #9333ea;
    margin: 0;
}

/* Filters Section */
.filters-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-select,
.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-select:focus,
.search-input:focus {
    outline: none;
    border-bottom-color: #9333ea;
    background: transparent;
}

.filter-select option {
    background: #1a1a2e;
    color: white;
}

/* Contacts List */
.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
    background-color: #010915 !important;
    padding: 1.5rem;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(255, 255, 255, 0.15);
    --glow-color: rgba(163, 101, 255, 0.3);
}

.contact-card:hover {
    border-color: transparent;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px) scale(1);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 10px var(--glow-color);
    position: relative;
    z-index: 5;
}

.contact-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-basic-info h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-email {
    color: #9333ea;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-date {
    color: #9ca3af;
    font-size: 0.8rem;
}

.contact-status-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.status-select {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-size: 0.8rem;
}

.delete-btn {
    padding: 0.25rem 0.75rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 4px;
    color: #ef4444;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
}

.contact-message {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.contact-message:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-message p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
    background-color: #010915 !important;
    padding: 1.5rem;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(255, 255, 255, 0.15);
    --glow-color: rgba(163, 101, 255, 0.3);
}

.pagination:hover {
    border-color: transparent;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(0px) scale(1);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 10px var(--glow-color);
    position: relative;
    z-index: 5;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 0.75rem;
    color: #9333ea;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(147, 51, 234, 0.2);
    border-color: #9333ea;
    box-shadow: 0 0 10px rgba(163, 101, 255, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Loading and Empty States */
.loading,
.no-contacts {
    text-align: center;
    padding: 3rem;
    color: #9ca3af;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-management {
        padding: 1rem;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .filters-section {
        flex-direction: column;
    }

    .filter-group {
        min-width: auto;
    }

    .contact-header-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-status-section {
        align-items: flex-start;
        width: 100%;
    }

    .status-actions {
        width: 100%;
        justify-content: space-between;
    }

    .pagination {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-basic-info h3 {
        font-size: 1.1rem;
    }
}
.login-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e142f;
  background: radial-gradient(circle, #7214ff40 0, #0e142f 100%);
  backdrop-filter: blur(4px);
  padding: 1rem;
  box-sizing: border-box;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.login-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.login-background-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 9, 21, 0.4);
  backdrop-filter: blur(4px);
}

.login-card {
  max-width: 28rem;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733));
  background-color: #010915;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  overflow: hidden;
  animation: slideUp 0.4s ease;
  position: relative;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(163, 101, 255, 0.05) 0%, rgba(163, 101, 255, 0.02) 100%);
  pointer-events: none;
  border-radius: 0.75rem;
}

.login-close-btn {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: rgba(1, 9, 21, 0.8);
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(163, 101, 255, 0.3);
}

.login-close-btn:hover {
  background: rgba(163, 101, 255, 0.2);
  transform: scale(1.1);
  border-color: rgba(163, 101, 255, 0.5);
}

.login-close-btn:active {
  transform: scale(0.95);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .login-card {
    padding: 1.5rem;
    margin: 0 1rem;
    max-width: calc(100% - 2rem);
  }
}

.login-header {
  margin-bottom: 2rem;
}

.login-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .login-title {
    font-size: 1.5rem;
  }
}

.login-form {
  margin-top: 2rem;
}

.login-form-group {
  margin-bottom: 1rem;
}

.login-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.login-input {
  margin-top: 0.25rem;
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(75, 85, 99, 0.6);
  border-radius: 0.5rem;
  background-color: rgba(1, 9, 21, 0.8);
  color: white;
  outline: none;
  box-sizing: border-box;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.login-input:focus {
  border-color: #a365ff;
  background-color: rgba(1, 9, 21, 0.9);
  transform: translateY(-1px);
}

.login-button {
  width: 100%;
  padding: 0.75rem 2.5rem;
  background-color: #a365ff;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.login-button:hover {
  background-color: #8b5cf6;
}

.login-button:active {
  transform: scale(0.95);
}

.login-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(163, 101, 255, 0.3);
}

.login-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.login-switch {
  margin-top: 1.5rem;
  text-align: center;
}

.login-switch button {
  background: none;
  border: none;
  color: #a365ff;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login-switch button:hover {
  text-decoration: none;
  color: #8b5cf6;
} .showtime-selection-page {
  min-height: 100vh;
  background-color: #09090B;
  color: white;
  padding-top: 7rem;
}

@media (min-width: 768px) {
  .showtime-selection-page {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .showtime-selection-page {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

/* Two Column Layout */
.showtime-container {
  display: flex;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 7rem);
}

/* Left Column - Movie Poster */
.showtime-poster-column {
  flex: 0 0 auto;
  position: sticky;
  top: 7rem;
  height: fit-content;
  display: flex;
  align-items: flex-start;
}

.showtime-poster-container {
  position: relative;
  width: auto;
  height: calc(100vh - 9rem);
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.showtime-movie-poster-large {
  width: auto;
  height: calc(100vh - 9rem);
  object-fit: contain;
  display: block;
}

.showtime-movie-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  color: white;
}

.showtime-movie-title-large {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  line-height: 1.2;
}

.showtime-movie-meta-large {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.showtime-movie-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.showtime-rating-label {
  color: #9ca3af;
  font-size: 0.8rem;
}

.showtime-rating-value {
  color: #a365ff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Right Column - Selection Details */
.showtime-details-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Date Selection Section */
.showtime-date-section {
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
  background-color: #010915 !important;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.showtime-date-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(163, 101, 255, 0.05) 0%, rgba(163, 101, 255, 0.02) 100%);
  pointer-events: none;
  border-radius: 0.75rem;
}

.showtime-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.showtime-date-picker {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1;
}

.showtime-date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background: linear-gradient(145deg, rgba(14, 20, 47, 0.8), rgba(1, 9, 21, 0.9)) !important;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 5rem;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.showtime-date-btn:hover {
  background: linear-gradient(145deg, rgba(163, 101, 255, 0.2), rgba(139, 92, 246, 0.15)) !important;
  box-shadow: 0 6px 12px rgba(163, 101, 255, 0.2);
  transform: translateY(-1px);
}

.showtime-date-btn.selected {
  background: linear-gradient(145deg, #a365ff, #8b5cf6) !important;
  color: white;
  box-shadow: 0 6px 12px rgba(163, 101, 255, 0.3);
}

.showtime-date-btn.has-shows {
  border-color: #a365ff;
  background-color: rgba(163, 101, 255, 0.1);
}

.showtime-date-btn.has-shows:hover {
  border-color: #a365ff;
  background-color: rgba(163, 101, 255, 0.2);
}

.showtime-date-btn.no-shows {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #4b5563;
  color: #6b7280;
}

.showtime-date-btn.no-shows:hover {
  background-color: rgba(31, 41, 55, 0.8);
  transform: none;
}

.showtime-has-shows-indicator {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  color: #a365ff;
  font-size: 0.5rem;
}

.showtime-date-day {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.showtime-date-number {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.showtime-date-month {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Theatre Selection Section */
.showtime-theatre-section {
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.showtime-theatre-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(163, 101, 255, 0.05) 0%, rgba(163, 101, 255, 0.02) 100%);
  pointer-events: none;
  border-radius: 1rem;
}

.showtime-theatre-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.showtime-no-theatres {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  padding: 2rem;
}

.showtime-theatre-item {
  width: 100%;
}

.showtime-theatre-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(31, 41, 55, 0.8);
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.showtime-theatre-btn:hover {
  border-color: #a365ff;
  background-color: rgba(163, 101, 255, 0.1);
}

.showtime-theatre-btn.selected {
  background-color: #a365ff;
  border-color: #a365ff;
  color: white;
}

.showtime-theatre-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.showtime-theatre-name {
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}

.showtime-theatre-count {
  font-size: 0.75rem;
  color: inherit;
  opacity: 0.8;
}

/* Theatre and Showtime Selection Section */
.showtime-theatre-showtime-section {
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
  background-color: #010915 !important;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.showtime-theatre-showtime-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(163, 101, 255, 0.05) 0%, rgba(163, 101, 255, 0.02) 100%);
  pointer-events: none;
  border-radius: 0.75rem;
}

.showtime-theatre-showtime-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.showtime-theatre-showtime-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.showtime-theatre-showtime-item:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.showtime-theatre-name-section {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.showtime-theatre-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.showtime-showtimes-section {
  flex: 1;
}

.showtime-showtimes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

/* Time Selection Section */
.showtime-time-section {
  background: rgba(31, 41, 55, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.showtime-time-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(163, 101, 255, 0.05) 0%, rgba(163, 101, 255, 0.02) 100%);
  pointer-events: none;
  border-radius: 1rem;
}

.showtime-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.showtime-time-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  background: transparent;
  color: #a365ff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
}

.showtime-time-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #a365ff;
}

.showtime-time-btn.selected {
  border-color: #a365ff;
  background: rgba(163, 101, 255, 0.1);
  color: #a365ff;
}

.showtime-time-btn.unavailable {
  border-color: #4b5563;
  color: #6b7280;
  cursor: not-allowed;
}

.showtime-time-btn.unavailable:hover {
  background-color: rgba(31, 41, 55, 0.8);
  color: #6b7280;
}

.showtime-time {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.showtime-format {
  font-size: 0.75rem;
  font-weight: 500;
}

/* New showtime slot layout */
.showtime-slot-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.showtime-theatre {
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 500;
}

.showtime-screen {
  font-size: 0.65rem;
  color: #9ca3af;
}

.showtime-language {
  font-size: 0.65rem;
  color: #10B981;
  font-weight: 500;
}

/* Book Seats Button */
.showtime-book-section {
  padding: 2rem 0;
  text-align: center;
}

.showtime-book-btn {
  padding: 0.75rem 2.5rem;
  background-color: #a365ff;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.showtime-book-btn:hover {
  background-color: #8b5cf6;
}

.showtime-book-btn:active {
  transform: scale(0.95);
}

.showtime-book-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(163, 101, 255, 0.3);
}

.showtime-book-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .showtime-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .showtime-poster-column {
    flex: none;
    position: static;
    height: auto;
  }
  
  .showtime-poster-container {
    max-width: 400px;
    margin: 0 auto;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .showtime-movie-info {
    flex-direction: column;
    text-align: center;
  }
  
  .showtime-date-picker {
    gap: 0.5rem;
  }
  
  .showtime-date-btn {
    min-width: 4rem;
    padding: 0.75rem 1rem;
  }
  
  .showtime-theatre-btn {
    padding: 0.75rem 1rem;
  }
  
  .showtime-theatre-name {
    font-size: 0.875rem;
  }
  
  .showtime-theatre-count {
    font-size: 0.7rem;
  }
  
  .showtime-time-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
  }
  
  .showtime-poster-container {
    max-width: 300px;
    height: 400px;
  }
  
  /* Mobile responsive for theatre-showtime layout */
  .showtime-theatre-showtime-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .showtime-theatre-name-section {
    flex: none;
    width: 100%;
  }
  
  .showtime-showtimes-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
  }
}

.showtime-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  color: white;
  font-size: 1.125rem;
}

.showtime-error {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  color: #ef4444;
  font-size: 1.125rem;
  text-align: center;
}

.showtime-date-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #4b5563;
  color: #6b7280;
}

.showtime-date-btn.disabled:hover {
  background-color: rgba(31, 41, 55, 0.8);
  transform: none;
} /* Main Container */
.search-page-container {
  min-height: 100vh;
  background-color: #060010; /* Updated to match website theme */
  color: white;
  display: flex;
  flex-direction: column;
}

.search-page {
  padding: 20px 4.5%;
  flex: 1;
  margin-top: 80px; /* Add margin to push content below navbar */
}

/* Search bar */
.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.search-bar input {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 20, 47, 0.8);
  color: #d1d5db;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.search-bar input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  background: rgba(14, 20, 47, 0.95);
}

.search-bar input::placeholder {
  color: #9ca3af;
}

.search-bar button {
  padding: 12px 20px;
  background: #a365ff;
  border: 1px solid #a365ff;
  border-radius: 0.5rem;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.search-bar button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.search-body {
  display: flex;
  gap: 24px;
}

/* Filters Panel */
.filters-panel {
  width: 280px;
  background: linear-gradient(145deg, #010915, rgba(14, 20, 47, 0.9733)) !important;
  background-color: #010915 !important;
  padding: 20px;
  border-radius: 0.75rem;
  height: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(1, 9, 21, 0.6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filters-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.05),
      transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.filters-panel:hover::before {
  opacity: 1;
}

.filters-panel h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #d1d5db; /* Updated to match ChromaMovieCard text color */
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.filter-subtitle {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.filter-group {
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(14, 20, 47, 0.3);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.filter-group:hover {
  background: rgba(14, 20, 47, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.filter-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Filter Options */
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-option {
  padding: 8px 12px;
  background: rgba(14, 20, 47, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #d1d5db;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* Hover effect removed */

.filter-option.selected {
  background: #a365ff;
  border-color: #a365ff;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(163, 101, 255, 0.4);
}

/* Content Panel */
.content-panel {
  flex: 1;
}

/* Movie results */
.results-panel {
  flex: 1;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px 0;
  justify-items: center;
  align-items: start;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.no-results p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.no-results p:first-child {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d1d5db;
}

.loading-message {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  color: #9ca3af;
  font-size: 1.1rem;
  text-align: center;
}

.loading-message p {
  margin: 0;
  padding: 20px;
  background: rgba(14, 20, 47, 0.3);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .search-body {
    flex-direction: column;
    gap: 20px;
  }
  
  .filters-panel {
    width: 100%;
    order: 2;
  }
  
  .content-panel {
    order: 1;
  }
  
  .filter-options {
    gap: 6px;
  }
  
  .filter-option {
    padding: 6px 10px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .search-page {
    padding: 15px 3%;
    margin-top: 70px;
  }
  
  .search-bar {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .search-bar input {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .search-bar button {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .filters-panel {
    padding: 15px;
  }
  
  .filter-group {
    padding: 10px;
    margin-bottom: 15px;
  }
  
  .search-results-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .search-page {
    padding: 10px 2%;
    margin-top: 60px;
  }
  
  .search-body {
    gap: 15px;
  }
  
  .filters-panel {
    padding: 12px;
  }
  
  .filter-group {
    padding: 8px;
    margin-bottom: 12px;
  }
  
  .filter-options {
    gap: 5px;
  }
  
  .filter-option {
    padding: 5px 8px;
    font-size: 10px;
  }
  
  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    justify-items: center;
  }
} .cancel-ticket-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cancel-ticket-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.cancel-ticket-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cancel-ticket-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cancellation-policy {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.cancellation-policy h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.policy-details p {
    margin-bottom: 10px;
    color: #555;
}

.policy-restrictions {
    margin-top: 15px;
}

.policy-restrictions ul {
    margin: 10px 0;
    padding-left: 20px;
}

.policy-restrictions li {
    margin-bottom: 5px;
    color: #666;
}

.no-bookings {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 60px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.no-bookings-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.no-bookings h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.no-bookings p {
    color: #666;
    margin-bottom: 30px;
}

.browse-movies-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.browse-movies-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.bookings-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.booking-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.booking-card.cancelled {
    border-color: #ef4444;
    opacity: 0.7;
}

.booking-card.passed {
    border-color: #f59e0b;
    opacity: 0.8;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.booking-status {
    font-weight: 600;
    font-size: 0.9rem;
}

.status-active {
    color: #10b981;
    background: #d1fae5;
    padding: 5px 12px;
    border-radius: 20px;
}

.status-cancelled {
    color: #ef4444;
    background: #fee2e2;
    padding: 5px 12px;
    border-radius: 20px;
}

.status-passed {
    color: #f59e0b;
    background: #fef3c7;
    padding: 5px 12px;
    border-radius: 20px;
}

.booking-id {
    font-size: 0.8rem;
    color: #666;
    font-family: monospace;
}

.booking-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.movie-info h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.theatre-name {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.value {
    color: #333;
    font-size: 0.9rem;
}

.refund-amount {
    color: #10b981;
    font-weight: 600;
}

.booking-actions {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.cancel-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.cancel-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.cancel-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cannot-cancel, .already-cancelled {
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.cancel-ticket-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: white;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cancel-ticket-container {
        padding: 15px;
    }

    .cancel-ticket-header h1 {
        font-size: 2rem;
    }

    .bookings-list {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 20px;
    }

    .booking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .cancel-ticket-header h1 {
        font-size: 1.8rem;
    }

    .booking-card {
        padding: 15px;
    }

    .movie-info h3 {
        font-size: 1.1rem;
    }
} .about-us {
  min-height: 100vh;
  background: #0e142f;
  background: radial-gradient(circle, #7214ff40 0, #0e142f 100%);
  color: #d1d5db;
  padding: 80px 4rem 4rem 4rem; /* Increased left/right padding */
}

.about-hero {
  padding: 4rem 3rem 3rem; /* Increased padding */
  text-align: left;
  position: relative;
  margin-top: 20px; /* Additional margin from top */
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0;
  text-align: left;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.about-hero p {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 0;
  line-height: 1.6;
  text-align: left;
}

.about-content {
  margin: 0;
  padding: 3rem 3rem; /* Increased padding */
}

.about-section {
  margin-bottom: 3rem; /* Increased margin */
  text-align: left;
}

.about-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem; /* Increased margin */
  text-align: left;
}

.about-section p {
  font-size: 0.9rem; /* Reduced from 1rem to 0.9rem */
  line-height: 1.6;
  color: #9ca3af;
  text-align: left;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us {
    padding: 70px 2rem 0 2rem; /* Increased padding for mobile */
  }

  .about-hero {
    padding: 3rem 2rem 2rem; /* Increased padding */
    margin-top: 15px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-content {
    padding: 2rem 2rem; /* Increased padding */
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 0.85rem; /* Reduced from 0.9rem to 0.85rem */
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 60px 1rem 0 1rem; /* Increased padding for small screens */
  }

  .about-hero {
    margin-top: 10px;
  }

  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero p {
    font-size: 0.9rem;
  }

  .about-section h2 {
    font-size: 1.4rem;
  }

  .about-section p {
    font-size: 0.8rem; /* Reduced for mobile */
  }
} .contact-us {
  min-height: 100vh;
  background: #0e142f;
  background: radial-gradient(circle, #7214ff40 0, #0e142f 100%);
  color: #d1d5db;
  padding: 80px 4rem 4rem 4rem;
  display: flex;
  align-items: center;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-intro {
  max-width: 500px;
}

.contact-subtitle {
  color: #a855f7;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-description {
  font-size: 1.1rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info {
  margin-top: 2rem;
}

.contact-location,
.contact-email {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-right {
  display: flex;
  align-items: center;
}

.contact-form {
  width: 100%;
  max-width: 500px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #a855f7;
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #a855f7;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
    gap: 3rem;
  }

  .contact-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-us {
    padding: 70px 2rem 0 2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-description {
    font-size: 1rem;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-us {
    padding: 60px 1rem 0 1rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }

  .contact-description {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
} .payment-success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.payment-success-content {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.success-circle {
    width: 80px;
    height: 80px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    animation: scaleIn 0.6s ease-out;
}

.success-tick {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    animation: tickIn 0.8s ease-out 0.3s both;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes tickIn {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.payment-success-content h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.go-home-btn {
    padding: 0.75rem 2rem;
    background: #10B981;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.go-home-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(16, 185, 129, 0.3);
    border-top: 4px solid #10B981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Responsive design */
@media (max-width: 640px) {
    .payment-success-container {
        padding: 1rem;
    }
    
    .payment-success-content {
        padding: 2rem 1.5rem;
    }
    
    .payment-success-content h1 {
        font-size: 1.5rem;
    }
    
    .success-circle {
        width: 60px;
        height: 60px;
    }
    
    .success-tick {
        font-size: 2rem;
    }
}
