/* ── Room colour tokens ─────────────────────────────────────────── */
:root {
  --room-theatre:     #C9973A;
  --room-screen-one:  #2A9D8F;
  --room-screen-two:  #E07A5F;
  --room-virtual:     #4A6FA5;
  --bo-gold:       #bfa854;
  --bo-bg:         #032235;
  --bo-surface:    rgba(255,255,255,0.04);
  --bo-border:     rgba(191,168,84,0.18);
}

/* ── Room badges ────────────────────────────────────────────────── */
.room-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #032235;
}
.room-badge--Theatre     { background: var(--room-theatre); }
.room-badge--Screen-One  { background: var(--room-screen-one); }
.room-badge--Screen-Two  { background: var(--room-screen-two); }
.room-badge--Virtual     { background: var(--room-virtual); }

.room-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.room-dot--Theatre     { background: var(--room-theatre); }
.room-dot--Screen-One  { background: var(--room-screen-one); }
.room-dot--Screen-Two  { background: var(--room-screen-two); }
.room-dot--Virtual     { background: var(--room-virtual); }

/* ── Auth forms ─────────────────────────────────────────────────── */
.bo-form-wrap {
  max-width: 440px;
  margin: 60px auto;
  background: var(--bo-surface);
  border: 1px solid var(--bo-border);
  border-radius: 8px;
  padding: 40px 36px;
}
.bo-form-wrap h1 { font-size: 24px; margin: 0 0 8px; color: #f5f5fb; }
.bo-form-wrap .sub { color: #a0bac8; margin: 0 0 28px; font-size: 15px; }
.bo-form-wrap .form-group { margin-bottom: 18px; }
.bo-form-wrap label { display: block; font-size: 13px; color: #a0bac8; margin-bottom: 6px; font-weight:600; }
.bo-form-wrap input[type=text],
.bo-form-wrap input[type=email],
.bo-form-wrap input[type=password],
.bo-form-wrap input[type=number],
.bo-form-wrap select,
.bo-form-wrap textarea {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(191,168,84,0.25);
  border-radius: 4px; color: #f5f5fb;
  font-size: 15px; box-sizing: border-box;
  transition: border-color .2s;
}
.bo-form-wrap input:focus, .bo-form-wrap select:focus, .bo-form-wrap textarea:focus {
  outline: none; border-color: #bfa854;
}
.bo-form-wrap .form-error { color: #E07A5F; font-size: 13px; margin-top: 16px; }
.bo-form-wrap .form-link  { font-size: 13px; color: #a0bac8; margin-top: 16px; text-align:center; }
.bo-form-wrap .form-link a { color: #bfa854; }

/* ── Schedule grid ──────────────────────────────────────────────── */
.schedule-grid { display: grid; gap: 12px; }
.screening-card {
  background: var(--bo-surface);
  border: 1px solid var(--bo-border);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .2s;
}
.screening-card:hover { border-color: rgba(191,168,84,0.4); }
.screening-card__time { min-width: 80px; font-size: 13px; color: #a0bac8; padding-top: 2px; }
.screening-card__body { flex: 1; }
.screening-card__title { font-size: 16px; font-weight: 700; color: #f5f5fb; margin: 0 0 4px; }
.screening-card__meta  { font-size: 13px; color: #a0bac8; display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-top:6px; }
.screening-card__flag  { font-size: 11px; background: rgba(191,168,84,0.15); color: #bfa854; border-radius: 3px; padding: 2px 7px; }

/* ── Currently Screening banner ─────────────────────────────────── */
.now-screening {
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.35);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 8px;
}
.now-screening__label {
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #C9973A; margin: 0 0 6px;
}
.now-screening__title { font-size: 20px; font-weight: 700; color: #f5f5fb; margin: 0 0 4px; }
.now-screening__meta  { font-size: 13px; color: #a0bac8; }

/* ── Wishlist ────────────────────────────────────────────────────── */
.wishlist-conflict { background: rgba(224,122,95,0.1); border-left: 3px solid #E07A5F; padding: 10px 14px; border-radius: 0 4px 4px 0; font-size: 13px; color: #E07A5F; margin-top: 8px; }

/* ── Donate float button ─────────────────────────────────────────── */
.donate-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  background: #bfa854; color: #032235;
  border: none; border-radius: 24px;
  padding: 12px 22px; font-size: 14px; font-weight: 700;
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform .15s, background .15s;
}
.donate-float:hover { transform: translateY(-2px); background: #C9973A; }

/* ── Donate modal ────────────────────────────────────────────────── */
.donate-modal-overlay {
  position: fixed; inset: 0; background: rgba(3,34,53,.85);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.donate-modal-overlay.open { opacity: 1; pointer-events: all; }
.donate-modal {
  background: #032235; border: 1px solid rgba(191,168,84,0.3);
  border-radius: 10px; padding: 36px 32px; width: 100%; max-width: 420px;
  position: relative;
}
.donate-modal h2 { font-size: 22px; margin: 0 0 6px; color: #f5f5fb; }
.donate-modal .sub { color: #a0bac8; font-size: 14px; margin: 0 0 24px; }
.donate-modal__close { position:absolute; top:14px; right:16px; background:none; border:none; color:#a0bac8; font-size:22px; cursor:pointer; }
.donate-amount-row { display:flex; align-items:center; gap:0; margin-bottom:18px; }
.donate-amount-prefix { background:rgba(191,168,84,0.15); border:1.5px solid rgba(191,168,84,0.35); border-right:none; color:#bfa854; font-weight:700; font-size:18px; padding:10px 14px; border-radius:4px 0 0 4px; }
.donate-amount-row input { border-radius:0 4px 4px 0 !important; border-left:none !important; font-size:18px; font-weight:600; }

/* ── Stars rating ────────────────────────────────────────────────── */
.star-rating { display:flex; gap:6px; flex-direction:row-reverse; justify-content:flex-end; }
.star-rating input { display:none; }
.star-rating label { font-size:28px; cursor:pointer; color:#333; transition:color .1s; }
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label { color:#bfa854; }

/* ── Admin sidebar layout ────────────────────────────────────────── */
.admin-layout { display:flex; min-height:100vh; }
.admin-sidebar {
  width: 220px; flex-shrink:0;
  background: rgba(0,0,0,.3);
  border-right: 1px solid var(--bo-border);
  padding: 24px 0;
}
.admin-sidebar__logo { padding: 0 20px 24px; border-bottom: 1px solid var(--bo-border); margin-bottom:16px; }
.admin-sidebar__logo img { height:36px; }
.admin-nav__item { display:block; padding:10px 20px; color:#a0bac8; font-size:14px; text-decoration:none; border-left: 3px solid transparent; transition: all .15s; }
.admin-nav__item:hover, .admin-nav__item.active { color:#f5f5fb; background:rgba(191,168,84,0.06); border-left-color:#bfa854; }
.admin-main { flex:1; padding:32px; overflow-x:auto; }
.admin-main h1 { font-size:24px; margin:0 0 24px; color:#f5f5fb; }

/* ── Stats cards ─────────────────────────────────────────────────── */
.stat-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:16px; margin-bottom:32px; }
.stat-card { background:var(--bo-surface); border:1px solid var(--bo-border); border-radius:6px; padding:20px; }
.stat-card__number { font-size:36px; font-weight:800; color:#bfa854; line-height:1; }
.stat-card__label  { font-size:13px; color:#a0bac8; margin-top:4px; }

/* ── Poll card ───────────────────────────────────────────────────── */
.poll-card { background:var(--bo-surface); border:1px solid var(--bo-border); border-radius:8px; padding:24px; margin-bottom:16px; }
.poll-card h3 { font-size:17px; margin:0 0 16px; color:#f5f5fb; }
.poll-option { display:flex; gap:10px; align-items:center; margin-bottom:10px; }
.poll-option label { cursor:pointer; font-size:15px; color:#c8d8e0; flex:1; }
.poll-bar-wrap { height:6px; background:rgba(255,255,255,0.08); border-radius:3px; flex:1; overflow:hidden; }
.poll-bar { height:100%; background:#bfa854; border-radius:3px; transition:width .4s; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media(max-width:700px) {
  .admin-layout { flex-direction:column; }
  .admin-sidebar { width:100%; padding:12px 0; border-right:none; border-bottom:1px solid var(--bo-border); }
  .admin-main { padding:20px 16px; }
  .bo-form-wrap { padding:28px 20px; margin:32px 16px; }
  .donate-float { bottom:16px; right:16px; }
}
/* ── User nav menu ───────────────────────────────────────────────── */
.bo-user-toggle {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.bo-user-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #bfa854;
  color: #032235;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.bo-user-name {
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
.bo-user-dropdown {
  min-width: 220px !important;
  right: 0 !important;
  left: auto !important;
}
.bo-user-dropdown__header {
  padding: 12px 16px 10px !important;
  border-bottom: 1px solid rgba(191,168,84,.15);
  margin-bottom: 4px;
}
.bo-user-dropdown__header span {
  display: block;
  font-weight: 700;
  color: #f5f5fb;
  font-size: 14px;
}
.bo-user-dropdown__header small {
  display: block;
  color: #a0bac8;
  font-size: 12px;
  margin-top: 2px;
}
.bo-user-dropdown__divider {
  border-top: 1px solid rgba(191,168,84,.12);
  margin: 4px 0;
  padding: 0 !important;
  height: 0 !important;
}

/* ── Schedule page ───────────────────────────────────────────────── */
.schedule-filter-panel { margin-bottom: 32px; }
.sched-day-heading {
  font-size: 18px; color: #bfa854;
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(191,168,84,.2);
  display: flex; align-items: center; gap: 12px;
}
.sched-day-count {
  font-size: 13px; font-weight: 400;
  color: #a0bac8; letter-spacing: 0;
}

/* Card grid */
.sched-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual card */
.sched-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 4px solid var(--accent, #bfa854);
  border-radius: 0 8px 8px 0;
  overflow: hidden;
  transition: border-color .2s, transform .15s;
  position: relative;
}
.sched-card:hover {
  border-color: var(--accent, #bfa854);
  transform: translateX(2px);
}

/* Poster thumbnail */
.sched-card__poster-link {
  display: block;
  width: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(0,0,0,.3);
  align-self: stretch;
}
.sched-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 120px;
}
.sched-card__poster-fallback {
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(191,168,84,.06);
}

/* Body */
.sched-card__body {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 14px 16px;
  align-items: start;
}

/* Time block */
.sched-card__time {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}
.sched-card__time-start {
  font-size: 15px;
  font-weight: 700;
  color: #f5f5fb;
  line-height: 1.2;
}
.sched-card__time-end {
  font-size: 12px;
  color: #a0bac8;
}
.sched-card__duration {
  font-size: 11px;
  color: #a0bac8;
  margin-top: 4px;
}

/* Film info */
.sched-card__info { flex: 1; min-width: 0; }
.sched-card__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #f5f5fb;
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.3;
  transition: color .15s;
}
.sched-card__title:hover { color: #bfa854; }
.sched-card__director {
  font-size: 13px;
  color: #a0bac8;
  margin: 0 0 8px;
  line-height: 1.4;
}
.sched-card__country-link {
  color: #a0bac8;
  text-decoration: none;
  transition: color .15s;
}
.sched-card__country-link:hover { color: #bfa854; }
.sched-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.sched-card__genre-chip {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(191,168,84,.3);
  color: #a0bac8;
  text-decoration: none;
  transition: all .15s;
  letter-spacing: .02em;
}
.sched-card__genre-chip:hover {
  border-color: #bfa854;
  color: #bfa854;
}
.sched-card__notes {
  font-size: 12px;
  color: #a0bac8;
  margin: 8px 0 0;
  line-height: 1.5;
}

/* Wishlist action */
.sched-card__actions { display: flex; flex-direction: column; align-items: center; gap: 4px; padding-top: 2px; }
.sched-card__wl-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(191,168,84,.3);
  background: none;
  color: #a0bac8;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
  flex-shrink: 0;
}
.sched-card__wl-btn:hover { border-color: #bfa854; color: #bfa854; }
.sched-card__wl-btn--saved { background: rgba(191,168,84,.15); color: #bfa854; border-color: #bfa854; }

/* Room chip hover state */
.room-badge { text-decoration: none; transition: opacity .15s; cursor: pointer; }
.room-badge:hover { opacity: .8; }

/* Responsive */
@media (max-width: 700px) {
  .sched-card { grid-template-columns: 64px 1fr; }
  .sched-card__poster-link { width: 64px; }
  .sched-card__body { grid-template-columns: 60px 1fr; gap: 8px; padding: 10px 12px; }
  .sched-card__actions { flex-shrink: 0; }
  .sched-card__time-start { font-size: 13px; }
  .sched-card__title { font-size: 14px; }
}
@media (max-width: 480px) {
  .sched-card { grid-template-columns: 1fr; }
  .sched-card__poster-link { width: 100%; height: 140px; }
  .sched-card__poster { height: 140px; }
}

.room-nav-card {
  display: block;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 4px solid;
  border-radius: 6px;
  padding: 16px 18px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.room-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.room-nav-card__desc {
  font-size: 12px;
  color: #a0bac8;
  margin: 8px 0 0;
}

/* ── Virtual Screening Day ──────────────────────────────────────── */
.virtual-screening {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 40px;
}
.virtual-screening__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.virtual-screening__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid #bfa854;
  color: #bfa854;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.virtual-screening__title {
  font-size: 28px;
  font-weight: 800;
  color: #f5f5fb;
  margin: 0 0 12px;
}
.virtual-screening__body {
  color: #a0bac8;
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 24px;
}
.virtual-screening__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}
.virtual-screening__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f5f5fb;
  font-size: 14px;
  font-weight: 600;
}
.virtual-screening__meta-item svg {
  color: #bfa854;
  flex-shrink: 0;
}
.virtual-screening__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .virtual-screening__meta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .virtual-screening__ctas {
    flex-direction: column;
    width: 100%;
  }
  .virtual-screening__ctas .u-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Now Screening live dot ─────────────────────────────────────── */
.now-live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #E07A5F;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.4); }
}

/* ── Skeleton loader ────────────────────────────────────────────── */
.screening-skeleton { padding: 8px 0; }
.skeleton-bar {
  background: linear-gradient(90deg, rgba(255,255,255,.05) 25%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.05) 75%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── Now Screening card ─────────────────────────────────────────── */
.now-screening-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  background: rgba(201,151,58,.1);
  border: 1px solid rgba(201,151,58,.35);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 12px;
  transition: transform .15s, border-color .2s;
}
.now-screening-card:hover { transform: translateY(-2px); border-color: rgba(201,151,58,.7); }
.now-screening-card__poster {
  width: 100px; flex-shrink: 0;
  overflow: hidden; background: rgba(0,0,0,.3);
}
.now-poster {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 140px;
}
.now-screening-card__body {
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.now-screening-card__label {
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #C9973A;
  display: flex; align-items: center; margin: 0;
}
.now-screening-card__title {
  font-size: 20px; font-weight: 700; color: #f5f5fb;
  margin: 0; line-height: 1.25;
}
.now-screening-card__meta {
  font-size: 13px; color: #a0bac8; margin: 0;
}
.now-screening-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.now-screening-card__time {
  font-size: 13px; color: #bfa854; font-weight: 600; margin: 4px 0 0;
}

/* ── No screening message ────────────────────────────────────────── */
.no-screening-msg {
  background: rgba(255,255,255,.02);
  border: 1px dashed rgba(191,168,84,.2);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}
.no-screening-msg__icon { font-size: 40px; margin: 0 0 12px; }
.no-screening-msg__text { color: #c8d8e0; font-size: 16px; margin: 0 0 6px; }
.no-screening-msg__sub  { color: #a0bac8; font-size: 14px; margin: 0; }

/* ── Up Next header ──────────────────────────────────────────────── */
.up-next-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin: 36px 0 16px;
}
.up-next-title {
  font-size: 16px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #a0bac8; margin: 0;
}
.up-next-see-all {
  font-size: 13px; color: #bfa854; text-decoration: none;
  transition: opacity .15s;
}
.up-next-see-all:hover { opacity: .75; }

/* ── Up Next grid ────────────────────────────────────────────────── */
.up-next-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.up-next-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .15s, border-color .2s;
}
.up-next-card:hover {
  transform: translateY(-3px);
  border-color: rgba(191,168,84,.35);
}
.up-next-card__poster {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: rgba(0,0,0,.3);
  position: relative;
  flex-shrink: 0;
}
.up-next-poster {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.up-next-card__body {
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 5px;
  flex: 1;
}
.up-next-card__room { margin-bottom: 2px; }
.up-next-card__title {
  font-size: 14px; font-weight: 700;
  color: #f5f5fb; margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.up-next-card__director {
  font-size: 12px; color: #a0bac8; margin: 0;
  line-height: 1.4;
}
.up-next-card__country {
  color: #a0bac8;
}
.up-next-card__time {
  font-size: 12px; color: #bfa854; margin: 4px 0 0;
  font-weight: 600;
}
.up-next-card__date { font-weight: 400; color: #a0bac8; }
.up-next-card__flag {
  font-size: 11px; background: rgba(191,168,84,.12);
  color: #bfa854; border-radius: 3px;
  padding: 2px 6px; margin: 2px 0 0;
  display: inline-block;
}

/* poster fallback */
.poster-fallback {
  width: 100%; height: 100%; min-height: 120px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  background: rgba(191,168,84,.05);
}

/* Responsive */
@media (max-width: 600px) {
  .now-screening-card { grid-template-columns: 80px 1fr; }
  .now-screening-card__poster { width: 80px; }
  .now-screening-card__title { font-size: 16px; }
  .up-next-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ── Back navigation ─────────────────────────────────────────────── */
.back-nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #a0bac8; font-size: 14px; text-decoration: none;
  padding: 6px 0; transition: color .15s;
}
.back-nav-link:hover { color: #bfa854; }

/* ── Film hero ───────────────────────────────────────────────────── */
.film-hero { padding-bottom: 0 !important; }
.film-hero__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.film-hero__poster-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  flex-shrink: 0;
}
.film-hero__poster { width: 100%; display: block; }
.film-hero__poster-fallback {
  width: 100%; aspect-ratio: 2/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; background: rgba(191,168,84,.06);
}
.film-hero__category {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #bfa854; margin: 0 0 10px;
}
.film-hero__title {
  font-size: 28px; font-weight: 800; color: #f5f5fb;
  margin: 0 0 12px; line-height: 1.2;
}
.film-hero__meta {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-size: 14px; color: #a0bac8; margin-bottom: 12px;
}
.film-hero__meta span + span::before { content:'·'; margin-right: 16px; display: none; }
.film-hero__rating {
  display: flex; align-items: center; gap: 6px; margin-bottom: 14px;
}
.film-hero__stars { color: #bfa854; font-size: 18px; }
.film-hero__rating-avg { font-size: 16px; font-weight: 700; color: #bfa854; }
.film-hero__rating-cnt { font-size: 13px; color: #a0bac8; }
.film-hero__synopsis {
  font-size: 15px; color: #c8d8e0; line-height: 1.8; margin: 0 0 24px;
}
.film-hero__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.film-hero__films-link { font-size: 14px; }

/* ── Film detail grid ────────────────────────────────────────────── */
.film-detail-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  padding-top: 32px;
  padding-bottom: 48px;
  align-items: start;
}
.film-section-title {
  font-size: 18px; font-weight: 700; color: #bfa854;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(191,168,84,.2);
}

/* ── Rating form ─────────────────────────────────────────────────── */
.film-rating-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(191,168,84,.18);
  border-radius: 8px;
  padding: 20px 24px;
}
.film-rating-textarea {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(191,168,84,.2); border-radius: 4px;
  color: #f5f5fb; padding: 10px 14px; font-size: 14px;
  box-sizing: border-box; resize: vertical; min-height: 80px;
  transition: border-color .2s;
}
.film-rating-textarea:focus { outline: none; border-color: #bfa854; }
.rating-msg { font-size: 13px; margin-top: 8px; min-height: 18px; }

/* ── Related films sidebar ────────────────────────────────────────── */
.film-related { position: sticky; top: 20px; }
.related-card {
  display: flex; gap: 12px; align-items: center;
  text-decoration: none;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px; padding: 10px;
  transition: border-color .15s, transform .15s;
}
.related-card:hover { border-color: rgba(191,168,84,.35); transform: translateX(3px); }
.related-card__poster {
  width: 48px; height: 72px;
  object-fit: cover; border-radius: 3px; flex-shrink: 0;
}
.related-card__poster--fallback {
  width: 48px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; background: rgba(191,168,84,.06);
  border-radius: 3px; flex-shrink: 0;
}
.related-card__title {
  font-size: 13px; font-weight: 700; color: #f5f5fb;
  margin: 0 0 4px; line-height: 1.3;
}
.related-card__dir { font-size: 12px; color: #a0bac8; margin: 0; }

/* ── Mobile filter accordion ─────────────────────────────────────── */
@media (max-width: 768px) {
  .schedule-filter-panel { margin-bottom: 20px; }
  .filter-section {
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .filter-section .filter-label {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; margin-bottom: 0; cursor: pointer;
    font-size: 13px;
  }
  .filter-section .filter-label::after {
    content: '▾';
    font-size: 12px;
    transition: transform .2s;
  }
  .filter-section.open .filter-label::after { transform: rotate(180deg); }
  .filter-section .filter-chips {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height .3s ease;
    padding-bottom: 0;
  }
  .filter-section.open .filter-chips {
    max-height: 1200px !important;
    padding-bottom: 12px;
  }
  .filter-show-more { display: none !important; }

  /* Show active filter always visible even on mobile */
  .filter-chip--active { display: inline-block !important; }

  /* Film hero mobile */
  .film-hero__inner {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .film-hero__poster-wrap { max-width: 200px; margin: 0 auto; }
  .film-hero__title { font-size: 22px; }
  .film-detail-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .film-related { position: static; }
}

/* ── Wishlist page — use sched-card style ────────────────────────── */
.wishlist-sched-grid { display: flex; flex-direction: column; gap: 12px; }
/* ── Film page wishlist strip ────────────────────────────────────── */
.film-wishlist-strip {
  background: rgba(191,168,84,.07);
  border: 1px solid rgba(191,168,84,.2);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.film-wishlist-strip__label {
  font-size: 13px; font-weight: 600;
  color: #a0bac8; margin: 0 0 12px;
  text-transform: uppercase; letter-spacing: .06em;
}
.film-wishlist-strip__btns {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.film-wl-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: none;
  border: 2px solid;
  border-radius: 24px;
  cursor: pointer;
  font-size: 14px;
  transition: all .15s;
  color: #f5f5fb;
}
.film-wl-pill:hover { opacity: .85; transform: scale(1.02); }
.film-wl-pill--saved { font-weight: 700; }
.film-wl-pill__room {
  font-weight: 700; font-size: 13px;
}
.film-wl-pill__time {
  font-size: 13px; color: inherit; opacity: .85;
}
.film-wl-pill__icon {
  font-size: 16px;
}

/* On mobile — make pills full width for easy tapping */
@media (max-width: 600px) {
  .film-wl-pill {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
  }
  .film-wishlist-strip {
    margin-bottom: 16px;
  }
}


/* ── Poll Banner ──────────────────────────────────────────────────────────── */
.poll-banner {
  background: linear-gradient(135deg, rgba(191,168,84,.18) 0%, rgba(3,34,53,.95) 100%);
  border-bottom: 2px solid rgba(191,168,84,.35);
  padding: 14px 0;
  position: relative;
  z-index: 10;
  animation: pb-slide-in .35s ease;
}
@keyframes pb-slide-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.poll-banner__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.poll-banner__icon {
  font-size: 22px;
  flex-shrink: 0;
  display: none; /* hide on mobile, show on desktop */
}
.poll-banner__body {
  flex: 1;
  min-width: 200px;
}
.poll-banner__q {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #f5f5fb;
  line-height: 1.3;
}
.poll-banner__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.poll-banner__opt {
  background: rgba(191,168,84,.12);
  border: 1.5px solid rgba(191,168,84,.4);
  border-radius: 20px;
  color: #f5f5fb;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .12s;
  white-space: nowrap;
}
.poll-banner__opt:hover {
  background: rgba(191,168,84,.3);
  border-color: #bfa854;
  transform: scale(1.03);
}
.poll-banner__more {
  font-size: 13px;
  color: #bfa854;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.poll-banner__more:hover { text-decoration: underline; }
.poll-banner__dismiss {
  background: none;
  border: none;
  color: #a0bac8;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  flex-shrink: 0;
  opacity: .7;
}
.poll-banner__dismiss:hover { opacity: 1; color: #f5f5fb; }

@media (min-width: 700px) {
  .poll-banner__icon { display: block; }
}

@media (max-width: 500px) {
  .poll-banner__q { font-size: 13px; }
  .poll-banner__opt { font-size: 12px; padding: 5px 12px; }
  .poll-banner__more { display: none; }
}

/* ── Mobile filter improvements ──────────────────────────────────────────── */
/* Make filter-label act as a proper button/toggle */
.filter-section .filter-label {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
/* Active filter indicator in collapsed state */
.filter-section .filter-label .filter-active-badge {
  display: none;
  background: #bfa854;
  color: #032235;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  padding: 2px 7px;
  margin-left: 6px;
}
@media (max-width: 768px) {
  .filter-section .filter-label .filter-active-badge { display: inline-block; }
  .filter-section.open .filter-label .filter-active-badge { display: none; }

  /* Sticky filter toggle button */
  .schedule-filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(191,168,84,.12);
    border: 1.5px solid rgba(191,168,84,.3);
    border-radius: 8px;
    color: #f5f5fb;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    cursor: pointer;
    margin-bottom: 12px;
    width: 100%;
    justify-content: space-between;
    -webkit-tap-highlight-color: transparent;
  }
  .schedule-filter-toggle-btn .sftb-count {
    background: #bfa854;
    color: #032235;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
  }

  .schedule-filter-panel {
    background: rgba(3,34,53,.6);
    border: 1px solid rgba(191,168,84,.15);
    border-radius: 10px;
    padding: 0 12px;
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease, padding .3s ease;
  }
  .schedule-filter-panel.mobile-open {
    max-height: 4000px;
    padding: 8px 12px 12px;
  }
}
@media (min-width: 769px) {
  .schedule-filter-toggle-btn { display: none; }
}

/* ── Float button group ─────────────────────────────────────────────────── */
.float-btn-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.float-btn-group .donate-float {
  position: static;
}
.poll-float {
  background: #032235;
  color: #bfa854;
  border: 2px solid #bfa854;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform .15s, background .15s, color .15s;
  white-space: nowrap;
}
.poll-float:hover {
  transform: translateY(-2px);
  background: #bfa854;
  color: #032235;
}

/* ── Poll modal ─────────────────────────────────────────────────────────── */
.poll-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3,34,53,.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.poll-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.poll-modal {
  background: #0a1f2e;
  border: 1.5px solid rgba(191,168,84,.3);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform .25s;
  text-align: center;
}
.poll-modal-overlay.open .poll-modal { transform: translateY(0); }
.poll-modal__close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  color: #a0bac8; font-size: 24px;
  line-height: 1; cursor: pointer; opacity: .7;
  transition: opacity .15s;
}
.poll-modal__close:hover { opacity: 1; color: #f5f5fb; }
.poll-modal__icon { font-size: 36px; margin-bottom: 10px; }
.poll-modal__title { color: #bfa854; font-size: 18px; margin: 0 0 10px; font-weight: 700; }
.poll-modal__q { color: #f5f5fb; font-size: 16px; font-weight: 600; margin: 0 0 22px; line-height: 1.4; }
.poll-modal__opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.poll-modal__opt {
  background: rgba(191,168,84,.08);
  border: 1.5px solid rgba(191,168,84,.3);
  border-radius: 10px;
  color: #f5f5fb;
  font-size: 15px; font-weight: 600;
  padding: 12px 18px;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .12s;
  text-align: left;
}
.poll-modal__opt:hover { background: rgba(191,168,84,.2); border-color: #bfa854; transform: translateX(3px); }
.poll-modal__thanks { color: #bfa854; font-size: 15px; font-weight: 700; padding: 16px 0 8px; }
.poll-modal__footer { margin: 0; }
.poll-modal__see-all { color: #a0bac8; font-size: 13px; text-decoration: none; }
.poll-modal__see-all:hover { color: #bfa854; text-decoration: underline; }

@media (max-width: 480px) {
  .float-btn-group { bottom: 18px; right: 16px; flex-wrap: wrap; justify-content: flex-end; }
  .poll-float { font-size: 13px; padding: 9px 16px; }
  .poll-modal { padding: 28px 20px; }
  .poll-modal__q { font-size: 14px; }
}

/* ── Auth page two-column layout ─────────────────────────────────────────── */
.auth-page-layout {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1080px;
  margin: 0 auto;
  gap: 0;
  align-items: stretch;
}

/* Left: onboarding panel */
.auth-onboarding {
  background: none;
  border-right: 1px solid rgba(191,168,84,.15);
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.auth-onboarding__logo { margin-bottom: 32px; }
.auth-onboarding__title {
  font-size: 2rem;
  font-weight: 800;
  color: #f5f5fb;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.auth-onboarding__sub {
  font-size: 13px;
  color: #bfa854;
  font-weight: 600;
  margin: 0 0 36px;
  letter-spacing: .02em;
}
.auth-onboarding__features {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.auth-onboarding__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.auth-onboarding__icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(191,168,84,.1);
  border: 1px solid rgba(191,168,84,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.auth-onboarding__features li div strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #f5f5fb;
  margin-bottom: 2px;
}
.auth-onboarding__features li div p {
  margin: 0;
  font-size: 13px;
  color: #a0bac8;
  line-height: 1.4;
}
.auth-onboarding__badge {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(191,168,84,.08);
  border: 1px solid rgba(191,168,84,.2);
  border-radius: 8px;
  padding: 12px 16px;
}
.auth-onboarding__badge span { font-size: 20px; }
.auth-onboarding__badge p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #bfa854;
}

/* Right: form panel */
.auth-form-panel {
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-form-panel h1 {
  font-size: 1.6rem;
  margin: 0 0 8px;
  color: #f5f5fb;
}
.auth-form-panel .sub {
  font-size: 14px;
  color: #a0bac8;
  margin: 0 0 28px;
  line-height: 1.5;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .auth-page-layout {
    grid-template-columns: 1fr;
  }
  .auth-onboarding {
    border-right: none;
    border-bottom: 1px solid rgba(191,168,84,.15);
    padding: 36px 24px 32px;
  }
  .auth-onboarding__title { font-size: 1.5rem; }
  .auth-onboarding__features { gap: 16px; }
  .auth-form-panel { padding: 36px 24px 48px; }
}
@media (max-width: 480px) {
  .auth-onboarding { padding: 28px 20px 24px; }
  .auth-form-panel { padding: 28px 20px 40px; }
  .auth-onboarding__title { font-size: 1.3rem; }
}

/* ── Auth form panel overrides inside two-col layout ─────────────────────── */
.auth-page-layout .bo-form-wrap {
  max-width: none;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .auth-page-layout .bo-form-wrap {
    padding: 36px 24px 48px;
  }
}
@media (max-width: 480px) {
  .auth-page-layout .bo-form-wrap {
    padding: 28px 20px 40px;
  }
}

/* ── Film detail: Screening TBD notice ───────────────────────────────────── */
.film-tbd-notice {
  background: rgba(255,255,255,.02);
  border: 1px dashed rgba(191,168,84,.2);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}
.film-tbd-notice__icon { font-size: 40px; margin: 0 0 12px; }
.film-tbd-notice__text { color: #c8d8e0; font-size: 16px; margin: 0 0 6px; font-weight: 600; }
.film-tbd-notice__sub  { color: #a0bac8; font-size: 14px; margin: 0; }
.film-tbd-notice__sub a { color: #bfa854; text-decoration: none; }
.film-tbd-notice__sub a:hover { text-decoration: underline; }

/* ── Special event screening card (no poster / non-film block) ──────────── */
.sched-card--event .sched-card__poster-fallback {
  background: rgba(191,168,84,.12);
  font-size: 22px;
}
.sched-card--event .sched-card__title { color: #bfa854; }
