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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0f0f1a;
  color: #e0e0e0;
  min-height: 100vh;
}

/* ===== Hamburger Menu Button ===== */
.search-btn {
  position: fixed;
  top: 16px;
  right: 62px;
  z-index: 1000;
  background: rgba(15,15,26,0.85);
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  color: #f0ad4e;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover { border-color: #f0ad4e; }

.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  justify-content: center;
  padding-top: 120px;
  backdrop-filter: blur(4px);
}

.search-overlay-open { display: flex; }

.search-overlay-box {
  width: 90%;
  max-width: 500px;
  position: relative;
}

.search-overlay-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.search-overlay-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-family: inherit;
  background: #1a1a2e;
  border: 2px solid #f0ad4e;
  border-radius: 12px;
  color: #fff;
  outline: none;
  box-sizing: border-box;
}

.search-overlay-input::placeholder { color: #666; }

.search-overlay-results {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 0 0 12px 12px;
  margin-top: -2px;
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
}

.light-theme .search-btn { background: rgba(255,255,255,0.9); border-color: #ddd; color: #d4880f; }
.light-theme .search-btn:hover { border-color: #d4880f; }
.light-theme .search-overlay { background: rgba(255,255,255,0.9); }
.light-theme .search-overlay-close { color: #222; }
.light-theme .search-overlay-input { background: #fff; border-color: #d4880f; color: #222; }
.light-theme .search-overlay-input::placeholder { color: #999; }
.light-theme .search-overlay-results { background: #fff; border-color: #ddd; }

.menu-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  background: rgba(15,15,26,0.85);
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(8px);
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f0ad4e;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Side Nav Menu ===== */
.nav-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: #0f0f1a;
  border-left: 2px solid #2a2a4a;
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.nav-menu.nav-open {
  right: 0;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.nav-overlay-show {
  display: block;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.nav-logo {
  height: 40px;
}

.nav-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 4px 8px;
}

.nav-close:hover {
  color: #f0ad4e;
}

.nav-link {
  display: block;
  padding: 14px 0;
  color: #ccc;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid #1a1a2e;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #f0ad4e;
}

.nav-link-active {
  color: #f0ad4e;
}

.nav-divider {
  height: 1px;
  background: #2a2a4a;
  margin: 16px 0;
}

.nav-theme-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  padding: 12px 16px;
  color: #ccc;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s;
}

.nav-theme-btn:hover {
  border-color: #f0ad4e;
  color: #f0ad4e;
}

/* ===== Light Theme ===== */
.light-theme {
  background: #f5f5f5;
  color: #222;
}

.light-theme .hero-overlay {
  background: radial-gradient(ellipse at center, rgba(245,245,245,0.15) 0%, rgba(245,245,245,0.75) 75%);
}

.light-theme .hero-tagline { color: #555; }

.light-theme .menu-btn {
  background: rgba(245,245,245,0.9);
  border-color: #ddd;
}

.light-theme .menu-btn span { background: #333; }

.light-theme .nav-menu {
  background: #fff;
  border-left-color: #ddd;
}

.light-theme .nav-link { color: #333; border-bottom-color: #eee; }
.light-theme .nav-link:hover, .light-theme .nav-link-active { color: #d4880f; }
.light-theme .nav-close { color: #999; }
.light-theme .nav-theme-btn { background: #f0f0f0; border-color: #ddd; color: #333; }

.light-theme .now-playing-card,
.light-theme .cs-card,
.light-theme .mp-song-card,
.light-theme .show-card,
.light-theme .summary-card { background: #fff; border-color: #ddd; }

.light-theme .section-title { color: #222; border-bottom-color: #d4880f; }
.light-theme .np-movie-name, .light-theme .cs-card h3,
.light-theme .mp-title, .light-theme .mp-section-title { color: #222; }
.light-theme .np-dates, .light-theme .mp-synopsis,
.light-theme .mp-crew { color: #555; }
.light-theme .mp-crew strong { color: #d4880f; }
.light-theme .mp-meta span { background: #f0f0f0; border-color: #ddd; color: #555; }
.light-theme .mp-song-card { color: #222; }
.light-theme .mp-song-icon { color: #d4880f; }

.light-theme .site-footer { border-top-color: #ddd; }
.light-theme .footer-location, .light-theme .footer-instagram { color: #666; }
.light-theme .footer-copy { color: #999; }

.light-theme .site-header { border-bottom-color: #ddd; }
.light-theme .mp-interested-btn { background: #f0f0f0; border-color: #d4880f; color: #d4880f; }
.light-theme .mp-interested-count { background: #ddd; color: #555; }
.light-theme .mp-interested-active .mp-interested-count { background: #d4880f; color: #fff; }

.light-theme .page-title { color: #222; }
.light-theme .page-text p { color: #444; }
.light-theme .contact-form input,
.light-theme .contact-form textarea { background: #fff; border-color: #ddd; color: #222; }
.light-theme .contact-form label { color: #555; }

/* ===== Page Content (About, Contact) ===== */
.page-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 32px 64px;
}

.page-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid #f0ad4e;
  display: inline-block;
}

.page-text p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== Contact Form ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  padding: 12px 16px;
  color: #e0e0e0;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f0ad4e;
}

.form-group textarea {
  resize: vertical;
}

.sent-msg {
  text-align: center;
  padding: 40px 20px;
  font-size: 1.2rem;
  color: #5cb85c;
  font-weight: 700;
}

/* Site Header */
.site-header {
  padding: 16px 32px;
  border-bottom: 2px solid #2a2a4a;
}

.header-logo {
  height: 50px;
  display: block;
}

.main-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.side-panel {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
}

.side-poster {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #f0ad4e;
  object-fit: cover;
}

.movie-title {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 14px;
  line-height: 1.3;
}

.subtitle {
  color: #aaa;
  margin-top: 6px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.side-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.header-stat {
  text-align: center;
  background: #1a1a2e;
  border-radius: 8px;
  padding: 8px 4px;
  border: 1px solid #2a2a4a;
}

.header-stat .number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f0ad4e;
}

.header-stat .label {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.movie-info {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.movie-info td {
  padding: 6px 0;
  vertical-align: top;
  border-bottom: 1px solid #2a2a4a;
}

.movie-info td:first-child {
  color: #888;
  padding-right: 12px;
  white-space: nowrap;
}

.movie-info td:last-child {
  color: #e0e0e0;
}

.main-content {
  flex: 1;
  min-width: 0;
  border-left: 4px solid #f0ad4e;
  padding-left: 28px;
}

.right-panel {
  width: 380px;
  flex-shrink: 0;
  border-left: 4px solid #f0ad4e;
  padding-left: 28px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

main {
  max-width: 1600px;
  padding: 28px 32px;
}

.summary-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.summary-row-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.top-movie-name {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 20px 28px;
  border: 1px solid #2a2a4a;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.summary-row-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.summary-card {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #2a2a4a;
  text-align: center;
}

.summary-card .value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.summary-card .label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.summary-card.highlight .value {
  color: #f0ad4e;
}

.summary-card.countdown-card {
  border-color: #f0ad4e;
  background: linear-gradient(135deg, #1a1a2e, #2a1a00);
}

.summary-card.countdown-card {
  padding: 28px 48px;
}

.summary-card.countdown-card .value {
  color: #f0ad4e;
  font-size: 2.5rem;
}

.controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.controls .hint {
  color: #666;
  font-size: 0.8rem;
}

.controls code {
  background: #2a2a4a;
  padding: 2px 8px;
  border-radius: 4px;
  color: #f0ad4e;
  font-size: 0.8rem;
}

/* Date Filter */
.filter-bar {
  margin-bottom: 20px;
}

#dateFilter {
  background: #1a1a2e;
  color: #e0e0e0;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

#dateFilter:hover,
#dateFilter:focus {
  border-color: #f0ad4e;
}

#dateFilter option {
  background: #1a1a2e;
  color: #e0e0e0;
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.show-card {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 22px;
  border: 1px solid #2a2a4a;
  transition: border-color 0.2s, transform 0.2s;
}

.show-card:hover {
  border-color: #f0ad4e;
  transform: translateY(-2px);
}

.show-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.show-card h3 {
  font-size: 1.2rem;
  color: #fff;
}

.cinema-name {
  font-size: 0.85rem;
  color: #f0ad4e;
  font-weight: 600;
  margin-top: 2px;
}

.show-time-badge {
  background: #f0ad4e;
  color: #000;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

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

.stat-label {
  color: #888;
}

.stat-value {
  font-weight: 700;
  color: #fff;
}

.progress-bar-container {
  background: #2a2a4a;
  border-radius: 10px;
  height: 12px;
  overflow: hidden;
  margin-top: 2px;
}

.progress-bar {
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
}

.progress-low { background: linear-gradient(90deg, #28a745, #5cb85c); }
.progress-mid { background: linear-gradient(90deg, #f0ad4e, #ec971f); }
.progress-high { background: linear-gradient(90deg, #e94560, #d63031); }
.progress-full { background: linear-gradient(90deg, #e94560, #ff6b81); }

.percentage-text {
  text-align: right;
  font-size: 0.8rem;
  margin-top: 3px;
  font-weight: 600;
}

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-available { background: rgba(40,167,69,0.2); color: #5cb85c; }
.status-filling { background: rgba(240,173,78,0.2); color: #f0ad4e; }
.status-almost-full { background: rgba(233,69,96,0.2); color: #e94560; }
.status-sold-out { background: rgba(233,69,96,0.3); color: #ff6b81; }

.price-tag {
  font-size: 0.8rem;
  color: #5cb85c;
  margin-top: 4px;
}

.book-btn {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 10px 20px;
  background: #f0ad4e;
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.book-btn:hover {
  background: #ec971f;
  transform: translateY(-1px);
}

.book-btn-soon {
  background: #2a2a4a;
  color: #888;
  cursor: default;
}

.book-btn-soon:hover {
  background: #2a2a4a;
  transform: none;
}

/* Revenue Table */
.revenue-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.revenue-table th,
.revenue-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #2a2a4a;
}

.revenue-table th {
  background: #16213e;
  color: #f0ad4e;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.revenue-table td {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.revenue-table tr:hover td {
  background: #1f1f3a;
}

.revenue-table .total-row td {
  border-top: 2px solid #f0ad4e;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
}

.revenue-table .amount {
  color: #5cb85c;
  font-weight: 700;
}

.revenue-section-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}

.revenue-section-sub {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 16px;
}

@media (max-width: 1200px) {
  .main-layout { flex-wrap: wrap; }
  .right-panel { width: 100%; border-left: none; padding-left: 0; border-top: 4px solid #f0ad4e; padding-top: 24px; margin-top: 24px; position: static; }
}

/* ===== Landing Page Styles ===== */

.landing-page {
  min-height: 100vh;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-poster-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  opacity: 0.45;
  overflow: hidden;
}

.hero-poster-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15,15,26,0.15) 0%, rgba(15,15,26,0.75) 75%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-logo {
  width: 420px;
  max-width: 70%;
  filter: drop-shadow(0 4px 24px rgba(240,173,78,0.3));
}

.hero-reel {
  width: 120px;
  filter: invert(1) drop-shadow(0 4px 24px rgba(240,173,78,0.3));
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  font-weight: 900;
  color: #f0ad4e;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 4px 32px rgba(240,173,78,0.4), 0 2px 8px rgba(0,0,0,0.8);
}

.hero-tagline {
  margin-top: 12px;
  font-size: 1.2rem;
  color: #aaa;
  font-weight: 400;
}

/* Movies Section Layout */
/* Search */
.search-section {
  max-width: 600px;
  margin: -28px auto 0;
  padding: 0 32px;
  position: relative;
  z-index: 10;
}

.search-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-family: inherit;
  background: #1a1a2e;
  border: 2px solid #2a2a4a;
  border-radius: 12px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.search-input::placeholder { color: #666; }
.search-input:focus { border-color: #f0ad4e; }

.search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 0 0 12px 12px;
  margin-top: -2px;
  overflow: hidden;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.search-item {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #2a2a4a;
  transition: background 0.15s;
}

.search-item:last-child { border-bottom: none; }
.search-item:hover { background: #222244; }

.search-item-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.search-item-meta {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
}

.search-empty {
  color: #666;
  cursor: default;
}

.light-theme .search-input { background: #fff; border-color: #ddd; color: #222; }
.light-theme .search-input::placeholder { color: #999; }
.light-theme .search-input:focus { border-color: #d4880f; }
.light-theme .search-results { background: #fff; border-color: #ddd; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.light-theme .search-item { color: #222; border-color: #eee; }
.light-theme .search-item:hover { background: #f9f3e8; }
.light-theme .search-item-meta { color: #666; }

.movies-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 64px;
}

.movies-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.movies-col {
  flex: 1;
}

.coming-soon-col {
  flex: 1;
  min-width: 0;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 3px solid #f0ad4e;
  display: inline-block;
}

.now-playing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.now-playing-card {
  display: flex;
  background: #1a1a2e;
  border-radius: 14px;
  border: 1px solid #2a2a4a;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.now-playing-card:hover {
  border-color: #f0ad4e;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(240, 173, 78, 0.15);
}

.np-poster {
  width: 140px;
  flex-shrink: 0;
}

.np-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.np-movie-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.np-language {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.np-dates {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 8px;
}

.np-cta {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f0ad4e;
}

/* Coming Soon Slider */
.cs-slider {
  overflow: hidden;
  border-radius: 14px;
}

.cs-track {
  display: flex;
  transition: transform 0.6s ease;
}

.cs-card {
  min-width: 100%;
  text-align: center;
  background: #1a1a2e;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #2a2a4a;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.cs-card:hover {
  border-color: #f0ad4e;
}

.cs-card img {
  width: 140px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.cs-card h3 {
  padding: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
}

/* Slider Dots */
.cs-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2a4a;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.cs-dot:hover {
  background: #888;
  transform: scale(1.2);
}

.cs-dot-active {
  background: #f0ad4e;
  transform: scale(1.2);
}

/* Footer */
.site-footer {
  border-top: 2px solid #2a2a4a;
  padding: 32px;
  text-align: center;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-location {
  font-size: 1rem;
  color: #888;
  margin-bottom: 8px;
}

.footer-email {
  font-size: 1rem;
  color: #f0ad4e;
  text-decoration: none;
  font-weight: 600;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 10px;
}

.footer-instagram {
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-instagram:hover {
  color: #f0ad4e;
}

.footer-copy {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #555;
}

/* ===== Movie Detail Page ===== */
.movie-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
}

.mp-hero {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.mp-poster {
  width: 260px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 2px solid #f0ad4e;
}

.mp-hero-info {
  flex: 1;
}

.mp-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.mp-meta {
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 16px;
}

.mp-meta span {
  background: #1a1a2e;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #2a2a4a;
}

.mp-crew {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 16px;
}

.mp-crew strong {
  color: #f0ad4e;
}

.mp-dates {
  font-size: 1rem;
  color: #f0ad4e;
  font-weight: 700;
  margin-bottom: 12px;
}

.mp-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 2px solid #f0ad4e;
  border-radius: 12px;
  padding: 12px 24px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: default;
}

.mp-countdown-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #f0ad4e;
}

.mp-countdown-label {
  font-size: 1rem;
  font-weight: 700;
  color: #ccc;
}

.light-theme .mp-countdown {
  background: #fff;
  border-color: #d4880f;
}

.light-theme .mp-countdown-num { color: #d4880f; }
.light-theme .mp-countdown-label { color: #555; }

.mp-hero-buttons {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 20px;
}

.mp-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  font-size: 0.95rem;
  margin-top: 0;
}

.mp-section {
  margin-bottom: 40px;
}

.mp-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0ad4e;
  display: inline-block;
}

.mp-synopsis {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
}

.mp-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}

.mp-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.mp-songs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mp-song-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 16px 24px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.mp-song-card:hover {
  border-color: #f0ad4e;
  transform: translateY(-2px);
}

.mp-song-icon {
  font-size: 1.4rem;
  color: #f0ad4e;
}

.mp-cta-section {
  text-align: center;
  padding: 32px 0;
}

.mp-book-btn-large {
  display: inline-block;
  padding: 16px 48px;
  font-size: 1.2rem;
  background: #f0ad4e;
  color: #000;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.mp-book-btn-large:hover {
  background: #ec971f;
  transform: translateY(-2px);
}

.mp-interested-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1a1a2e;
  border: 2px solid #f0ad4e;
  border-radius: 8px;
  padding: 10px 20px;
  color: #f0ad4e;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  font-family: inherit;
}

.mp-interested-btn:hover {
  border-color: #f0ad4e;
  transform: translateY(-2px);
}

.mp-thumbsup {
  font-size: 1.4rem;
}

.mp-interested-count {
  background: #2a2a4a;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #aaa;
}

.mp-interested-active {
  border-color: #f0ad4e;
  background: linear-gradient(135deg, #1a1a2e, #2a1a00);
  color: #f0ad4e;
}

.mp-interested-active .mp-interested-count {
  background: #f0ad4e;
  color: #000;
  font-weight: 700;
}

/* ===== Showtimes Section ===== */
.st-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.st-tab {
  padding: 12px 28px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  color: #888;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.st-tab:first-child { border-radius: 8px 0 0 8px; }
.st-tab:last-child { border-radius: 0 8px 8px 0; }

.st-tab-active {
  background: #f0ad4e;
  color: #000;
  border-color: #f0ad4e;
}

.st-dates {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.st-date-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #1a1a2e;
  border: 2px solid #2a2a4a;
  border-radius: 12px;
  cursor: pointer;
  min-width: 75px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  color: #ccc;
  gap: 2px;
}

.st-date-card:hover { border-color: #f0ad4e; transform: translateY(-2px); }

.st-date-active {
  border-color: #f0ad4e;
  background: #f0ad4e;
  color: #000;
  box-shadow: 0 4px 15px rgba(240, 173, 78, 0.3);
}

.st-date-day { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.st-date-active .st-date-day { opacity: 1; }
.st-date-num { font-size: 1.5rem; font-weight: 800; line-height: 1.2; }
.st-date-month { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; opacity: 0.85; }
.st-date-active .st-date-month { opacity: 1; }

.st-cinema-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  background: #1a1a2e;
  border: 2px solid #2a2a4a;
  border-radius: 12px;
  cursor: pointer;
  min-width: 120px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  color: #ccc;
}

.st-cinema-card:hover { transform: translateY(-2px); }

.st-cinema-card:hover { border-color: #f0ad4e; }
.st-cinema-name { font-size: 0.95rem; font-weight: 700; }
.st-cinema-hall { font-size: 0.75rem; color: #888; margin-top: 2px; }
.st-date-active .st-cinema-hall { color: #333; }

.st-venue {
  border-bottom: 1px solid #2a2a4a;
  padding: 24px 0;
}

.st-venue:last-child { border-bottom: none; }

.st-venue-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.st-venue-city {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.st-venue-name {
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}

.st-venue-date {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.st-venue-times {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.st-time-card {
  display: flex;
  flex-direction: column;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-left: 3px solid #f0ad4e;
  border-radius: 6px;
  padding: 12px 20px;
  text-decoration: none;
  color: #fff;
  min-width: 120px;
  transition: border-color 0.2s, background 0.2s;
}

.st-time-card:hover {
  background: #222244;
  border-color: #f0ad4e;
}

.st-time-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.st-time-price {
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}

/* Light theme showtimes */
.light-theme .st-tab { background: #f0f0f0; border-color: #ddd; color: #666; }
.light-theme .st-tab-active { background: #d4880f; color: #fff; border-color: #d4880f; }
.light-theme .st-date-card, .light-theme .st-cinema-card { background: #fff; border-color: #ddd; color: #333; }
.light-theme .st-date-active { background: #d4880f; border-color: #d4880f; color: #fff; }
.light-theme .st-venue { border-color: #ddd; }
.light-theme .st-venue-city { color: #222; }
.light-theme .st-venue-name { color: #666; }
.light-theme .st-venue-date { color: #222; }
.light-theme .st-time-card { background: #fff; border-color: #ddd; border-left-color: #d4880f; }
.light-theme .st-time-card:hover { background: #f9f3e8; border-color: #d4880f; }
.light-theme .st-time-value { color: #222; }
.light-theme .st-time-price { color: #666; }

/* Landing page responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2.4rem; }
  .hero-logo { width: 300px; max-width: 80%; display: block; margin: 0 auto; }
  .hero-poster-grid { grid-template-columns: repeat(5, 1fr); gap: 3px; }
  .movies-section { padding: 32px 16px 48px; }
  .movies-layout { flex-direction: column; gap: 32px; }
  .cs-card img { width: 100px; }
  .np-poster { width: 100px; }
  .site-footer { padding: 24px 16px; }

  /* Movie detail page responsive */
  .movie-page { padding: 20px 16px; }
  .mp-hero { flex-direction: column; gap: 20px; }
  .mp-poster { width: 160px; }
  .mp-title { font-size: 1.6rem; }
  .mp-meta { flex-wrap: wrap; gap: 8px; }
  .mp-songs { flex-direction: column; }
  .mp-book-btn-large { padding: 14px 32px; font-size: 1rem; }

  /* Dashboard responsive */
  main { padding: 16px; }
  .site-header { padding: 12px 16px; }
  .main-layout { flex-direction: column; }
  .side-panel { width: 100%; position: static; display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
  .side-poster { width: 120px; border-radius: 8px; }
  .side-panel .movie-title,
  .side-panel .subtitle,
  .side-panel .movie-info { flex: 1; min-width: 200px; }
  .main-content { border-left: none; padding-left: 0; border-top: 3px solid #f0ad4e; padding-top: 20px; margin-top: 16px; }
  .right-panel { width: 100%; border-left: none; padding-left: 0; border-top: 3px solid #f0ad4e; padding-top: 20px; margin-top: 16px; position: static; }
  .show-grid { grid-template-columns: 1fr; }
  .summary-row-top { grid-template-columns: 1fr; }
  .top-movie-name { font-size: 1.3rem; padding: 14px 18px; }
  .summary-row-stats { grid-template-columns: repeat(2, 1fr); }

  /* Showtimes responsive */
  .st-tab { padding: 10px 20px; font-size: 0.85rem; }
  .st-dates { justify-content: center; }
  .st-date-card { padding: 10px 14px; min-width: 60px; }
  .st-date-num { font-size: 1.2rem; }
  .st-venue-city { font-size: 1.1rem; }
  .st-time-card { min-width: 100px; padding: 10px 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-logo { width: 240px; max-width: 85%; display: block; margin: 0 auto; }
  .hero-poster-grid { grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .movies-layout { flex-direction: column; }
  .np-poster { width: 80px; }
  .cs-card img { width: 80px; }
  .section-title { font-size: 1.3rem; }
  .summary-card.countdown-card { padding: 20px 24px; }
  .summary-card.countdown-card .value { font-size: 1.8rem; }
  .revenue-table th, .revenue-table td { padding: 8px 6px; font-size: 0.78rem; }
  .side-panel { flex-direction: column; }
  .side-poster { width: 100%; max-width: 200px; }
}
