body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #333);
    margin: 0;
    padding: 20px;
    text-align: center;
    color: #ffd700;
  }
  
  h1, h2, .book-btn, .input-group label, .footer-title {
    font-family: 'Montserrat', Arial, sans-serif;
  }
  
  h1 {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ff0;
    animation: glow 2s ease-in-out infinite alternate;
    font-weight: 700;
  }
  
  .animated-heading {
    font-size: 3rem;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ff0, 0 0 30px #ff0;
    animation: cinematicGlow 3s ease-in-out infinite, pulse 3s ease-in-out infinite;
  }
  
  @keyframes cinematicGlow {
    0% {
      color: #ffd700;
      text-shadow: 0 0 10px #ffd700, 0 0 20px #ff0, 0 0 30px #ff0;
    }
    50% {
      color: #ff0;
      text-shadow: 0 0 20px #ff0, 0 0 30px #ffd700, 0 0 40px #ff0;
    }
    100% {
      color: #ffd700;
      text-shadow: 0 0 10px #ffd700, 0 0 20px #ff0, 0 0 30px #ff0;
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes glow {
    from {
      text-shadow: 0 0 5px #ffd700, 0 0 10px #ff0;
    }
    to {
      text-shadow: 0 0 20px #ffd700, 0 0 30px #ff0;
    }
  }
  
  #theater-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    justify-content: center;
  }
  
  .theater {
    background: #222;
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .theater:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
  }
  
  .theater h2 {
    margin: 0.5rem 0;
    color: #ffd700;
    font-weight: 700;
  }
  
  .theater p {
    color: #fff;
  }
  
  .book-btn {
    background: linear-gradient(45deg, #ffd700, #ff0);
    color: #1a1a1a;
    border: none;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.7);
  }
  
  .book-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
  }
  
  .login-link {
    display: inline-block;
    margin-top: 20px;
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .login-link:hover {
    color: #ff0;
  }
  
  /* Login Page Styles */
  .login-body {
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    animation: bgGlow 5s ease-in-out infinite alternate;
  }
  
  @keyframes bgGlow {
    from {
      background: linear-gradient(135deg, #1a1a1a, #333);
    }
    to {
      background: linear-gradient(135deg, #2a2a2a, #444);
    }
  }
  
  .glowing-heading {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ff0;
    animation: glow 2s ease-in-out infinite alternate;
    font-weight: 700;
  }
  
  .login-container {
    background: #222;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    width: 300px;
    border: 2px solid #ffd700;
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .input-group label {
    color: #ffd700;
    margin-bottom: 0.3rem;
    font-weight: 700;
  }
  
  .input-group input {
    padding: 0.5rem;
    border: 1px solid #ffd700;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .input-group input:focus {
    outline: none;
    border-color: #ff0;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  }
  
  .login-btn {
    background: linear-gradient(45deg, #ffd700, #ff0);
    color: #1a1a1a;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
  }
  
  /* Footer Styles */
  .footer {
    margin-top: 2rem;
    padding: 1rem;
    background: #222;
    border-top: 2px solid #ffd700;
    color: #ffd700;
    font-family: 'Open Sans', Arial, sans-serif;
  }
  
  .footer-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .footer p {
    margin: 0.3rem 0;
  }
  
  .footer a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ff0;
  }
  
  /* Seat Booking Styles */
  .seat-container {
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
  }
  
  #seat-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .seat {
    background: #333;
    border: 2px solid #ffd700;
    border-radius: 5px;
    padding: 0.5rem;
    color: #ffd700;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  
  .seat:hover {
    background: #444;
    transform: scale(1.1);
  }
  
  .seat.selected {
    background: #28a745;
    border-color: #fff;
  }
  
  #price-display {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #ffd700;
    font-size: 1.2rem;
    margin: 1rem 0;
    min-height: 2rem;
  }

  /* Payment Page Styles */
  .payment-body {
    background: linear-gradient(135deg, #1a1a1a, #333);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .payment-container {
    background: #222;
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }

  .booking-summary {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
    border: 1px solid #444;
  }

  .booking-summary h2 {
    color: #ffd700;
    margin-top: 0;
    border-bottom: 1px solid #444;
    padding-bottom: 0.5rem;
  }

  .booking-summary p {
    color: #fff;
    margin: 0.5rem 0;
  }

  .total-amount {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
    border: 1px solid #ffd700;
  }

  .total-amount h3 {
    margin: 0;
    color: #ffd700;
    font-size: 1.5rem;
  }


  .cancel-btn {
    background: #444;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    margin-top: 1rem;
    width: 100%;
    transition: background-color 0.3s;
  }

  .cancel-btn:hover {
    background: #666;
  }

  /* Confirmation Page Styles */
  .confirmation-body {
    background: linear-gradient(135deg, #1a1a1a, #333);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .confirmation-container {
    background: #222;
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
  }

  .confirmation-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
  }

  .booking-details {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid #444;
  }

  .booking-details h2 {
    color: #4CAF50;
    margin-top: 0;
    border-bottom: 1px solid #444;
    padding-bottom: 0.5rem;
  }

  .booking-details p {
    margin: 1rem 0;
    color: #fff;
  }

  .highlight {
    color: #4CAF50 !important;
    font-weight: bold;
  }

  /* Row labels for seats */
  .row-label {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
  }

  /* Selected seats display */
  .selected-seats {
    margin: 1rem 0;
    padding: 0.5rem;
    min-height: 1.5rem;
    color: #ffd700;
    font-weight: bold;
  }