* {
  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;
}

/* ===== Netflix-style Search (Homepage) ===== */
.nf-search {
  position: fixed;
  top: 16px;
  right: 62px;
  z-index: 1000;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.nf-search-icon {
  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;
  flex-shrink: 0;
  z-index: 2;
}

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

.nf-search-input {
  width: 0;
  padding: 0;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(15,15,26,0.95);
  border: 1px solid #2a2a4a;
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #fff;
  outline: none;
  opacity: 0;
  transition: width 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

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

.nf-search-open .nf-search-input {
  width: 260px;
  padding: 8px 14px;
  opacity: 1;
}

.nf-search-open .nf-search-icon {
  border-radius: 0 8px 8px 0;
  border-left: none;
  border-color: #f0ad4e;
}

.nf-search-open .nf-search-input {
  border-color: #f0ad4e;
}

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

.nf-search-open .nf-search-results:not(:empty) {
  display: block;
}

.light-theme .nf-search-icon { background: rgba(255,255,255,0.9); border-color: #ddd; color: #d4880f; }
.light-theme .nf-search-icon:hover { border-color: #d4880f; }
.light-theme .nf-search-input { background: rgba(255,255,255,0.95); border-color: #ddd; color: #222; }
.light-theme .nf-search-open .nf-search-input { border-color: #d4880f; }
.light-theme .nf-search-open .nf-search-icon { border-color: #d4880f; }
.light-theme .nf-search-results { background: #fff; border-color: #ddd; }

/* ===== 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: #fff; }
.light-theme .mp-content .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: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); color: #fff; }
.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;
}

.section-title-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  width: fit-content;
}
.section-title-link .section-title {
  margin-bottom: 0;
}
.section-title-link {
  margin-bottom: 28px;
}
.section-title-arrow {
  font-size: 1.4rem;
  color: #f0ad4e;
  transition: transform 0.2s;
}
.section-title-link:hover .section-title-arrow {
  transform: translateX(5px);
}

.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;
}

/* ===== Movie Page - BookMyShow Style ===== */

.movie-page {
  padding: 0;
}

.mp-backdrop {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.mp-backdrop-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.4) saturate(1.2);
}

.mp-backdrop-gradient {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    linear-gradient(to right, #0f0f1a 0%, transparent 10%, transparent 90%, #0f0f1a 100%),
    linear-gradient(to bottom, #0f0f1a 0%, transparent 10%),
    linear-gradient(to top, #0f0f1a 0%, transparent 20%);
}

.mp-hero {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px;
  width: 100%;
}

.mp-poster {
  width: 300px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.7);
}

.mp-poster img {
  width: 100%;
  display: block;
}

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

.mp-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.mp-meta {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: #ddd;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.mp-meta span {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #eee;
}

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

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

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

/* Content sections below backdrop */
.mp-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 0;
}

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

.mp-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  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-crew {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 2;
}

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

.mp-video {
  position: relative;
  width: 100%;
  max-width: 720px;
  padding-bottom: min(56.25%, 405px);
  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: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  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;
  min-width: 200px;
}

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

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

.mp-interested-count {
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #aaa;
}

.mp-interested-active {
  border-color: #f0ad4e;
  background: linear-gradient(135deg, rgba(26,26,46,0.8), rgba(42,26,0,0.8));
  color: #f0ad4e;
}

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

.mp-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  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: rgba(255,255,255,0.8);
  border-color: #d4880f;
}

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

/* ===== 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: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.st-dates.st-dates--days {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.st-search-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  align-items: center;
}

.st-search {
  flex: 1;
  position: relative;
}

.st-nearme-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid #444;
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}
.st-nearme-btn:hover {
  border-color: var(--accent);
  background: #e8a80015;
}
.st-nearme-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.st-dist-badge {
  font-size: 0.75rem;
  color: #e8a800;
  white-space: nowrap;
}

.st-search .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.city-search-input {
  width: 100%;
  padding: 10px 16px 10px 36px;
  border: 1px solid #444;
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.city-search-input:focus {
  border-color: var(--accent);
}

.city-search-input::placeholder {
  color: var(--text-muted);
}

.st-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8a800;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.st-share-btn:hover {
  background: #ffc107;
}

.st-share-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: #1a1a2e;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 12px 16px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.st-share-option {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: none;
}

.st-share-wa {
  background: #25D366;
  color: #fff;
}
.st-share-wa:hover {
  background: #1ebe57;
}

.st-share-copy {
  background: #333;
  color: #fff;
}
.st-share-copy:hover {
  background: #444;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8a800;
  color: #000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(16px);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #ffc107;
}

.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;
  justify-content: center;
  padding: 8px 6px;
  background: #1a1a2e;
  border: 2px solid #2a2a4a;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  color: #ccc;
  overflow: hidden;
  text-align: center;
}

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

.st-cinema-card:hover { border-color: #f0ad4e; }
.st-cinema-name { font-size: 0.75rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.st-cinema-hall { font-size: 0.6rem; color: #888; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.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;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.st-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8a800;
  color: #000;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.st-directions-btn:hover {
  background: #ffc107;
  color: #000;
}

.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-backdrop { min-height: auto; }
  .mp-hero { flex-direction: column; gap: 24px; align-items: center; padding: 40px 20px 30px; }
  .mp-poster { width: 220px; }
  .mp-hero-info { text-align: center; }
  .mp-title { font-size: 2rem; }
  .mp-meta { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .mp-hero-buttons { justify-content: center; flex-wrap: wrap; }
  .mp-content { padding: 30px 20px 0; }
  .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-date-card { padding: 10px 14px; min-width: 60px; }
  .st-date-num { font-size: 1.2rem; }
  .st-dates { grid-template-columns: repeat(4, 1fr) !important; }
  .st-cinema-card { padding: 6px 4px; }
  .st-cinema-name { font-size: 0.68rem; }
  .st-cinema-hall { font-size: 0.55rem; }
  .st-venue-city { font-size: 1.1rem; }
  .st-time-card { min-width: 100px; padding: 10px 16px; }
}

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

.mp-notify-btn:hover {
  border-color: #4fc3f7;
  transform: translateY(-2px);
}

.mp-bell {
  font-size: 1.2rem;
}

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

.mp-notify-active {
  border-color: #4fc3f7;
  background: linear-gradient(135deg, #1a1a2e, #0a2a3e);
  color: #4fc3f7;
}

.mp-notify-active .mp-notify-count {
  background: #4fc3f7;
  color: #000;
  font-weight: 700;
}

.notify-form {
  margin-top: 16px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 20px;
}

.notify-form-text {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 12px;
}

.notify-form-row {
  display: flex;
  gap: 10px;
}

.notify-input {
  flex: 1;
  padding: 10px 16px;
  background: #0f0f1a;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.notify-input:focus {
  border-color: #4fc3f7;
}

.notify-submit-btn {
  margin-top: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Light theme notify */
.light-theme .mp-notify-btn { background: #f0f0f0; border-color: #0288d1; color: #0288d1; }
.light-theme .mp-notify-count { background: #ddd; color: #555; }
.light-theme .mp-notify-active .mp-notify-count { background: #0288d1; color: #fff; }
.light-theme .mp-notify-active { background: #e3f2fd; }

/* BookMyShow-style Interest Bar */
.bms-interest-bar, .bms-rate-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: 20px;
  width: 420px;
  max-width: 100%;
}
.bms-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bms-thumb {
  font-size: 1.5rem;
  color: #27ae60;
}
.bms-star {
  font-size: 1.5rem;
}
.bms-count {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.bms-count-label {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
}
.bms-sub {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}
.bms-rating-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.bms-rating-out {
  font-size: 0.9rem;
  color: #999;
  margin-right: 6px;
}
.bms-votes {
  font-size: 0.85rem;
  color: #999;
}
.bms-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color: #fff;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.bms-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.bms-btn-active {
  background: rgba(39,174,96,0.15);
  border-color: #27ae60;
  color: #27ae60;
}
.bms-btn-red {
  background: #e74c3c;
  border-color: #e74c3c;
  color: #fff;
}
.bms-btn-red:hover {
  background: #c0392b;
  border-color: #c0392b;
}

/* BookMyShow Review Form */
.bms-review-form {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
  text-align: center;
}
.bms-rf-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.bms-stars-select {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.bms-star-pick {
  font-size: 2.2rem;
  color: #444;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}
.bms-star-pick:hover,
.bms-star-pick.active {
  color: #f0ad4e;
  transform: scale(1.15);
}
.bms-rf-input {
  display: block;
  width: 100%;
  background: #0f0f1a;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #fff;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.bms-rf-input:focus {
  border-color: #f0ad4e;
  outline: none;
}
.bms-rf-textarea {
  resize: vertical;
  min-height: 80px;
}
.bms-rf-submit {
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  margin-top: 4px;
}
.bms-rf-submit:hover {
  background: #c0392b;
}

/* BookMyShow Reviews List */
.bms-reviews-list {
  margin-top: 24px;
}
.bms-review-card {
  display: flex;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #2a2a4a;
}
.bms-review-card:last-child {
  border-bottom: none;
}
.bms-rc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2a2a4a;
  color: #f0ad4e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.bms-rc-body {
  flex: 1;
  min-width: 0;
}
.bms-rc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.bms-rc-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.bms-rc-date {
  color: #666;
  font-size: 0.8rem;
}
.bms-rc-stars {
  color: #f0ad4e;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.bms-rc-stars .empty {
  color: #444;
}
.bms-rc-text {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Reviews Summary */
.bms-reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
}
.bms-rs-score {
  text-align: center;
  flex-shrink: 0;
}
.bms-rs-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: #f0ad4e;
}
.bms-rs-out {
  font-size: 1rem;
  color: #888;
}
.bms-rs-stars {
  color: #f0ad4e;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-top: 4px;
}
.bms-rs-stars .empty { color: #444; }
.bms-rs-count {
  font-size: 0.85rem;
  color: #888;
  margin-top: 4px;
}
.bms-rs-bars {
  flex: 1;
}
.bms-rs-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 0.8rem;
  color: #aaa;
}
.bms-rs-bar-label {
  width: 14px;
  text-align: right;
  flex-shrink: 0;
}
.bms-rs-bar-track {
  flex: 1;
  height: 6px;
  background: #2a2a4a;
  border-radius: 3px;
  overflow: hidden;
}
.bms-rs-bar-fill {
  height: 100%;
  background: #f0ad4e;
  border-radius: 3px;
}
.bms-rs-bar-count {
  width: 30px;
  font-size: 0.75rem;
  color: #666;
}

.light-theme .bms-reviews-summary { background: #f5f5f5; border-color: #ddd; }
.light-theme .bms-rs-bar-track { background: #ddd; }

.light-theme .bms-review-form { background: #f5f5f5; border-color: #ddd; }
.light-theme .bms-rf-title { color: #222; }
.light-theme .bms-rf-input { background: #fff; border-color: #ddd; color: #222; }
.light-theme .bms-review-card { border-bottom-color: #eee; }
.light-theme .bms-rc-avatar { background: #eee; color: #d4880f; }
.light-theme .bms-rc-name { color: #222; }
.light-theme .bms-rc-text { color: #555; }

.light-theme .bms-interest-bar, .light-theme .bms-rate-bar {
  background: #f5f5f5;
  border-color: #ddd;
}
.light-theme .bms-count, .light-theme .bms-count-label, .light-theme .bms-rating-val { color: #222; }
.light-theme .bms-btn { border-color: #ccc; color: #333; }
.light-theme .bms-btn:hover { background: #eee; }
.light-theme .notify-form { background: #fff; border-color: #ddd; }
.light-theme .notify-form-text { color: #555; }
.light-theme .notify-input { background: #f5f5f5; border-color: #ddd; color: #222; }
.light-theme .notify-input:focus { border-color: #0288d1; }

/* Homepage Notify Section */
.home-notify {
  text-align: center;
  background: #1a1a2e;
  border-radius: 16px;
  border: 1px solid #2a2a4a;
  padding: 40px 32px;
}

.home-notify .section-title {
  display: block;
  margin-bottom: 12px;
}

.home-notify-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.home-notify-desc {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.home-notify-form {
  max-width: 460px;
  margin: 0 auto;
}

.home-notify-form .notify-form-row {
  justify-content: center;
}

.home-notify-count {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #666;
}

.home-notify-count span {
  color: #f0ad4e;
  font-weight: 700;
}

.light-theme .home-notify { background: #fff; border-color: #ddd; }
.light-theme .home-notify-desc { color: #666; }
.light-theme .home-notify-count { color: #999; }
.light-theme .home-notify-count span { color: #d4880f; }

@media (max-width: 480px) {
  .notify-form-row { flex-direction: column; }
}

/* ===== Login Page ===== */
.login-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.login-box {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 16px;
  padding: 48px 36px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  transition: max-width 0.3s;
}

.login-box:has(#adminPanel[style*="block"]) {
  max-width: 600px;
}

.login-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.login-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.login-desc {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.login-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #0f0f1a;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  color: #fff;
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.login-input::placeholder { color: #555; }
.login-input:focus { border-color: #f0ad4e; }

.login-submit-btn {
  width: 100%;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
  border-radius: 10px;
}

.login-toggle {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #888;
}

.login-toggle a {
  color: #f0ad4e;
  text-decoration: none;
  font-weight: 600;
}

.login-toggle a:hover { text-decoration: underline; }

/* Profile view (logged in) */
.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0ad4e, #e67e22);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.profile-email {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.profile-badge {
  display: inline-block;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.profile-info {
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.login-signout-btn {
  background: transparent;
  border: 1px solid #666;
  color: #aaa;
  padding: 10px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
}

.login-signout-btn:hover {
  border-color: #f44336;
  color: #f44336;
  background: rgba(244, 67, 54, 0.08);
}

/* Nav login link */
.nav-login-link {
  color: #f0ad4e !important;
  font-weight: 600;
}

/* Light theme login */
.light-theme .login-box { background: #fff; border-color: #ddd; }
.light-theme .login-title { color: #222; }
.light-theme .login-desc { color: #666; }
.light-theme .login-input { background: #f5f5f5; border-color: #ddd; color: #222; }
.light-theme .login-input::placeholder { color: #999; }
.light-theme .login-input:focus { border-color: #d4880f; }
.light-theme .profile-name { color: #222; }
.light-theme .profile-email { color: #666; }
.light-theme .profile-info { color: #888; }
.light-theme .login-signout-btn { border-color: #ccc; color: #777; }

.verify-notice {
  background: rgba(255,152,0,0.08);
  border: 1px solid rgba(255,152,0,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: #ff9800;
  line-height: 1.5;
}

.verify-resend-btn {
  margin-top: 8px;
  background: none;
  border: 1px solid #ff9800;
  color: #ff9800;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
}

.verify-resend-btn:hover {
  background: rgba(255,152,0,0.12);
}

/* ===== Admin Panel ===== */
.admin-divider {
  height: 1px;
  background: #2a2a4a;
  margin: 32px 0;
}

.admin-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f0ad4e;
  margin-bottom: 20px;
  text-align: center;
}

.admin-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.admin-stat-card {
  flex: 1;
  background: #0f0f1a;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
}

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

.admin-stat-label {
  font-size: 0.7rem;
  color: #888;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-section {
  margin-bottom: 20px;
  text-align: left;
}

.admin-section-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #2a2a4a;
}

.admin-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.admin-toggle:hover { color: #f0ad4e; }

.admin-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
  color: #888;
}

.admin-toggle.open .admin-arrow {
  transform: rotate(90deg);
}

.admin-list-collapsed {
  display: none;
}

.admin-list-open {
  display: block;
}

.admin-list {
  max-height: 240px;
  overflow-y: auto;
}

.admin-list-item {
  padding: 10px 12px;
  background: #0f0f1a;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #ddd;
}

.admin-list-sub {
  font-size: 0.75rem;
  color: #888;
  margin-top: 2px;
}

.admin-list-pred {
  font-size: 0.8rem;
  color: #aaa;
  font-style: italic;
  margin-top: 4px;
}

.admin-empty {
  color: #666;
  font-size: 0.85rem;
  text-align: center;
  padding: 12px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-action-btn {
  background: #0f0f1a;
  border: 1px solid #2a2a4a;
  color: #f0ad4e;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

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

/* Light theme admin */
.light-theme .admin-divider { background: #ddd; }
.light-theme .admin-title { color: #d4880f; }
.light-theme .admin-stat-card { background: #f5f5f5; border-color: #ddd; }
.light-theme .admin-section-title { color: #222; border-color: #ddd; }
.light-theme .admin-list-item { background: #f5f5f5; color: #333; }
.light-theme .admin-list-sub { color: #888; }
.light-theme .admin-action-btn { background: #f5f5f5; border-color: #ddd; color: #d4880f; }
.light-theme .admin-action-btn:hover { border-color: #d4880f; }

/* Admin Movie Cards */
.admin-movies-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-movie-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0f0f1a;
  border-radius: 8px;
  padding: 10px;
}

.admin-movie-poster {
  width: 44px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.admin-movie-info {
  flex: 1;
  font-size: 0.85rem;
}

.admin-movie-info strong { color: #fff; }

.admin-movie-status {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  font-weight: 600;
}

.status-soon { background: rgba(33,150,243,0.15); color: #2196f3; }
.status-now { background: rgba(76,175,80,0.15); color: #4caf50; }
.status-ended { background: rgba(158,158,158,0.15); color: #9e9e9e; }

.admin-movie-btns {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.admin-movie-btns .admin-action-btn {
  padding: 4px 12px;
  font-size: 0.7rem;
}

.admin-delete-btn { color: #f44336 !important; border-color: rgba(244,67,54,0.3) !important; }
.admin-delete-btn:hover { border-color: #f44336 !important; background: rgba(244,67,54,0.08) !important; }

/* Admin Modal */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-modal-content {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  padding: 28px;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.admin-modal-header h3 {
  color: #f0ad4e;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.admin-modal-header .nav-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
}

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

.admin-form-subtitle {
  color: #aaa;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-song-row {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
}

.admin-song-row .login-input {
  margin-bottom: 0;
}

.admin-poster-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.admin-poster-row .login-input {
  flex: 1;
}

.admin-upload-btn {
  background: #f0ad4e;
  color: #000;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.admin-upload-btn:hover { opacity: 0.9; }

.admin-poster-preview {
  margin-bottom: 8px;
}

.light-theme .admin-modal-content { background: #fff; border-color: #ddd; }
.light-theme .admin-movie-card { background: #f5f5f5; }

@media (max-width: 480px) {
  .login-box { padding: 36px 24px; }
  .admin-stats { flex-direction: column; }
  .admin-actions { flex-direction: column; }
}

/* ===== Box Office ===== */
.bo-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  background: #1a1a2e;
  border-radius: 14px;
  border: 1px solid #2a2a4a;
  overflow: hidden;
}

.bo-header-poster {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.bo-header-text {
  padding: 16px 16px 16px 0;
}

.bo-header .page-title {
  margin-bottom: 4px;
}

.light-theme .bo-header { background: #fff; border-color: #ddd; }

@media (max-width: 480px) {
  .bo-header-poster { width: 70px; height: 70px; }
}

.bo-subtitle {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.bo-total-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.bo-total-item {
  flex: 1;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
}

.bo-total-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #f0ad4e;
}

.bo-total-label {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bo-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  overflow: hidden;
}

.bo-card {
  display: flex;
  align-items: center;
  background: #1a1a2e;
  padding: 16px 20px;
  gap: 16px;
  border-bottom: 1px solid #2a2a4a;
  transition: background 0.2s;
}

.bo-card:last-child {
  border-bottom: none;
}

.bo-card:hover {
  background: #1e1e36;
}

.bo-rank {
  color: #f0ad4e;
  font-weight: 800;
  font-size: 1.4rem;
  min-width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.bo-poster {
  width: 54px;
  height: 80px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.bo-poster-placeholder {
  width: 54px;
  height: 80px;
  flex-shrink: 0;
  background: #0f0f1a;
  border-radius: 6px;
}

.bo-info {
  flex: 1;
  min-width: 0;
}

.bo-movie-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.bo-dates {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0;
}

.bo-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.bo-stat {
  text-align: center;
}

.bo-stat-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #f0ad4e;
}

.bo-stat-label {
  display: block;
  font-size: 0.65rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bo-admits-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.bo-admits-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f0ad4e;
}

.bo-admits-label {
  font-size: 0.8rem;
  color: #888;
}

.bo-gross-small {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
}

.bo-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.bo-city-tag {
  background: rgba(240, 173, 78, 0.1);
  border: 1px solid rgba(240, 173, 78, 0.2);
  color: #f0ad4e;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.bo-disclaimer {
  text-align: center;
  color: #666;
  font-size: 0.75rem;
  margin-top: 20px;
  font-style: italic;
}

.bo-empty {
  text-align: center;
  color: #666;
  padding: 40px 20px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 14px;
}

.bo-admin-form {
  max-width: 500px;
  margin: 0 auto;
}

.bo-admin-form .login-input {
  margin-bottom: 10px;
}

/* Light theme box office */
.light-theme .bo-total-item { background: #fff; border-color: #ddd; }
.light-theme .bo-card { background: #fff; border-color: #ddd; }
.light-theme .bo-movie-name { color: #222; }
.light-theme .bo-empty { background: #fff; border-color: #ddd; }
.light-theme .bo-city-tag { background: rgba(212, 136, 15, 0.08); border-color: rgba(212, 136, 15, 0.2); color: #d4880f; }

@media (max-width: 600px) {
  .bo-total-bar { flex-direction: column; }
  .bo-card { flex-wrap: wrap; padding: 12px; gap: 10px; }
  .bo-poster { width: 45px; height: 67px; }
  .bo-rank { font-size: 1rem; min-width: 24px; }
  .bo-stats { gap: 16px; width: 100%; padding-left: 40px; }
  .bo-stat-val { font-size: 0.95rem; }
  .bo-movie-name { font-size: 0.95rem; }
}

/* ===== Reviews & Ratings ===== */
.review-locked {
  text-align: center;
  padding: 40px 20px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
}

.review-lock-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.review-lock-msg {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 6px;
}

.review-lock-sub {
  font-size: 0.85rem;
  color: #666;
}

.review-countdown {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #f0ad4e;
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.review-avg {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.review-avg-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #f0ad4e;
}

.review-avg-star {
  font-size: 1.6rem;
  color: #f0ad4e;
}

.review-avg-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-avg-stars {
  font-size: 1.2rem;
  color: #f0ad4e;
  letter-spacing: 2px;
}

.review-avg-count {
  font-size: 0.85rem;
  color: #888;
}

.review-bar-chart {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-bar-label {
  font-size: 0.75rem;
  color: #888;
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: #2a2a4a;
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #f0ad4e;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.rating-bar-count {
  font-size: 0.7rem;
  color: #666;
  width: 20px;
  flex-shrink: 0;
}

.review-form-box {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.review-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.review-stars-input {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.review-star-btn {
  font-size: 2rem;
  color: #555;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  user-select: none;
}

.review-star-btn:hover,
.review-star-btn.star-active {
  color: #f0ad4e;
  transform: scale(1.15);
}

.review-input,
.review-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0f0f1a;
  border: 1px solid #2a2a4a;
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

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

.review-textarea {
  resize: vertical;
  min-height: 70px;
}

.review-msg {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
}

.review-msg-err { color: #e94560; }
.review-msg-ok { color: #5cb85c; }

.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.review-card:hover {
  border-color: #3a3a5a;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.review-card-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.review-card-date {
  font-size: 0.75rem;
  color: #666;
}

.review-card-stars {
  color: #f0ad4e;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-card-text {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

/* Light theme reviews */
.light-theme .review-locked,
.light-theme .review-summary,
.light-theme .review-form-box,
.light-theme .review-card { background: #fff; border-color: #ddd; }
.light-theme .review-lock-msg { color: #333; }
.light-theme .review-lock-sub { color: #888; }
.light-theme .review-countdown { color: #d4880f; }
.light-theme .review-avg-num,
.light-theme .review-avg-star,
.light-theme .review-avg-stars { color: #d4880f; }
.light-theme .review-star-btn { color: #ccc; }
.light-theme .review-star-btn:hover,
.light-theme .review-star-btn.star-active { color: #d4880f; }
.light-theme .review-input,
.light-theme .review-textarea { background: #f5f5f5; border-color: #ddd; color: #222; }
.light-theme .review-input:focus,
.light-theme .review-textarea:focus { border-color: #d4880f; }
.light-theme .review-form-title { color: #222; }
.light-theme .review-card-name { color: #222; }
.light-theme .review-card-text { color: #444; }
.light-theme .review-card-stars { color: #d4880f; }
.light-theme .rating-bar-track { background: #eee; }
.light-theme .rating-bar-fill { background: #d4880f; }

/* ===== Coming Soon Page ===== */
.cs-page { max-width: 1100px; margin: 0 auto; padding: 30px 20px 60px; }
.cs-page-sub { text-align: center; color: #888; font-size: 1rem; margin-bottom: 32px; }
.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.cs-movie-card {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.cs-movie-card:hover {
  transform: translateY(-4px);
  border-color: #f0ad4e;
  box-shadow: 0 8px 24px rgba(240,173,78,0.15);
}
.cs-movie-poster {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}
.cs-movie-info {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-movie-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.cs-movie-cast {
  font-size: 0.8rem;
  color: #999;
  margin: 0;
  line-height: 1.4;
}
.cs-movie-meta {
  font-size: 0.78rem;
  color: #f0ad4e;
  margin: 0;
  font-weight: 600;
}
.cs-movie-date {
  font-size: 0.78rem;
  color: #888;
  margin: 4px 0 0;
}

/* Light theme Coming Soon */
.light-theme .cs-movie-card { background: #fff; border-color: #ddd; }
.light-theme .cs-movie-card:hover { border-color: #d4880f; box-shadow: 0 8px 24px rgba(212,136,15,0.12); }
.light-theme .cs-movie-name { color: #222; }
.light-theme .cs-movie-cast { color: #666; }
.light-theme .cs-movie-meta { color: #d4880f; }
.light-theme .cs-movie-date { color: #888; }
.light-theme .cs-page-sub { color: #666; }

/* ===== Reviews Page ===== */
.reviews-page { max-width: 800px; margin: 0 auto; padding: 30px 20px 60px; }
.rv-movie-section { margin-bottom: 40px; }
.rv-movie-header { margin-bottom: 24px; }
.rv-movie-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  padding: 14px 18px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  transition: border-color 0.2s;
}
.rv-movie-link:hover { border-color: #f0ad4e; }
.rv-single-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 16px;
}
.rv-bar-movie { font-size: 1.05rem; font-weight: 700; color: #fff; flex: 1; }
.rv-single-bar .rv-bar-value { font-size: 1.1rem; font-weight: 700; color: #f0ad4e; flex: 1; text-align: center; }
.rv-single-bar .rv-add-review-btn { flex-shrink: 0; display: inline-block; margin-top: 0; }
.light-theme .rv-single-bar { background: #fff; border-color: #ddd; }
.rv-user-review {
  padding: 12px 0;
  border-bottom: 1px solid #2a2a4a;
}
.rv-user-review:last-child { border-bottom: none; }
.light-theme .rv-user-review { border-bottom-color: #eee; }

/* Prediction Game */
.predict-section { margin-bottom: 32px; }
.predict-banner {
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #2a1a3e 100%);
  border: 1px solid #f0ad4e;
  border-radius: 12px;
  padding: 24px 20px;
  margin-bottom: 16px;
}
.predict-trophy { font-size: 2.5rem; margin-bottom: 8px; }
.predict-title { font-size: 1.4rem; font-weight: 800; color: #f0ad4e; margin: 0 0 8px; }
.predict-desc { color: #ccc; font-size: 0.95rem; margin: 0 0 12px; line-height: 1.5; }
.predict-countdown { margin-top: 8px; }
.predict-cd-num { font-size: 1.8rem; font-weight: 800; color: #f0ad4e; }
.predict-cd-label { font-size: 0.95rem; color: #aaa; }
.predict-form-box {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.predict-submit-btn { margin-top: 4px; display: inline-block; }
.predict-done { color: #4caf50; font-weight: 700; text-align: center; padding: 16px 0; margin: 0; }
.predict-list-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.predict-list-icon { font-size: 1.3rem; }
.predict-total {
  background: #f0ad4e;
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
}
.predict-item {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 10px;
}
.predict-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.predict-item-name { font-weight: 700; color: #fff; }
.predict-item-rating { font-weight: 700; color: #f0ad4e; }
.predict-item-line { color: #aaa; font-style: italic; margin: 0; font-size: 0.93rem; }

/* Light theme prediction */
.light-theme .predict-banner { background: linear-gradient(135deg, #fff8ed 0%, #fff3e0 100%); border-color: #d4880f; }
.light-theme .predict-title { color: #d4880f; }
.light-theme .predict-desc { color: #555; }
.light-theme .predict-cd-num { color: #d4880f; }
.light-theme .predict-cd-label { color: #777; }
.light-theme .predict-form-box { background: #fff; border-color: #ddd; }
.light-theme .predict-list-header { color: #222; }
.light-theme .predict-item { background: #fff; border-color: #ddd; }
.light-theme .predict-item-name { color: #222; }
.light-theme .predict-item-rating { color: #d4880f; }
.predict-rules {
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.predict-rules-title { font-size: 1.1rem; font-weight: 800; color: #f0ad4e; margin: 0 0 12px; }
.predict-rules-list { margin: 0; padding-left: 20px; color: #ccc; font-size: 0.93rem; line-height: 1.7; }
.predict-rules-list li { margin-bottom: 6px; }
.predict-rules-list a { color: #f0ad4e; text-decoration: underline; }
.light-theme .predict-rules { background: #fff; border-color: #ddd; }
.light-theme .predict-rules-title { color: #d4880f; }
.light-theme .predict-rules-list { color: #555; }
.light-theme .predict-rules-list a { color: #d4880f; }
.predict-share { text-align: center; margin-bottom: 16px; }
.predict-share-btn { display: inline-block; margin-top: 0; }
.predict-share-msg { color: #4caf50; font-weight: 700; margin-left: 12px; font-size: 0.9rem; }
.light-theme .predict-item-line { color: #666; }

/* Predict & Win button on homepage */
.predict-home-btn {
  display: inline-block;
  font-size: 1.1rem;
  padding: 14px 36px;
  background: linear-gradient(135deg, #f0ad4e 0%, #ec971f 100%);
  color: #000;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  animation: predict-pulse 2s ease-in-out infinite;
}
@keyframes predict-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 173, 78, 0.5); }
  50% { box-shadow: 0 0 20px 6px rgba(240, 173, 78, 0.3); }
}
.predict-home-btn:hover { transform: translateY(-2px); }

/* Reviews auto-slider on index */
.rv-auto-slider {
  display: block;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.2s;
}
.rv-auto-slider:hover { border-color: #f0ad4e; }
.rv-auto-track {
  display: flex;
  transition: transform 0.5s ease;
}
.rv-auto-item {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.rv-auto-name { font-size: 1rem; font-weight: 700; color: #fff; }
.rv-auto-rating { font-size: 1.1rem; font-weight: 700; color: #f0ad4e; }
.light-theme .rv-auto-slider { background: #fff; border-color: #ddd; }
.light-theme .rv-auto-slider:hover { border-color: #d4880f; }
.light-theme .rv-auto-name { color: #222; }
.light-theme .rv-auto-rating { color: #d4880f; }
.light-theme .rv-bar-movie { color: #222; }
.light-theme .rv-bar-value { color: #d4880f; }
.rv-movie-link-plain { cursor: default; }
.rv-movie-section + .rv-movie-section { margin-top: 48px; padding-top: 48px; border-top: 1px solid #2a2a4a; }
.light-theme .rv-movie-section + .rv-movie-section { border-top-color: #ddd; }
.rv-movie-poster { width: 60px; border-radius: 8px; }
.rv-movie-name { font-size: 1.2rem; font-weight: 700; color: #fff; margin: 0; }
.rv-movie-meta { font-size: 0.85rem; color: #888; margin: 4px 0 0; }

/* Reviews preview card on index */
.rv-preview-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  padding: 16px 20px;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
  max-width: 500px;
}
.rv-preview-card:hover { border-color: #f0ad4e; transform: translateY(-2px); }
.rv-preview-poster { width: 60px; border-radius: 8px; }
.rv-preview-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0; }
.rv-preview-meta { font-size: 0.8rem; color: #888; margin: 4px 0 0; }
.rv-preview-cta { font-size: 0.85rem; color: #f0ad4e; font-weight: 600; margin-top: 6px; display: inline-block; }

/* Featured rating card */
.rv-featured-card {
  border-color: #f0ad4e !important;
  position: relative;
}
.rv-featured-badge {
  background: #f0ad4e;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.rv-rating-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
}
.rv-rating-num {
  font-size: 2rem;
  font-weight: 800;
  color: #f0ad4e;
}
.rv-rating-out {
  font-size: 1rem;
  color: #888;
}
.rv-rating-stars {
  font-size: 1.2rem;
  color: #f0ad4e;
  margin-left: 8px;
  letter-spacing: 2px;
}
.rv-rating-small .rv-rating-num {
  font-size: 1.3rem;
}
.rv-rating-small .rv-rating-stars {
  font-size: 1rem;
}
.rv-rate-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rv-rate-input {
  width: 100px !important;
  flex: none !important;
}
.rv-rate-label {
  color: #888;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Light theme Reviews */
.light-theme .rv-featured-card { border-color: #d4880f !important; }
.light-theme .rv-featured-badge { background: #d4880f; }
.light-theme .rv-rating-num { color: #d4880f; }
.light-theme .rv-rating-stars { color: #d4880f; }
.light-theme .rv-movie-link,
.light-theme .rv-preview-card { background: #fff; border-color: #ddd; }
.light-theme .rv-movie-link:hover,
.light-theme .rv-preview-card:hover { border-color: #d4880f; }
.light-theme .rv-movie-name,
.light-theme .rv-preview-name { color: #222; }
.light-theme .rv-preview-cta { color: #d4880f; }

@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; }
}
