/* Nuovo Cinema Italia & Multisala Bertola - Modern Responsive Cinema Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
  --bg-dark: #5B5B5B;
  --bg-wrapper: #0a0c10;
  --bg-card: #15181e;
  --bg-card-alt: #1c2028;
  --bg-banner: #232732;
  --text-main: #f0f2f5;
  --text-muted: #a0a6b5;
  --cinema-gold: #ffd200;
  --cinema-gold-hover: #ffea75;
  --cinema-gold-dark: #cca800;
  --cinema-red: #b91c1c;
  --cinema-red-dark: #881313;
  --cinema-blue: #38bdf8;
  --cinema-green: #34d399;
  --border-color: #2a303c;
  --border-highlight: rgba(255, 210, 0, 0.3);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.7);
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.5);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  background-image: url('../images/body_bg.jpg');
  background-repeat: repeat;
  background-position: left top;
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  color: var(--cinema-gold);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SUPERCONTAINER WITH ORIGINAL FILM REEL BACKGROUND */
#supercontainer {
  width: 1146px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  background-image: url('../images/bg_banner.jpg');
  background-repeat: repeat-y;
  background-position: center top;
  padding: 0 45px; /* Exposes the 45px left & right filmstrip borders of bg_banner.jpg */
  box-sizing: border-box;
}

/* Main Content Container inside Supercontainer */
.site-wrapper {
  max-width: 1056px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--bg-wrapper);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.95);
  border-left: 1px solid #1a1e27;
  border-right: 1px solid #1a1e27;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Area */
.site-header {
  text-align: center;
  background: linear-gradient(180deg, #020304 0%, #11141a 100%);
  border-bottom: 2px solid var(--cinema-gold-dark);
  position: relative;
}

.header-logo-wrap {
  padding: 22px 15px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-main-logo {
  max-height: 85px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.8));
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.site-logo-text .logo-main {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--cinema-gold);
  letter-spacing: 2px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.9);
}

.site-logo-text .logo-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Info Ticker Bar */
.info-ticker {
  background-color: #0c0f16;
  color: var(--cinema-gold);
  font-family: 'Oswald', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 18px;
  border-top: 1px solid #232a3a;
  border-bottom: 1px solid #232a3a;
  text-align: center;
  line-height: 1.45;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* Navigation */
.main-navigation {
  background-color: #171b24;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav-item {
  flex: 1;
  text-align: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  color: #e2e8f0;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cinema-gold);
  background-color: rgba(255, 210, 0, 0.06);
  border-bottom-color: var(--cinema-gold);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cinema-gold);
  font-size: 24px;
  padding: 12px;
  cursor: pointer;
}

/* Red Label Ribbon Banner */
.ribbon-banner {
  background: linear-gradient(90deg, var(--cinema-red-dark) 0%, var(--cinema-red) 50%, var(--cinema-red-dark) 100%);
  color: #ffffff;
  padding: 14px 22px;
  margin: 22px 15px 18px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: 0 4px 18px rgba(185, 28, 28, 0.4);
  border: 1px solid #dc2626;
}

.ribbon-banner h1,
.ribbon-banner h2 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.ribbon-banner a {
  color: var(--cinema-gold);
  text-decoration: underline;
}

/* Newsletter Callout Box */
.newsletter-box {
  background: linear-gradient(135deg, #1d212b 0%, #13161c 100%);
  border: 1px solid #384255;
  border-left: 5px solid var(--cinema-gold);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 18px 15px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.newsletter-text p {
  color: #f1f5f9;
  font-size: 15.5px;
  line-height: 1.55;
}

.newsletter-text strong {
  color: var(--cinema-gold);
}

.btn-newsletter {
  background: linear-gradient(180deg, #ffd700 0%, #d9aa00 100%);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-newsletter:hover {
  background: linear-gradient(180deg, #ffea75 0%, #f5c000 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* CAROUSEL / VETRINA LOCANDINE */
.carousel-section {
  padding: 0 15px 30px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #10131a 0%, #090a0e 100%);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 12px 6px;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 6px 10px;
  box-sizing: border-box;
}

.carousel-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #11141a;
  border: 1px solid #2e3544;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
}

.carousel-card:hover {
  transform: translateY(-5px);
  border-color: var(--cinema-gold);
  box-shadow: 0 10px 25px rgba(255, 210, 0, 0.25);
}

.carousel-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3; /* Proporzione classica locandina cinema (2:3) */
  overflow: hidden;
  background: #000;
}

.carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.carousel-card:hover .carousel-img-wrap img {
  transform: scale(1.05);
}

.carousel-badge {
  background: linear-gradient(180deg, #181c26 0%, #0d1017 100%);
  color: var(--cinema-gold);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 9px 8px;
  text-align: center;
  border-top: 1px solid #2a3140;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 10, 14, 0.85);
  color: var(--cinema-gold);
  border: 1px solid var(--border-color);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

.carousel-btn:hover {
  background: var(--cinema-gold);
  color: #000;
  border-color: var(--cinema-gold);
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

/* PROMO / INFO BANNERS SECTION (Stacked Horizontal Rows under Movies) */
.promo-banners-section {
  padding: 0 15px 40px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.promo-banner-card {
  background: #141720;
  border: 1px solid #384252;
  border-top: 3px solid var(--cinema-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  width: 100%;
}

.promo-banner-card:hover {
  transform: translateY(-3px);
  border-color: #52637a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9), 0 0 16px rgba(212, 175, 55, 0.25);
}

.promo-banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background-color: #080a0e;
}

.promo-banner-title {
  padding: 13px 20px;
  background: linear-gradient(180deg, #1a202c 0%, #10141d 100%);
  border-top: 1px solid #2d3748;
  color: #f1f5f9;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-align: center;
  text-transform: uppercase;
}

/* MOVIE CARDS (Main Programmazione) */
.movies-section {
  padding: 0 15px 35px;
}

.movie-card {
  background: #141720;
  background: linear-gradient(180deg, #181c26 0%, #10131a 100%);
  border: 1px solid #384252;
  border-top: 3px solid var(--cinema-gold);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.92), 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
  border-color: #4f5d75;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.98), 0 0 16px rgba(212, 175, 55, 0.2);
}

.movie-card-header {
  background: #1c222e;
  background: linear-gradient(90deg, #232a38 0%, #181e28 100%);
  border-bottom: 2px solid #2f3847;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.movie-badge-status {
  background-color: var(--cinema-red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(229, 9, 20, 0.4);
}

.movie-card-body {
  padding: 26px 24px 22px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  background: transparent;
}

.movie-poster-col {
  text-align: center;
}

.movie-poster-wrap {
  position: relative;
}

.movie-poster {
  width: 100%;
  max-width: 210px;
  border-radius: var(--radius-sm);
  border: 1px solid #3e4859;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.75);
  background-color: #000;
  margin: 0 auto;
}

.movie-trailer-box {
  margin-top: 12px;
  background: linear-gradient(135deg, #1e2430 0%, #11141b 100%);
  border: 1px solid #3b4656;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie-trailer-box:hover {
  background: linear-gradient(135deg, #2b3345 0%, #181d26 100%);
  border-color: var(--cinema-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.trailer-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trailer-play-icon {
  background: var(--cinema-red);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding-left: 2px;
  box-shadow: 0 2px 6px rgba(229, 9, 20, 0.5);
  transition: transform 0.2s ease;
}

.movie-trailer-box:hover .trailer-play-icon {
  transform: scale(1.15);
  background: #ff1e2b;
}

.trailer-btn-text {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #f1f5f9;
  text-transform: uppercase;
}

.movie-trailer-box:hover .trailer-btn-text {
  color: var(--cinema-gold);
}

.movie-info-col {
  display: flex;
  flex-direction: column;
}

.movie-title {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--cinema-gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.movie-tags {
  display: inline-block;
  background-color: #222836;
  color: #a0aec0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 1px solid #364153;
}

.movie-meta {
  color: #d1d9e6;
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.meta-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.meta-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

.meta-item strong {
  color: #fff;
  min-width: 65px;
  font-size: 15px;
}

/* SYNOPSIS (TRAMA) BOX */
.movie-synopsis-box {
  margin-top: 4px;
  margin-bottom: 18px;
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 4px solid var(--cinema-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.synopsis-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cinema-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.movie-synopsis {
  color: #f8fafc;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* EXTRA NOTES (Soft Emerald Green) */
.movie-extra-notes {
  background-color: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-left: 4px solid #10b981;
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #f1f5f9;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.extra-notes-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #34d399;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* SHOWTIMES SCHEDULE (Vertical List Aligned to Column) */
.showtimes-box {
  margin-top: 18px;
  width: 100%;
  max-width: 100%;
  background: #090b10;
  border: 1px solid #2d3748;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.showtimes-header {
  background: linear-gradient(90deg, #1d2330 0%, #12151c 100%);
  padding: 12px 20px;
  border-bottom: 2px solid #2d3748;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--cinema-gold);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.showtimes-header-icon {
  font-size: 18px;
}

.showtimes-list {
  display: flex;
  flex-direction: column;
  background-color: #0c0e14;
}

.showtime-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.15s ease;
}

.showtime-row-item:last-child {
  border-bottom: none;
}

.showtime-row-item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.025);
}

.showtime-row-item:hover {
  background-color: rgba(212, 175, 55, 0.08);
}

.showtime-day-col {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.showtime-day-icon {
  font-size: 15px;
  opacity: 0.85;
}

.showtime-day {
  color: #f1f5f9;
  font-family: 'Oswald', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.showtime-time-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.showtime-time,
.showtime-time-badge {
  background: linear-gradient(180deg, #ffd700 0%, #e6a800 100%);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: inline-block;
}

.showtime-note {
  color: #ef4444;
  font-family: 'Oswald', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  background-color: rgba(239, 68, 68, 0.15);
  border-radius: 4px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  white-space: nowrap;
}

/* PRICES PAGE STYLES (prezzi.php) */
.prices-container {
  padding: 10px 15px 40px;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.price-card {
  background: linear-gradient(180deg, #171b23 0%, #111318 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--cinema-gold);
}

.price-card.featured {
  border: 2px solid var(--cinema-gold);
  background: linear-gradient(180deg, #1e2430 0%, #13161c 100%);
  box-shadow: 0 8px 25px rgba(255, 210, 0, 0.15);
}

.price-card-tag {
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--cinema-gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 30px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

.price-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-card-amount {
  font-family: 'Cinzel', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--cinema-gold);
  margin: 10px 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.price-card-amount.neon {
  color: #38bdf8;
}

.price-card-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 5px;
}

/* Map Box */
.map-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 30px;
  box-shadow: var(--shadow-card);
}

.map-box h3 {
  font-family: 'Cinzel', serif;
  color: var(--cinema-gold);
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER */
.site-footer {
  margin-top: auto;
  background-color: #050608;
  border-top: 1px solid #1a1f28;
  padding: 30px 20px 20px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cinema-gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.footer-info {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 15px;
}

.footer-copy {
  color: #64748b;
  font-size: 12px;
  border-top: 1px solid #12151c;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-footer-link {
  color: #64748b;
  font-size: 12px;
  transition: color 0.2s ease;
}

.admin-footer-link:hover {
  color: var(--cinema-gold);
}

/* CINEMA TRAILER MODAL */
.cinema-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cinema-modal.active {
  display: flex;
}

.cinema-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cinema-modal-container {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: #11141c;
  border: 1px solid #384252;
  border-top: 3px solid var(--cinema-gold);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  z-index: 10;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cinema-modal-header {
  padding: 14px 20px;
  background: linear-gradient(90deg, #1e2430 0%, #131720 100%);
  border-bottom: 1px solid #2d3748;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cinema-modal-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cinema-gold);
  margin: 0;
}

.cinema-modal-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
  transition: all 0.15s ease;
}

.cinema-modal-close:hover {
  color: #fff;
  background: rgba(239, 68, 68, 0.25);
}

.cinema-modal-body {
  padding: 0;
  background: #000;
}

.video-responsive-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-responsive-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1146px) {
  #supercontainer {
    width: 100%;
    padding: 0;
    background-image: none; /* Smooth mobile presentation */
  }
  .site-wrapper {
    width: 100%;
    border-left: none;
    border-right: none;
  }
}

@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .movie-card-body {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .movie-info-col {
    align-items: center;
  }
  .movie-poster {
    max-width: 180px;
  }
}

@media (max-width: 540px) {
  .carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #151820;
    border-top: 1px solid var(--border-color);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-link {
    padding: 12px 15px;
    border-bottom: 1px solid #222733;
    justify-content: flex-start;
  }
  .newsletter-box {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-content {
    flex-direction: column;
  }
  .footer-copy {
    flex-direction: column;
    text-align: center;
  }
  .movie-title {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .showtimes-box {
    width: 100%;
    min-width: 100%;
  }
  .showtime-row-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px 14px;
  }
  .showtime-day-col {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .showtime-time-col {
    justify-content: center;
    width: 100%;
  }
  .showtime-day {
    font-size: 14.5px;
    text-align: center;
  }
  .showtime-time,
  .showtime-time-badge {
    font-size: 15px;
    padding: 4px 12px;
  }
}

/* ==============================================================================
   VIRTUAL CINEMA THEATER - TRAILER SHOWCASE
   ============================================================================== */
.virtual-cinema-section {
  max-width: 1200px;
  margin: 35px auto 40px auto;
  padding: 0 15px;
}

.virtual-cinema-container {
  background: radial-gradient(circle at 50% 0%, #171b26 0%, #0c0e14 70%, #06070a 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 24px 28px 26px 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.virtual-cinema-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  flex-wrap: wrap;
  gap: 12px;
}

.cinema-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cinema-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e50914;
  box-shadow: 0 0 10px #e50914;
  display: inline-block;
  animation: cinemaPulse 2s infinite;
}

@keyframes cinemaPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(229, 9, 20, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.cinema-header-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--cinema-gold);
  text-transform: uppercase;
  font-weight: 700;
}

.cinema-header-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.cinema-trailer-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--cinema-gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

/* Cinema Hall Frame (Simulating Theater Perspective) */
.cinema-hall-frame {
  position: relative;
  background: linear-gradient(180deg, #090b10 0%, #030406 100%);
  border-radius: 12px;
  padding: 25px 25px 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 20px 50px rgba(0,0,0,0.9);
  overflow: hidden;
}

/* Ambient Projector Cone */
.cinema-projector-cone {
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 45%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

/* Cinema Screen */
.cinema-screen-outer {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  padding: 8px;
  background: linear-gradient(135deg, #2a2215 0%, #0f1118 50%, #2a2215 100%);
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.15), 0 20px 45px rgba(0, 0, 0, 0.95);
  margin-bottom: -15px; /* Overlap slightly with seats */
}

.cinema-screen-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.cinema-screen-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.cinema-cover-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.cinema-cover-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

.cinema-cover-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--cinema-gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.cinema-cover-title {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: #fff;
  margin: 0 0 8px 0;
  text-shadow: 0 3px 12px rgba(0,0,0,0.9);
  line-height: 1.2;
}

.cinema-cover-sub {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 22px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

.cinema-play-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0d12;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 14px 34px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.6), 0 8px 25px rgba(0,0,0,0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cinema-play-btn:hover {
  transform: scale(1.06);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 0 45px rgba(245, 158, 11, 0.85), 0 10px 30px rgba(0,0,0,0.8);
}

.cinema-play-icon {
  background: #0b0d12;
  color: var(--cinema-gold);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding-left: 3px;
}

.cinema-video-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.cinema-video-target iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Front Row Velvet Seats Overlay */
.cinema-seats-overlay {
  position: relative;
  z-index: 5;
  pointer-events: none;
  margin-top: 5px;
  padding-bottom: 8px;
}

.cinema-seat-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: flex-end;
}

.cinema-seat {
  width: 44px;
  height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 -3px 8px rgba(0,0,0,0.8));
}

.seat-headrest {
  width: 32px;
  height: 12px;
  background: linear-gradient(180deg, #450a0a 0%, #200404 100%);
  border-radius: 6px 6px 2px 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2px;
}

.seat-back {
  width: 40px;
  height: 24px;
  background: linear-gradient(180deg, #370606 0%, #150202 100%);
  border-radius: 4px 4px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Bottom Controls Bar */
.virtual-cinema-controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
}

.cinema-now-playing {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.now-playing-label {
  font-family: 'Oswald', sans-serif;
  color: var(--cinema-gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.now-playing-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.cinema-control-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cinema-nav-btn {
  background: #181d28;
  color: #e2e8f0;
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cinema-nav-btn:hover {
  background: #252d3d;
  color: var(--cinema-gold);
  border-color: var(--cinema-gold);
}

.cinema-jump-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff !important;
  text-decoration: none !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.cinema-jump-btn:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.45);
}

@media (max-width: 768px) {
  .virtual-cinema-container {
    padding: 16px 14px;
  }
  .cinema-header-title {
    font-size: 18px;
  }
  .cinema-cover-title {
    font-size: 22px;
  }
  .cinema-play-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  .cinema-seat {
    width: 28px;
    height: 26px;
  }
  .seat-headrest {
    width: 20px;
    height: 8px;
  }
  .seat-back {
    width: 24px;
    height: 16px;
  }
  .virtual-cinema-controls {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cinema-now-playing {
    justify-content: center;
  }
  .cinema-control-buttons {
    justify-content: center;
    width: 100%;
  }
  .cinema-jump-btn {
    width: 100%;
    justify-content: center;
  }
}
