:root {
  --red: #E50914;
  --red-hover: #b80710;
  --bg-main: #0a0a0a;
  --bg-card: #18181b;
  --bg-elevated: #27272a;
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --border: #3f3f46;
}

html, body { scroll-behavior: smooth; overflow-x: hidden; width: 100%; max-width: 100vw; }
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, sans-serif; }
body { background-color: var(--bg-main); color: var(--text-main); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; }
.section-title { font-size: 2.5rem; margin-bottom: 3rem; text-align: center; text-transform: uppercase; letter-spacing: 2px; }
.section-title span { color: var(--red); }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 4rem; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.navbar.hidden { transform: translateY(-100%); }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; text-decoration: none; color: var(--red); font-size: 2rem; }
.nav-logo i { font-size: 2.5rem; }
.nav-logo h1 { margin: 0; text-transform: uppercase; letter-spacing: 2px; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: all 0.3s; cursor: pointer; display: inline-block; }
.nav-links a:hover { color: var(--red); transform: translateY(-2px); text-shadow: 0 4px 12px rgba(229,9,20,0.4); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }

.btn-primary { background: var(--red); color: white; border: none; padding: 0.6rem 1.5rem; border-radius: 4px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s; font-size: 0.95rem; }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(229,9,20,0.3); }
.btn-outline { background: transparent; color: white; border: 1px solid var(--border); padding: 0.6rem 1.5rem; border-radius: 4px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: all 0.2s; font-size: 0.95rem; }
.btn-outline:hover { background: rgba(255,255,255,0.05); }

/* Hero Section */
.hero { position: relative; height: 90vh; display: flex; align-items: center; padding: 0 4rem; background: url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #0a0a0a 0%, rgba(10,10,10,0.8) 40%, transparent 100%), linear-gradient(0deg, #0a0a0a 0%, transparent 20%); }
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-badge { display: inline-block; background: rgba(229,9,20,0.2); color: var(--red); padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: bold; margin-bottom: 1rem; border: 1px solid var(--red); }
.hero-title { font-size: 5rem; line-height: 1.1; margin-bottom: 1rem; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; }

/* Container & Layout */
.container { max-width: 1400px; margin: 0 auto; padding: 6rem 4rem; }
.view-section { display: none; }
.view-section.active { display: block; }

/* Tickets View specific spacing */
.tickets-wrapper { padding-top: 150px; }

/* Movies Grid */
.movie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.movie-card { background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; cursor: pointer; position: relative; }
.movie-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); border-color: rgba(229,9,20,0.5); }
.poster-wrapper { position: relative; height: 400px; overflow: hidden; }
.poster-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.movie-card:hover .poster-img { transform: scale(1.1); }
.poster-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%); }
.format-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); padding: 0.4rem 0.8rem; border-radius: 4px; font-size: 0.8rem; font-weight: bold; border: 1px solid rgba(255,255,255,0.1); }
.movie-info { padding: 1.5rem; position: relative; z-index: 2; margin-top: -60px; }
.movie-title { font-size: 1.5rem; margin-bottom: 0.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.movie-meta { display: flex; gap: 1rem; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.movie-meta span { display: flex; align-items: center; gap: 0.3rem; }
.btn-book { width: 100%; background: var(--bg-elevated); color: white; border: 1px solid var(--border); padding: 0.8rem; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; justify-content: center; gap: 0.5rem; align-items: center; }
.movie-card:hover .btn-book { background: var(--red); border-color: var(--red); }

/* About & Features */
.about-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-text h2 span { color: var(--red); }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; font-size: 1.1rem; }
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(229, 9, 20, 0.04);
  border-color: rgba(229, 9, 20, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(229, 9, 20, 0.1);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--red);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.feature-item h4 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  color: white;
  transition: color 0.3s ease;
}

.feature-item:hover h4 {
  color: var(--red);
}

.feature-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.about-img { border-radius: 16px; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img::after { content: ''; position: absolute; inset: 0; border: 2px solid var(--red); border-radius: 16px; transform: translate(15px, 15px); z-index: -1; transition: transform 0.3s; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item { position: relative; height: 300px; border-radius: 12px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.75) 0%, rgba(10, 10, 10, 0.85) 100%);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 2px solid #ffffff;
  padding-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

/* Contact Section */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.contact-info { background: var(--bg-card); padding: 3rem; border-radius: 16px; border: 1px solid var(--border); }
.c-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.c-item:last-child { margin-bottom: 0; }
.c-item .icon { width: 50px; height: 50px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.5rem; }
.c-item h4 { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.c-item p { font-size: 1.1rem; font-weight: 500; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.full-width { grid-column: span 2; }
.form-input { width: 100%; padding: 0.8rem 1rem; background: rgba(0,0,0,0.5); border: 1px solid var(--border); color: white; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s; }
.form-input:focus { outline: none; border-color: var(--red); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
textarea.form-input { height: 150px; resize: vertical; }

/* Footer */
.footer { background: #000; padding: 4rem 4rem 2rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; max-width: 1400px; margin-inline: auto; }
.f-col h3 { color: white; margin-bottom: 1.5rem; font-size: 1.2rem; }
.f-col p { color: var(--text-muted); line-height: 1.6; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.f-col ul a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.f-col ul a:hover { color: var(--red); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.9rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* === BOOKING WIZARD MODAL === */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 1rem; }
.modal-overlay.active { display: flex; }
.modal-content { background: var(--bg-main); width: 100%; max-width: 900px; max-height: 90vh; border-radius: 16px; border: 1px solid var(--border); overflow-y: auto; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8); display: flex; flex-direction: column; }
.modal-header { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; background: var(--bg-card); position: sticky; top: 0; z-index: 10; }
.modal-header h2 { font-size: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.modal-header h2 span { color: var(--red); }
.btn-close { background: rgba(255,255,255,0.1); border: none; color: white; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; font-size: 1.2rem; }
.btn-close:hover { background: var(--red); }

/* Wizard Steps */
.wizard-steps { display: flex; padding: 1.5rem 2rem; background: rgba(24,24,27,0.5); gap: 1rem; }
.step-indicator { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; position: relative; }
.step-line { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.step-progress { height: 100%; background: var(--red); width: 0%; transition: width 0.3s; }
.step-indicator.active .step-progress { width: 100%; }
.step-indicator.completed .step-progress { width: 100%; background: #22c55e; }
.step-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.step-indicator.active .step-label { color: white; }

.modal-body { padding: 2rem; }
.wizard-step-content { display: none; }
.wizard-step-content.active { display: block; }
.form-label { display: block; margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.9rem; }

/* Wizard Footer */
.wizard-footer { display: flex; justify-content: space-between; align-items: center; position: relative; margin-top: 1.5rem; }
.order-total-preview { position: absolute; left: 50%; transform: translateX(-50%); font-weight: bold; font-size: 1.1rem; color: var(--text-main); }

.movie-details-flex { display: flex; flex-wrap: nowrap; gap: 1.8rem; padding: 1.5rem 2.5rem; }

/* Seat Map CSS */
.seat-map-wrapper { background: var(--bg-card); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); overflow-x: auto; }
.screen-curve { height: 50px; border-top: 5px solid var(--red); border-radius: 50% 50% 0 0; margin-bottom: 3rem; text-align: center; padding-top: 15px; color: var(--text-muted); letter-spacing: 8px; text-transform: uppercase; font-size: 0.9rem; font-weight: bold; position: relative; box-shadow: 0 -20px 30px rgba(229,9,20,0.1); min-width: 600px; }
.seat-grid { display: flex; flex-direction: column; gap: 1rem; align-items: center; min-width: 600px; }
.seat-row { display: flex; gap: 1rem; align-items: center; }
.row-label { width: 20px; color: var(--text-muted); font-weight: bold; font-size: 0.9rem; }
.seat-group { display: flex; gap: 0.6rem; }
.seat-group.aisle { margin-left: 2rem; margin-right: 2rem; }
.seat { width: 34px; height: 34px; background: #3f3f46; border-radius: 6px 6px 2px 2px; cursor: pointer; transition: all 0.2s; position: relative; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: transparent; border: 1px solid #52525b; }
.seat::after { content: ''; position: absolute; bottom: -6px; left: 10%; right: 10%; height: 5px; background: inherit; border-radius: 2px; }
.seat:hover:not(.occupied) { background: #52525b; transform: translateY(-2px); }
.seat.selected { background: var(--red); border-color: #ff1e27; color: white; box-shadow: 0 0 10px rgba(229,9,20,0.5); }
.seat.selected::after { background: var(--red); }
.seat.occupied { background: #18181b; border-color: #27272a; cursor: not-allowed; opacity: 0.5; }
.seat-legend { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.legend-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.9rem; }
.legend-box { width: 20px; height: 20px; border-radius: 4px; }

/* Snacks Menu */
.snack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.snack-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; text-align: center; display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; transition: border-color 0.2s; }
.snack-card:hover { border-color: rgba(229,9,20,0.5); }
.snack-emoji { font-size: 2.5rem; }
.snack-title { font-size: 0.9rem; font-weight: 600; color: white; margin: 0; }
.snack-price { color: var(--red); font-weight: bold; font-size: 1.1rem; }
.snack-controls { display: flex; align-items: center; justify-content: center; gap: 0.8rem; background: rgba(0,0,0,0.5); padding: 0.4rem; border-radius: 20px; }
.btn-qty { width: 28px; height: 28px; border-radius: 50%; border: none; background: var(--border); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; font-weight: bold; transition: background 0.2s; }
.btn-qty:hover { background: var(--red); }
.btn-qty:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.snack-qty { font-weight: bold; width: 20px; }

.wizard-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* My Tickets UI */
.tickets-wrapper { max-width: 900px; margin: 0 auto; min-height: 60vh; }
.empty-state { text-align: center; padding: 6rem 2rem; background: var(--bg-card); border-radius: 16px; border: 1px dashed var(--border); }
.empty-state p { color: var(--text-muted); margin-top: 1rem; font-size: 1.2rem; }
.ticket-card { display: flex; background: var(--bg-card); border-radius: 16px; margin-bottom: 2rem; position: relative; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.ticket-poster { width: 200px; position: relative; }
.ticket-poster img { width: 100%; height: 100%; object-fit: cover; }
.ticket-info { flex: 1; padding: 2rem; display: flex; flex-direction: column; justify-content: center; border-right: 2px dashed var(--border); position: relative; }
.ticket-info::before, .ticket-info::after { content: ''; position: absolute; width: 30px; height: 30px; background: var(--bg-main); border-radius: 50%; right: -16px; border: 1px solid var(--border); }
.ticket-info::before { top: -16px; border-bottom: none; border-left: none; transform: rotate(45deg); }
.ticket-info::after { bottom: -16px; border-top: none; border-left: none; transform: rotate(-45deg); }
.t-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.t-title { font-size: 2rem; font-weight: bold; color: var(--red); line-height: 1.1; margin-bottom: 0.5rem; }
.t-cinema { color: var(--text-muted); font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.t-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; background: rgba(0,0,0,0.3); padding: 1.5rem; border-radius: 12px; }
.t-data-group p { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; margin-bottom: 0.2rem; }
.t-data-group h4 { font-size: 1.1rem; }
.ticket-barcode { width: 160px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(229,9,20,0.05); }
.barcode-lines { width: 100%; height: 80px; background: repeating-linear-gradient(90deg, #fff, #fff 2px, transparent 2px, transparent 4px, #fff 4px, #fff 5px, transparent 5px, transparent 8px); margin-bottom: 1rem; opacity: 0.8; }

/* GSAP Starter classes */
.gsap-animate { opacity: 0; visibility: hidden; }

/* Cinema Showcase Section */
.cinema-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.cinema-card { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; transition: all 0.3s; }
.cinema-card:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.cinema-banner { height: 200px; position: relative; }
.cinema-banner img { width: 100%; height: 100%; object-fit: cover; }
.cinema-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-card), transparent); }
.cinema-card-content { padding: 2rem; }
.cinema-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.cinema-card-header h3 { font-size: 1.4rem; color: white; }
.cinema-rating { background: #22c55e; color: white; padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; display: flex; align-items: center; gap: 4px; }
.cinema-address { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.4; }
.showtimes-container { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.showtime-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: white; padding: 0.6rem 1rem; border-radius: 6px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.showtime-btn:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.cinema-about { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 1rem; height: 3.2em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-clamp: 2; }
.cinema-section { background: rgba(255,255,255,0.02); border-radius: 30px; margin-bottom: 6rem; }
.cinema-tag { font-size: 0.8rem; font-weight: bold; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 5px; margin-bottom: 1rem; }
.cinema-shows-list { display: flex; flex-direction: column; gap: 1rem; max-height: 250px; overflow-y: auto; padding-right: 8px; }
.cinema-shows-list::-webkit-scrollbar { width: 6px; }
.cinema-shows-list::-webkit-scrollbar-track { background: transparent; }
.cinema-shows-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.cinema-shows-list::-webkit-scrollbar-thumb:hover { background: var(--red); }
.cinema-movie-row { padding: 1.2rem; background: rgba(0,0,0,0.3); border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.cinema-movie-title { font-size: 0.95rem; font-weight: bold; color: white; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.cinema-movie-title::before { content: ''; width: 3px; height: 14px; background: var(--red); border-radius: 2px; }
.showtimes-container { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Support Modal */
.support-tabs { 
  padding: 1rem 2rem; 
  background: var(--bg-card); 
  border-bottom: 1px solid var(--border); 
  overflow-x: auto; 
  display: flex;
  gap: 1rem;
  position: sticky; 
  top: 81px; /* Matches header height */
  z-index: 9;
  scrollbar-width: thin;
}
.support-tabs::-webkit-scrollbar { height: 4px; }
.support-tab-content { display: none; }
.support-tab-content.active { display: block; }
.btn-outline.active-tab { background: var(--red); border-color: var(--red); color: white; }
.support-modal-body { padding: 2.5rem 2rem; line-height: 1.6; color: var(--text-muted); }
.support-modal-body h3 { color: white; margin-bottom: 1.5rem; }
.support-modal-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--border); text-align: right; background: var(--bg-card); }

/* --- Responsive Fixes & Mobile Menu --- */
.mobile-nav-toggle { display: none; background: transparent; border: none; color: white; font-size: 2rem; cursor: pointer; z-index: 101; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.8rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mobile-menu a:hover { color: var(--red); }

@media (max-width: 1200px) {
  .hero-title { font-size: 4rem; }
  .container { padding: 4rem 2rem; }
}

@media (max-width: 1024px) {
  .navbar { padding: 1rem 2rem; }
  .hero { height: 75vh; padding: 0 2rem; }
  .hero-title { font-size: 3.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; }
  .mobile-nav-toggle { display: block; }
  .nav-links { display: none; }
  .hero { height: 65vh; text-align: center; justify-content: center; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 2.5rem; }
  .hero-desc { font-size: 1rem; }
  .container { padding: 4rem 1.5rem; }
  .section-title { font-size: 2rem; margin-bottom: 2rem; }
  .movie-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .column-2, .column-3, .column-4 { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-info { padding: 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .c-item { flex-direction: column; justify-content: center; gap: 0.8rem; text-align: center; margin-bottom: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid .f-col { align-items: flex-start; display: flex; flex-direction: column; }
  
  .modal-content { max-width: 100%; height: 100%; border-radius: 0; }
  .modal-body { padding: 1.5rem; }
  .wizard-steps { padding: 1rem; }
  .step-label { display: none; }
  
  .movie-details-flex { flex-direction: column; align-items: center; padding: 1.5rem 1rem; text-align: center; }
  .movie-details-flex > div:first-child { width: 140px !important; margin: 0 auto 1rem !important; }
  
  .ticket-card { flex-direction: column; }
  .ticket-poster { width: 100%; height: 250px; }
  .ticket-info { border-right: none; border-bottom: 2px dashed var(--border); padding: 1.5rem; }
  .ticket-info::before, .ticket-info::after { display: none; }
  .t-details-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ticket-barcode { width: 100%; flex-direction: row; justify-content: space-between; padding: 1.5rem; }
  .barcode-lines { width: 100px; height: 40px; margin: 0; }
  
  .cinema-grid { grid-template-columns: 1fr; }
  .cinema-banner { height: 180px; }

  /* Seat map mobile overrides */
  .seat-map-wrapper { padding: 1rem; overflow-x: hidden; }
  .screen-curve { min-width: 100%; width: 100%; font-size: 0.6rem; letter-spacing: 3px; margin-bottom: 2rem; }
  .seat-grid { min-width: 100%; width: 100%; gap: 0.4rem; transform: none; }
  .seat-row { gap: 0.4rem; justify-content: center; }
  .seat-group { gap: 0.2rem; }
  .seat-group.aisle { margin-left: 0.5rem; margin-right: 0.5rem; }
  .seat { width: 18px; height: 18px; font-size: 0; }
  .seat::after { bottom: -3px; height: 3px; }
  .row-label { width: 12px; font-size: 0.65rem; }
  .seat-legend { gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .nav-logo h1 { font-size: 1.5rem; }
  .navbar { padding: 1rem 1rem; }
  .hero { padding: 0 1rem; }
  .container { padding: 3rem 1rem; }
  .movie-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .t-details-grid { grid-template-columns: 1fr; }
  .seat-map-wrapper { padding: 1rem 0.5rem; }
  .seat { width: 16px; height: 16px; }
  .seat-group.aisle { margin-left: 0.25rem; margin-right: 0.25rem; }
  .support-tabs { top: 60px; padding: 0.8rem 1rem; }
  
  .wizard-footer { flex-wrap: wrap; justify-content: space-between; }
  .order-total-preview { position: static; transform: none; order: -1; width: 100%; text-align: center; margin-bottom: 1rem; font-size: 1.2rem; }
}

/* Extra support tab content styles from bottom block */
.support-tab-content { display: none; }
.support-tab-content.active { display: block; }
.btn-outline.active-tab { background: var(--red); border-color: var(--red); color: white; }

/* Glowing Button Styles */
.glowing-btn {
  position: relative;
  overflow: hidden !important;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  height: 44px;
  padding: 0 1.8rem;
  border-radius: 6px;
  background: var(--red);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.glowing-btn.lg {
  height: 54px;
  padding: 0 2.5rem;
  border-radius: 8px;
}

.glowing-btn .text-wrapper {
  display: flex;
  flex-direction: column;
  height: 200%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.glowing-btn:hover .text-wrapper {
  transform: translateY(-50%);
}

.glowing-btn .text-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  width: 100%;
  gap: 0.5rem;
}

.glowing-btn:hover {
  transform: translateY(-2px);
  background-color: var(--red-hover);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.7), 
              0 0 40px rgba(229, 9, 20, 0.4);
}

.glowing-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.glowing-btn:hover::after {
  left: 150%;
}

/* Footer Logo scale-up hover effect */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--red);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center; /* Scales from the left side so it doesn't shift the layout */
}

.footer-logo i {
  font-size: 2.5rem;
}

.footer-logo h1 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
}

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

/* Footer Large Brand Header Styles */
.footer-brand-header {
  max-width: 1400px;
  margin: 0 auto 3rem auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.footer-brand-header .footer-dot {
  width: 12px;
  height: 12px;
  background-color: var(--red);
  border-radius: 50%;
  margin-bottom: 1rem;
  margin-left: 0;
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.8), 0 0 20px rgba(229, 9, 20, 0.4);
}

.footer-brand-header .footer-large-title {
  font-size: 7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  user-select: none;
}

/* Interactive Cursor-Tracking Spotlight Text Styles */
.spotlight-text {
  color: rgba(255, 255, 255, 0.03); /* Subtle hollow background fill */
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.12);
  position: relative;
  display: inline-block;
  user-select: none;
}

.spotlight-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  
  /* Radial glow positioned dynamically by JS with theme colors */
  background: radial-gradient(
    circle 120px at var(--glow-x, -500px) var(--glow-y, -500px), 
    #ff3830 0%, 
    var(--red) 45%, 
    var(--red-hover) 80%, 
    transparent 100%
  );
  
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0px;
  pointer-events: none;
  filter: drop-shadow(0 0 15px rgba(229, 9, 20, 0.75));
  transition: background 0.05s ease; 
}

@media (max-width: 1200px) {
  .footer-brand-header .footer-large-title {
    font-size: 5.5rem;
  }
}

@media (max-width: 768px) {
  .footer-brand-header {
    margin-bottom: 2rem;
    align-items: flex-start;
  }
  .footer-brand-header .footer-dot {
    margin-left: 0;
  }
  .footer-brand-header .footer-large-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 480px) {
  .footer-brand-header .footer-large-title {
    font-size: 2.6rem;
  }
}


/* Custom Cursor Dot */
.custom-cursor {
  width: 16px;
  height: 16px;
  background-color: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.6);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

/* Hovering State on Interactive Elements */
.custom-cursor.hovering {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
