/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:        #0e0f14;
  --bg2:       #15161d;
  --bg3:       #1d1e28;
  --surface:   #222434;
  --border:    rgba(255,255,255,.07);
  --accent:    #f0971a;
  --accent2:   #e05c3a;
  --text:      #f0f0ee;
  --muted:     #888999;
  --tag-bg:    rgba(240,151,26,.10);
  --ff-head:   'Oswald', Arial, sans-serif;
  --ff-body:   'Roboto', Arial, sans-serif;
  --radius:    10px;
  --radius-lg: 18px;
  --ease:      cubic-bezier(.4,0,.2,1);
  --shadow:    0 8px 40px rgba(0,0,0,.55);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Grain overlay ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .6;
}

/* ─── Utility ────────────────────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 16px; }

.section-head {
  display: flex; align-items: baseline;
  justify-content: flex-start; gap: 12px;
  margin-bottom: 22px;
}
.section-head h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700; letter-spacing: -.01em;
}

.section-more {
  display: flex; justify-content: center;
  margin-top: 28px;
}
.section-more a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 28px;
  border: 1.5px solid rgba(232,200,74,.3);
  border-radius: 30px;
  font-size: .88rem; font-weight: 600; color: var(--accent);
  transition: background .2s, border-color .2s;
}
.section-more a:hover { background: rgba(232,200,74,.08); border-color: rgba(232,200,74,.55); }

.img-poster {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%; display: block;
  background: var(--surface);
}
.img-thumb {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%; display: block;
  background: var(--surface);
}
.img-fallback {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--bg3), var(--surface));
}
.premiere-card__poster,
.film-row__poster,
.post-card__poster-col { position: relative; overflow: hidden; }

.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 9px; border-radius: 30px;
  background: var(--tag-bg); color: var(--accent);
  font-size: .7rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.badge {
  display: inline-block; padding: 2px 7px; border-radius: 4px;
  font-size: .7rem; font-weight: 700;
}
.badge--age   { background: var(--surface); color: var(--muted); }
.badge--genre { background: rgba(255,255,255,.06); color: var(--muted); font-weight: 500; }
.badge--in-theaters { background: rgba(101,199,122,.15); color: #65c77a; font-weight: 600; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 32px; }
.pagination__num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--radius); font-size: .85rem; font-weight: 600; color: var(--muted); background: var(--bg3); border: 1px solid var(--border); transition: color .2s, border-color .2s; }
.pagination__num:hover { color: var(--text); border-color: var(--accent); }
.pagination__num--active { background: var(--accent); color: #0e0f14; border-color: var(--accent); }
.pagination__btn { padding: 8px 16px; border-radius: var(--radius); font-size: .82rem; font-weight: 600; color: var(--muted); background: var(--bg3); border: 1px solid var(--border); transition: color .2s, border-color .2s; }
.pagination__btn:hover { color: var(--text); border-color: var(--accent); }
.star { color: var(--accent); }
.section { padding: 44px 0; }

.reveal { }
.reveal.visible { }

/* Admin crop toggle */
.crop-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; user-select: none; }
.crop-toggle input { display: none; }
.crop-toggle__slider { width: 32px; height: 18px; background: var(--bg3); border: 1px solid var(--border); border-radius: 9px; position: relative; transition: background .2s; }
.crop-toggle__slider::after { content: ''; position: absolute; top: 2px; left: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--muted); transition: transform .2s, background .2s; }
.crop-toggle input:checked + .crop-toggle__slider { background: rgba(232,200,74,.2); border-color: var(--accent); }
.crop-toggle input:checked + .crop-toggle__slider::after { transform: translateX(14px); background: var(--accent); }
.crop-toggle__label { font-size: .72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* Admin crop tooltip */
.crop-tooltip { display: none; position: absolute; z-index: 500; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.6); }
.crop-tooltip.open { display: block; }
.crop-tooltip__inner { position: relative; cursor: crosshair; user-select: none; }
.crop-tooltip__img { width: 100%; display: block; border-radius: 6px; }
.crop-tooltip__rect { position: absolute; top: 0; height: 100%; border: 2px solid var(--accent); background: rgba(232,200,74,.15); pointer-events: none; border-radius: 3px; }
.crop-tooltip__bar { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.crop-tooltip__info { color: var(--muted); font-size: .78rem; font-variant-numeric: tabular-nums; flex: 1; }
.crop-tooltip__save { padding: 6px 16px; background: var(--accent); color: #0e0f14; border: none; border-radius: 6px; font-weight: 700; font-size: .78rem; cursor: pointer; }
.crop-tooltip__save:hover { opacity: .85; }

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,15,20,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 12px; height: 56px; }
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo__img { height: 32px; width: auto; display: block; }

.header-search { flex: 1; position: relative; z-index: 20; }
.header-search input {
  width: 100%; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  color: var(--text); font-family: var(--ff-body); font-size: .88rem;
  padding: 0 14px 0 36px; outline: none;
  transition: border-color .2s;
}
.header-search input::placeholder { color: var(--muted); }
.header-search input:focus { border-color: rgba(232,200,74,.45); }
.header-search svg {
  position: absolute; left: 11px; top: 50%;
  transform: translateY(-50%); color: var(--muted); pointer-events: none;
}

.header-nav { display: flex; gap: 2px; flex-shrink: 0; }
.header-nav a {
  padding: 5px 11px; border-radius: 6px;
  font-size: .82rem; color: var(--muted);
  transition: color .2s, background .2s; white-space: nowrap;
}
.header-nav a:hover { color: var(--text); background: var(--bg3); }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 4px; width: 36px; height: 36px; padding: 6px;
  flex-shrink: 0; border-radius: 6px; transition: background .2s;
}
.hamburger:hover { background: var(--bg3); }
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text); transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 56px; left: 0; right: 0;
  background: rgba(14,15,20,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px;
  z-index: 99;
  flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 11px 14px; border-radius: 8px;
  font-size: .95rem; font-weight: 500; color: var(--muted);
  transition: background .15s, color .15s;
}
.mobile-nav a:hover { background: var(--bg3); color: var(--text); }

.city-pill {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 30px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: .82rem; font-weight: 500; color: var(--text);
  white-space: nowrap; transition: border-color .2s; flex-shrink: 0;
}
.city-pill:hover { border-color: var(--accent); cursor: pointer; }
.city-pill svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 380px) { .city-pill .city-label { display: none; } }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero { position: relative; padding: 52px 0 40px; }
.hero__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.hero__image { display: flex; align-items: center; justify-content: center; }
.hero__image img { width: clamp(180px, 22vw, 320px); opacity: .92; filter: drop-shadow(0 8px 32px rgba(0,0,0,.5)); pointer-events: none; user-select: none; }
@media (max-width: 640px) { .hero__inner { grid-template-columns: 1fr; } .hero__image { display: none; } }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232,200,74,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(224,92,58,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content { position: relative; max-width: 640px; }
.hero__eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.hero__eyebrow span {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero__sub {
  font-size: .97rem; color: var(--muted); max-width: 480px;
  margin-bottom: 28px; line-height: 1.65;
}

.search-wrap { position: relative; z-index: 20; }
.search-box {
  display: flex; align-items: center;
  background: var(--bg3);
  border: 1.5px solid rgba(232,200,74,.25);
  border-radius: 14px; overflow: hidden;
  transition: border-color .25s;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.search-box:focus-within { border-color: rgba(232,200,74,.6); }
.search-box__icon { padding: 0 14px; color: var(--accent); flex-shrink: 0; }
.search-box input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--ff-body);
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  padding: 14px 0;
}
.search-box input::placeholder { color: var(--muted); }
.search-box__btn {
  margin: 6px; padding: 9px 20px;
  background: var(--accent); color: #0e0f14;
  font-family: var(--ff-body); font-size: .88rem; font-weight: 700;
  border-radius: 9px; transition: opacity .2s, transform .15s; flex-shrink: 0;
}
.search-box__btn:hover { opacity: .88; transform: scale(.98); }

.search-suggestions {
  display: none; position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-height: 360px; overflow-y: auto;
  box-shadow: var(--shadow); z-index: 200;
}
.search-suggestions.open { display: block; }
.suggestion-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; transition: background .15s; cursor: pointer;
}
.suggestion-item:hover { background: var(--surface); }
.suggestion-item__thumb {
  width: 36px; height: 52px; border-radius: 5px;
  background: var(--surface); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.suggestion-item__name { font-weight: 600; font-size: .88rem; }
.suggestion-item__meta { font-size: .74rem; color: var(--muted); }

.hero__stats { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--ff-head); font-size: 1.45rem; font-weight: 700; color: var(--accent); }
.stat__lbl { font-size: .72rem; color: var(--muted); }

/* ════════════════════════════════════════════════
   CITIES STRIP
════════════════════════════════════════════════ */
.cities-strip { padding: 18px 0 28px; border-bottom: 1px solid var(--border); }
.cities-strip__label {
  font-size: .71rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 11px;
}
.cities-list { display: flex; flex-wrap: wrap; gap: 7px; }
.city-link {
  padding: 5px 13px; border-radius: 30px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: .81rem; color: var(--muted);
  transition: color .2s, border-color .2s, background .2s;
}
.city-link:hover { color: var(--text); border-color: rgba(232,200,74,.3); background: rgba(232,200,74,.05); }
.city-link.active { color: var(--accent); border-color: rgba(232,200,74,.4); background: rgba(232,200,74,.08); }
.city-link--more { color: var(--accent); border-color: transparent; background: transparent; font-weight: 600; }
.city-link--more:hover { background: var(--tag-bg); border-color: transparent; }
.city-link--extra { display: none; }
.city-link--extra.visible { display: inline-flex; }

/* ════════════════════════════════════════════════
   PREMIERES (list)
════════════════════════════════════════════════ */
.premieres-list { display: flex; flex-direction: column; gap: 16px; }
.premiere-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  padding: 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.premiere-card:hover { border-color: rgba(232,200,74,.18); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.premiere-card__poster {
  width: 90px; flex-shrink: 0; aspect-ratio: 2/3;
  border-radius: 8px; overflow: hidden;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
.premiere-card__poster img { width: 100%; height: 100%; object-fit: cover; }
.premiere-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.premiere-card__meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.premiere-card__title {
  font-family: var(--ff-head);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700; line-height: 1.25;
}
.premiere-card__desc {
  font-size: .85rem; color: var(--muted); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; overflow: hidden;
}
.premiere-card__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.btn-primary {
  padding: 9px 20px; background: var(--accent); color: #0e0f14;
  font-size: .85rem; font-weight: 700; border-radius: 8px;
  transition: opacity .2s, transform .15s; display: inline-block;
}
.btn-primary:hover { opacity: .88; transform: scale(.98); }
.btn-outline {
  padding: 9px 20px; background: transparent;
  border: 1.5px solid rgba(255,255,255,.15); color: var(--text);
  font-size: .85rem; font-weight: 600; border-radius: 8px;
  transition: border-color .2s, background .2s; display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.05); }
.rating-pill { display: inline-flex; align-items: center; gap: 4px; font-size: .82rem; font-weight: 700; }

/* ════════════════════════════════════════════════
   FILMS LIST (city listing, vertical rows)
════════════════════════════════════════════════ */
.films-list { display: flex; flex-direction: column; gap: 12px; }
.film-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  transition: border-color .2s, background .2s;
}
.film-row:hover { border-color: rgba(232,200,74,.15); background: var(--bg3); }
.film-row__num {
  font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700;
  color: var(--muted); width: 22px; flex-shrink: 0; text-align: center;
}
.film-row__poster {
  width: 46px; height: 66px; flex-shrink: 0;
  border-radius: 6px; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; overflow: hidden;
}
.film-row__poster img { width: 100%; height: 100%; object-fit: cover; }
.film-row__body { flex: 1; min-width: 0; }
.film-row__title { font-size: .92rem; font-weight: 700; line-height: 1.3; }
.film-row__meta { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.film-row__right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.film-row__rating { font-size: .82rem; font-weight: 700; color: var(--accent); }
.btn-small {
  padding: 6px 13px; background: var(--accent); color: #0e0f14;
  font-size: .75rem; font-weight: 700; border-radius: 7px;
  white-space: nowrap; display: inline-block; transition: opacity .2s;
}
.btn-small:hover { opacity: .85; }

/* ════════════════════════════════════════════════
   FILTERS
════════════════════════════════════════════════ */
.filters { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-btn {
  padding: 6px 14px; border-radius: 30px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: .81rem; color: var(--muted);
  transition: color .2s, border-color .2s, background .2s;
}
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,.14); }
.filter-btn.active { color: #0e0f14; background: var(--accent); border-color: var(--accent); }

/* ════════════════════════════════════════════════
   POSTS (review cards)
════════════════════════════════════════════════ */
.posts-list { display: flex; flex-direction: column; gap: 28px; }
.post-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { border-color: rgba(232,200,74,.16); box-shadow: 0 8px 36px rgba(0,0,0,.4); }
.post-card__header { display: flex; gap: 0; align-items: stretch; }
.post-card__poster-col {
  width: 130px; flex-shrink: 0; position: relative;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
@media (max-width: 480px) { .post-card__poster-col { width: 90px; font-size: 2.5rem; } }
.post-card__poster-col img { width: 100%; height: 100%; object-fit: cover; }
.post-card__rating-badge {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(14,15,20,.85); backdrop-filter: blur(4px);
  border: 1px solid rgba(232,200,74,.3); border-radius: 6px;
  padding: 2px 8px; font-size: .78rem; font-weight: 700; color: var(--accent);
}
.post-card__header-info { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.post-card__meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.post-card__title {
  font-family: var(--ff-head);
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 700; line-height: 1.25;
}
.post-card__subtitle {
  font-size: .82rem; color: var(--muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.btn-trailer {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 15px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; font-size: .8rem; font-weight: 600; color: var(--text);
  transition: background .2s, border-color .2s; margin-top: 4px; align-self: flex-start;
}
.btn-trailer:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.2); }
.btn-trailer__icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-trailer__icon svg { margin-left: 2px; }
.post-card__body { padding: 20px 20px 28px; border-top: 1px solid var(--border); }
.post-card__text { font-size: .9rem; line-height: 1.75; color: rgba(240,240,238,.85); margin-bottom: 8px; }
.post-card__text p + p { margin-top: 14px; }
.post-card__verdict {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px; border-radius: 9px;
  background: var(--tag-bg); margin: 18px 0 14px;
  font-size: .83rem; font-weight: 600; color: var(--accent);
}
.post-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 14px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.post-card__status { display: flex; align-items: center; gap: 10px; }
.post-card__cinemas { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--muted); }
.post-card__footer-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 36px 0 24px; margin-top: 20px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 28px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; gap: 0; } .footer__col { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.06); } .footer__col:first-child { border-top: none; padding-top: 0; } }
.footer__logo { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 900; color: #f04a20; margin-bottom: 9px; }
.footer__logo span { color: #8c1a3c; }
.footer__desc { font-size: .82rem; color: var(--muted); line-height: 1.65; }
.footer__col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 13px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: .84rem; color: rgba(240,240,238,.5); transition: color .2s; }
.footer__links a:hover { color: var(--text); }
.footer__bottom {
  padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
}
.footer__copy { font-size: .76rem; color: var(--muted); }

/* ════════════════════════════════════════════════
   TRAILER POPUP
════════════════════════════════════════════════ */
.trailer-modal {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.85); backdrop-filter: blur(6px);
  padding: 24px;
}
.trailer-modal.open { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.trailer-modal__close {
  align-self: flex-end; margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  color: #ccc; font-family: inherit; font-size: .85rem; font-weight: 600;
  transition: color .2s;
}
.trailer-modal__close:hover { color: #fff; }
.trailer-modal__frame { width: 100%; max-width: 960px; aspect-ratio: 16 / 9; position: relative; }
.trailer-modal__frame iframe { width: 100%; height: 100%; border: 0; border-radius: 12px; position: relative; z-index: 2; }
.trailer-loader {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 12px; background: rgba(5,5,5,.92);
}
.trailer-loader.hidden { display: none; }
.lost-timer {
  display: flex; align-items: center; gap: 2px;
  background: #111; border: 2px solid #333; border-radius: 6px;
  padding: 10px 16px; box-shadow: 0 0 20px rgba(0,0,0,.6), inset 0 1px 4px rgba(0,0,0,.8);
}
.lost-timer__digit {
  display: inline-block; width: 36px; height: 54px; line-height: 54px; text-align: center;
  font-family: 'Courier New', monospace; font-size: 42px; font-weight: 700;
  color: #e8c84a; background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 4px;
  text-shadow: 0 0 8px rgba(232,200,74,.5);
}
.lost-timer__sep {
  font-family: 'Courier New', monospace; font-size: 36px; font-weight: 700;
  color: #e8c84a; text-shadow: 0 0 8px rgba(232,200,74,.4);
  width: 14px; text-align: center;
}
.lost-timer__label {
  margin-top: 10px; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: #555; font-weight: 600;
}
@media (max-width: 600px) { .trailer-modal { padding: 12px; } }

/* ════════════════════════════════════════════════
   CITY MODAL
════════════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  z-index: 200; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  width: 100%; max-width: 460px; max-height: 85vh;
  overflow-y: auto; box-shadow: var(--shadow);
}
.modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.modal__head h3 { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 700; }
.modal__close {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .2s, background .2s;
}
.modal__close:hover { color: var(--text); background: var(--bg3); }
.modal-search {
  display: flex; align-items: center; gap: 9px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0 13px; margin-bottom: 14px;
}
.modal-search input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-family: var(--ff-body); font-size: .88rem; padding: 10px 0;
}
.modal-search input::placeholder { color: var(--muted); }
.modal-cities { display: flex; flex-direction: column; gap: 1px; }
.modal-city-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 11px; border-radius: 8px; transition: background .15s; cursor: pointer;
}
.modal-city-item:hover { background: var(--surface); }
.modal-city-item__name { font-size: .9rem; font-weight: 500; }
.modal-city-item__count { font-size: .76rem; color: var(--muted); }

/* ════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.fade-up { }
.fu1 { }
.fu2 { }
.fu3 { }
.fu4 { }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (min-width: 769px) { .hamburger { display: none; } }
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-search { display: none; }
  .header-search.mobile-open {
    display: block;
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 10px 16px;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
  }
  .header-search.mobile-open input { border-radius: 8px; height: 40px; padding-left: 35px; }
  .header-search.mobile-open { position: fixed; }
  .header-search.mobile-open svg { left: 26px; }
  .search-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; flex-shrink: 0;
    margin-left: auto;
    border-radius: 6px; color: var(--muted); transition: background .2s, color .2s;
  }
  .search-toggle:hover { background: var(--bg3); color: var(--text); }
}
@media (min-width: 769px) { .search-toggle { display: none; } }
@media (max-width: 540px) {
  .premiere-card { flex-direction: column; }
  .premiere-card__poster { width: 100%; aspect-ratio: 16/7; font-size: 3rem; }
}

/* ═══════════════════════════════════════════════════════════════
   CITY + CINEMA PAGES (from kinosite_front city.html / cinema.html)
   Shared boilerplate (header/footer/modal/film-row base/films-list/
   section-head/reveal/tag/badge/img helpers) already defined above.
═══════════════════════════════════════════════════════════════ */

/* shared small bits not yet defined */
.star { color: var(--accent); }
.fmt-badge { padding: 2px 6px; border-radius: 4px; font-size: .65rem; font-weight: 700; letter-spacing: .04em; background: rgba(232,200,74,.15); color: var(--accent); border: 1px solid rgba(232,200,74,.25); }
.fmt-badge--lg { padding: 9px 12px; font-size: .8rem; border-radius: 9px; }

.expand-more { display: flex; justify-content: center; margin-top: 20px; }
.expand-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 28px; border: 1.5px solid rgba(232,200,74,.3); border-radius: 30px; font-size: .88rem; font-weight: 600; color: var(--accent); background: transparent; transition: background .2s, border-color .2s; }
.expand-btn:hover { background: rgba(232,200,74,.08); border-color: rgba(232,200,74,.55); }
.expand-btn svg { transition: transform .3s var(--ease); }
.expand-btn.open svg { transform: rotate(180deg); }

/* ─── CITY HERO ─── */
.city-hero { padding: 32px 0 26px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.city-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(232,200,74,.05) 0%, transparent 70%); pointer-events: none; }
.city-hero__inner { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.city-hero__left { flex: 1; min-width: 0; }
.city-hero__breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); margin-bottom: 10px; }
.city-hero__breadcrumb a:hover { color: var(--accent); }
.city-hero__title { font-family: var(--ff-head); font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 900; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 10px; }
.city-hero__title em { font-style: italic; color: var(--accent); }
.city-hero__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: var(--muted); }
.city-hero__meta-item { display: flex; align-items: center; gap: 5px; }
.city-hero__meta-item svg { color: var(--accent); flex-shrink: 0; }
.city-hero__meta-item strong { color: var(--text); }
.city-search-wrap { flex-shrink: 0; width: 100%; max-width: 320px; position: relative; }
@media (max-width: 700px) { .city-search-wrap { max-width: 100%; } }
.city-search-wrap--inline { max-width: 100%; margin-bottom: 12px; }
.city-search-wrap--inline .city-search { box-shadow: none; border-color: var(--border); border-radius: var(--radius); }
.city-search-wrap--inline .city-search:focus-within { border-color: var(--accent); }
.city-search { display: flex; align-items: center; background: var(--bg3); border: 1.5px solid rgba(232,200,74,.2); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .25s; box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.city-search:focus-within { border-color: rgba(232,200,74,.5); }
.city-search svg { margin: 0 12px; color: var(--accent); flex-shrink: 0; }
.city-search input { flex: 1; background: transparent; border: none; outline: none; color: var(--text); font-family: var(--ff-body); font-size: .9rem; padding: 11px 12px 11px 0; }
.city-search input::placeholder { color: var(--muted); }

/* ─── DATE TABS ─── */
.date-tabs-wrap { background: var(--bg2); border-bottom: 1px solid var(--border); position: sticky; top: 56px; z-index: 90; }
.date-tabs { display: flex; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.date-tabs::-webkit-scrollbar { display: none; }
.date-tab { display: flex; flex-direction: column; align-items: center; padding: 10px 20px; flex-shrink: 0; border-bottom: 2px solid transparent; font-size: .82rem; font-weight: 500; color: var(--muted); transition: color .2s, border-color .2s; cursor: pointer; background: transparent; white-space: nowrap; }
.date-tab:hover { color: var(--text); }
.date-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.date-tab__day { font-size: .7rem; color: var(--muted); margin-bottom: 2px; }
.date-tab.active .date-tab__day { color: rgba(232,200,74,.7); }
.date-tab__num { font-size: 1.05rem; font-weight: 700; line-height: 1; }
#sessionsDates { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg2); margin-bottom: 16px; }

/* ─── CITY LAYOUT ─── */
.city-layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 28px 0 48px; align-items: start; }
.city-content { min-width: 0; }
@media (max-width: 860px) {
  .city-layout { grid-template-columns: 1fr; }
  .city-sidebar { display: none !important; }
}

/* sidebar filters — desktop only */
.city-sidebar { position: sticky; top: 108px; display: flex; flex-direction: column; gap: 4px; }
.sidebar-section { margin-bottom: 6px; }
.sidebar-label { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 0 10px; margin-bottom: 5px; display: block; }
.sidebar-btn { display: flex; align-items: center; gap: 8px; width: 100%; padding: 8px 10px; border-radius: 8px; font-size: .84rem; color: var(--muted); transition: background .15s, color .15s; text-align: left; }
.sidebar-btn:hover { background: var(--bg3); color: var(--text); }
.sidebar-btn.active { background: rgba(232,200,74,.1); color: var(--accent); font-weight: 600; }
.sidebar-btn__count { margin-left: auto; font-size: .72rem; background: var(--surface); border-radius: 20px; padding: 1px 7px; color: var(--muted); }
.sidebar-btn.active .sidebar-btn__count { background: rgba(232,200,74,.15); color: var(--accent); }
.sidebar-divider { height: 1px; background: var(--border); margin: 8px 0; }

/* mobile filters bar — grouped panel */
.mobile-filters-bar { display: none; margin-bottom: 16px; }
@media (max-width: 860px) { .mobile-filters-bar { display: block; } }
.mfb-panel { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 4px 0; overflow: hidden; }
.mfb-group { padding: 12px 14px 10px; }
.mfb-group__label { display: block; font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.mfb-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.mfb-divider { height: 1px; background: var(--border); margin: 0; }
.mfb-chip { padding: 6px 13px; border-radius: 30px; background: var(--bg3); border: 1px solid var(--border); font-size: .8rem; color: var(--muted); transition: color .2s, border-color .2s, background .2s; white-space: nowrap; }
.mfb-chip:hover { color: var(--text); border-color: rgba(255,255,255,.14); }
.mfb-chip.active { color: #0e0f14; background: var(--accent); border-color: var(--accent); }

/* city film search suggestions */
.city-search-suggestions { display: none; position: absolute; left: 0; right: 0; top: calc(100% + 5px); background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); max-height: 360px; overflow-y: auto; box-shadow: var(--shadow); z-index: 50; }
.city-search-suggestions.open { display: block; }
.sugg-item { display: flex; align-items: center; gap: 11px; padding: 10px 14px; cursor: pointer; transition: background .15s; }
.sugg-item:hover { background: var(--surface); }
.sugg-item__thumb { width: 34px; height: 48px; border-radius: 4px; background: var(--surface); flex-shrink: 0; overflow: hidden; position: relative; }
.sugg-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sugg-item__name { font-weight: 600; font-size: .88rem; }
.sugg-item__meta { font-size: .74rem; color: var(--muted); }

/* film-row extras (base .film-row defined above) */
.film-row.hidden { display: none; }
.film-row.extra { display: none; }
.film-row.extra.shown { display: flex; }
.film-row__cinemas { display: flex; align-items: center; gap: 4px; font-size: .73rem; color: var(--muted); }
.film-row__cinemas svg { color: var(--accent); flex-shrink: 0; }
.btn-sessions { padding: 7px 14px; background: var(--accent); color: #0e0f14; font-size: .78rem; font-weight: 700; border-radius: 8px; white-space: nowrap; display: inline-block; transition: opacity .2s; }
.btn-sessions:hover { opacity: .87; }
.out-of-theaters { display: flex; align-items: center; gap: 14px; padding: 24px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.out-of-theaters svg { flex-shrink: 0; opacity: .5; }
.out-of-theaters p { margin: 0; }

.error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; gap: 16px; }
.error-page__code { font-family: var(--ff-head); font-size: clamp(5rem, 15vw, 10rem); font-weight: 900; line-height: 1; color: var(--accent); opacity: .9; }
.error-page__title { font-family: var(--ff-head); font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; margin: 0; }
.error-page__text { color: var(--muted); font-size: .95rem; max-width: 400px; margin: 0; }
.error-page__actions { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 8px; }
.no-results { display: none; padding: 36px 20px; text-align: center; color: var(--muted); }
.no-results.visible { display: block; }
.no-results__icon { font-size: 2.2rem; margin-bottom: 10px; }
.no-results h3 { font-family: var(--ff-head); font-size: 1.1rem; margin-bottom: 5px; color: var(--text); }

/* ─── CINEMAS SECTION (on city page) ─── */
.cinemas-section { padding: 40px 0; background: var(--bg2); }
.cinemas-list { display: flex; flex-direction: column; gap: 10px; }
.cinema-row { display: flex; align-items: center; gap: 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px 16px; transition: border-color .2s, box-shadow .2s; }
.cinema-row:hover { border-color: rgba(232,200,74,.16); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.cinema-row.extra { display: none; }
.cinema-row.extra.shown { display: flex; }
.cinema-row__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--surface); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.cinema-row__body { flex: 1; min-width: 0; }
.cinema-row__name { font-family: var(--ff-head); font-size: .97rem; font-weight: 700; line-height: 1.25; margin-bottom: 3px; }
.cinema-row__meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: .75rem; color: var(--muted); }
.cinema-row__address { display: flex; align-items: center; gap: 4px; }
.cinema-row__address svg { flex-shrink: 0; }
.cinema-row__right { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; flex-shrink: 0; }
.cinema-row__sessions { font-size: .75rem; color: var(--muted); white-space: nowrap; }
.btn-cinema { padding: 6px 14px; border-radius: 8px; border: 1.5px solid rgba(232,200,74,.25); font-size: .78rem; font-weight: 600; color: var(--accent); transition: background .2s, border-color .2s; white-space: nowrap; }
.btn-cinema:hover { background: rgba(232,200,74,.08); border-color: rgba(232,200,74,.5); }

/* ─── SEO BLOCK ─── */
.seo-block { padding: 36px 0 44px; }
.seo-block__card { display: grid; grid-template-columns: 1fr 280px; gap: 0; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.seo-block__text { padding: 32px 32px; }
@media (max-width: 540px) { .seo-block__text { padding: 22px 18px; } }
.seo-block__eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.seo-block__title { font-family: var(--ff-head); font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 700; line-height: 1.25; margin-bottom: 14px; }
.seo-block__body p { font-size: .88rem; color: var(--muted); line-height: 1.78; margin-bottom: 10px; }
.seo-block__body p:last-child { margin-bottom: 0; }
.seo-block__stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.seo-stat { display: flex; flex-direction: column; }
.seo-stat__num { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 700; color: var(--accent); line-height: 1; }
.seo-stat__lbl { font-size: .74rem; color: var(--muted); margin-top: 3px; }
.seo-block__visual { position: relative; overflow: hidden; background: linear-gradient(145deg, #12101e 0%, #0e1828 60%, #141020 100%); border-left: 1px solid var(--border); min-height: 220px; display: flex; align-items: center; justify-content: center; }
.city-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 24px 16px; text-align: center; }
.city-visual__name { font-family: var(--ff-head); font-weight: 700; font-size: clamp(1.4rem, 4vw, 2.2rem); line-height: 1.1; color: var(--accent); letter-spacing: .02em; word-break: break-word; max-width: 220px; }
.city-visual__label { font-family: var(--ff-head); font-size: .65rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 1100px) { .seo-block__card { grid-template-columns: 1fr; } .seo-block__visual { display: none; } }

/* ═══ CINEMA PAGE ═══ */
.cinema-hero { padding: 32px 0 0; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.cinema-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 120% at 90% 50%, rgba(232,200,74,.06) 0%, transparent 65%), radial-gradient(ellipse 40% 80% at 10% 80%, rgba(224,92,58,.04) 0%, transparent 60%); pointer-events: none; }
.cinema-hero__inner { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 20px 24px; align-items: start; padding-bottom: 28px; }
@media (max-width: 700px) { .cinema-hero__inner { grid-template-columns: auto 1fr; } .cinema-hero__actions { grid-column: 1 / -1; } }
.cinema-hero__breadcrumb { grid-column: 1 / -1; display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); }
.cinema-hero__breadcrumb a:hover { color: var(--accent); }
.cinema-hero__breadcrumb svg { flex-shrink: 0; }
.cinema-hero__logo { width: 72px; height: 72px; border-radius: 16px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; overflow: hidden; position: relative; }
.cinema-hero__logo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 480px) { .cinema-hero__logo { width: 56px; height: 56px; font-size: 1.5rem; border-radius: 12px; } }
.cinema-hero__info { min-width: 0; }
.cinema-hero__name { font-family: var(--ff-head); font-size: clamp(1.4rem, 4vw, 2.1rem); font-weight: 900; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 8px; }
.cinema-hero__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .84rem; color: var(--muted); margin-bottom: 10px; }
.cinema-hero__meta-item { display: flex; align-items: center; gap: 5px; }
.cinema-hero__meta-item svg { color: var(--accent); flex-shrink: 0; }
.cinema-hero__meta-item strong { color: var(--text); }
.cinema-hero__meta-item a { color: var(--accent); transition: opacity .2s; }
.cinema-hero__meta-item a:hover { opacity: .75; }
.cinema-hero__formats { display: flex; gap: 5px; flex-wrap: wrap; }
.cinema-hero__actions { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
@media (max-width: 700px) { .cinema-hero__actions { flex-direction: row; flex-wrap: wrap; } }
.btn-map { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 9px; background: var(--bg3); border: 1px solid var(--border); font-size: .84rem; font-weight: 600; color: var(--text); transition: border-color .2s, background .2s; white-space: nowrap; }
.btn-map:hover { border-color: rgba(232,200,74,.3); background: var(--surface); }
.btn-map svg { color: var(--accent); flex-shrink: 0; }
.btn-site { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 9px; background: transparent; border: 1px solid var(--border); font-size: .84rem; font-weight: 600; color: var(--muted); transition: border-color .2s, color .2s; white-space: nowrap; }
.btn-site:hover { border-color: rgba(255,255,255,.15); color: var(--text); }

.cinema-body { display: grid; grid-template-columns: 1fr 280px; gap: 28px; padding: 28px 0 52px; align-items: start; }
@media (max-width: 900px) { .cinema-body { grid-template-columns: 1fr; } .cinema-sidebar { display: none; } }

.schedule { display: flex; flex-direction: column; gap: 0; }
.schedule-filters { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.sfilter-btn { padding: 6px 14px; border-radius: 30px; background: var(--bg3); border: 1px solid var(--border); font-size: .8rem; color: var(--muted); transition: color .2s, border-color .2s, background .2s; }
.sfilter-btn:hover { color: var(--text); border-color: rgba(255,255,255,.14); }
.sfilter-btn.active { color: #0e0f14; background: var(--accent); border-color: var(--accent); }

.film-block { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 14px; background: var(--bg2); transition: border-color .2s; }
.film-block:hover { border-color: rgba(232,200,74,.15); }
.film-block.hidden { display: none; }
.film-block__head { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.film-block__poster { width: 80px; height: 114px; border-radius: 9px; flex-shrink: 0; background: var(--surface); position: relative; overflow: hidden; }
@media (max-width: 480px) { .film-block__poster { width: 64px; height: 90px; } }
.film-block__poster img { width: 100%; height: 100%; object-fit: cover; }
.film-block__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.film-block__top { display: flex; align-items: flex-start; gap: 8px; }
.film-block__title { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; line-height: 1.25; flex: 1; min-width: 0; color: inherit; text-decoration: none; }
.film-block__title:hover { color: var(--accent); }
.film-block__rating { font-size: .82rem; font-weight: 700; color: var(--accent); flex-shrink: 0; white-space: nowrap; }
.film-block__meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: .75rem; color: var(--muted); }
.film-block__desc { font-size: .82rem; color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.film-block__actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.btn-card-info { display: inline-flex; align-items: center; gap: 5px; padding: 0 12px; height: 28px; border-radius: 7px; background: transparent; border: 1px solid var(--border); font-size: .75rem; font-weight: 600; color: var(--muted); transition: border-color .2s, color .2s; }
.btn-card-info:hover { border-color: rgba(255,255,255,.2); color: var(--text); }
.btn-trailer-sm { display: inline-flex; align-items: center; gap: 5px; padding: 0 12px; height: 28px; border-radius: 7px; background: rgba(232,200,74,.08); border: 1px solid rgba(232,200,74,.2); font-size: .75rem; font-weight: 600; color: var(--accent); transition: background .2s, border-color .2s; }
.btn-trailer-sm:hover { background: rgba(232,200,74,.15); border-color: rgba(232,200,74,.4); }
.btn-trailer-sm__dot { width: 16px; height: 16px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-trailer-sm__dot svg { margin-left: 1px; }
.film-block__sessions { padding: 14px 18px; display: flex; flex-direction: column; gap: 0; }
.hall-group { padding: 10px 0; }
.hall-group + .hall-group { border-top: 1px solid var(--border); }
.hall-group__label { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; padding: 2px 8px 2px 10px; border-radius: 0 4px 4px 0; border-left: 3px solid; }
.hall-group__label--2d { color: var(--muted); border-left-color: var(--muted); background: rgba(136,153,153,.07); }
.hall-group__label--imax { color: var(--accent); border-left-color: var(--accent); background: rgba(232,200,74,.08); }
.hall-group__label--3d { color: #e07a4a; border-left-color: #e07a4a; background: rgba(224,122,74,.08); }
.hall-times { display: flex; flex-wrap: wrap; gap: 7px; }
.time-pill { display: inline-flex; flex-direction: column; align-items: center; padding: 7px 12px; border-radius: 9px; background: var(--bg3); border: 1px solid var(--border); transition: border-color .2s, background .2s; cursor: default; min-width: 58px; position: relative; }
.time-pill:hover { border-color: rgba(232,200,74,.35); background: var(--surface); }
.time-pill__time { font-size: .9rem; font-weight: 700; color: var(--text); line-height: 1; }
.time-pill__price { font-size: .68rem; color: var(--muted); margin-top: 2px; }
.time-pill--imax { border-color: rgba(232,200,74,.18); }
.time-pill--imax .time-pill__time { color: var(--accent); }
.time-pill--3d { border-color: rgba(224,92,58,.18); }
.time-pill--3d .time-pill__time { color: #e07a4a; }
.time-pill--past { opacity: .38; cursor: default; pointer-events: none; }
.time-pill--past .time-pill__time { text-decoration: line-through; color: var(--muted) !important; }
.time-pill--no-price { min-width: 46px; }
.time-pill--no-price .time-pill__time { font-size: .88rem; }
.no-sessions { display: none; padding: 32px 16px; text-align: center; color: var(--muted); }
.no-sessions.visible { display: block; }

.cinema-sidebar { position: sticky; top: 108px; display: flex; flex-direction: column; gap: 14px; }
.info-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.info-card__body { padding: 16px; display: flex; flex-direction: column; gap: 11px; }
.info-row { display: flex; align-items: flex-start; gap: 10px; font-size: .84rem; }
.info-row svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.info-row__label { font-weight: 600; color: var(--text); line-height: 1.4; }
.info-row__sub { color: var(--muted); font-size: .78rem; margin-top: 1px; }
.info-row__link { color: var(--accent); transition: opacity .2s; }
.info-row__link:hover { opacity: .75; }
.info-card__divider { height: 1px; background: var(--border); margin: 0; }
.btn-directions { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; padding: 10px; background: var(--accent); color: #0e0f14; font-size: .85rem; font-weight: 700; border-radius: 0 0 var(--radius-lg) var(--radius-lg); transition: opacity .2s; }
.btn-directions:hover { opacity: .88; }

/* ════════ POST PAGE ════════ */
.post-hero { position: relative; padding: 40px 0 0; border-bottom: 1px solid var(--border); }
.post-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 100% at 70% 30%, rgba(232,200,74,.06) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 10% 90%, rgba(224,92,58,.04) 0%, transparent 60%); pointer-events: none; }
.post-hero__breadcrumb { position: relative; display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); margin-bottom: 28px; }
.post-hero__breadcrumb a:hover { color: var(--accent); }
.post-hero__inner { position: relative; }
.post-hero__content { padding-bottom: 36px; display: flex; flex-direction: column; gap: 16px; }
.post-hero__label-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.post-hero__title { font-family: var(--ff-head); font-size: clamp(1.6rem, 4.5vw, 2.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -.025em; }
.post-hero__film-name { color: var(--accent); }
.post-hero__subtitle { font-size: clamp(.9rem, 2vw, 1.05rem); color: var(--muted); line-height: 1.65; max-width: 560px; }
.post-hero__film-strip { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 12px 16px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); }
.film-strip__poster { width: 56px; height: 80px; border-radius: 6px; background: var(--surface); overflow: hidden; position: relative; flex-shrink: 0; }
.film-strip__poster img { width: 100%; height: 100%; object-fit: cover; }
.film-strip__poster-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; background: linear-gradient(135deg, var(--bg3), var(--surface)); }
.film-strip__info { flex: 1; min-width: 0; }
.film-strip__name { font-weight: 700; font-size: .9rem; }
.film-strip__meta { font-size: .75rem; color: var(--muted); margin-top: 1px; }
.film-strip__actions { display: flex; align-items: center; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.film-strip__rating { font-family: var(--ff-head); font-size: 1.25rem; font-weight: 900; color: var(--accent); flex-shrink: 0; }
.film-strip__link { display: inline-flex; align-items: center; gap: 5px; padding: 6px 13px; border-radius: 7px; background: var(--accent); color: #0e0f14; font-size: .78rem; font-weight: 700; white-space: nowrap; flex-shrink: 0; transition: opacity .2s; }
.film-strip__link:hover { opacity: .88; }
.post-hero__poster-col { align-self: end; position: relative; }
.post-hero__poster { width: 100%; height: 360px; border-radius: 14px 14px 0 0; overflow: hidden; box-shadow: 0 -8px 40px rgba(0,0,0,.5); background: var(--surface); position: relative; }
.post-hero__poster img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.post-hero__poster-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: linear-gradient(160deg, var(--bg3), var(--surface)); }

.post-body { display: grid; grid-template-columns: 1fr 280px; gap: 32px; padding: 36px 0 52px; align-items: start; }
@media (max-width: 900px) { .post-body { grid-template-columns: 1fr; } .post-sidebar { display: none; } }
.post-article { display: flex; flex-direction: column; gap: 24px; }

.post-text { display: flex; flex-direction: column; gap: 0; }
.post-text p { font-size: .97rem; line-height: 1.82; color: rgba(240,240,238,.88); padding: 0 0 18px; }
.post-text p:last-child { padding-bottom: 0; }
.pull-quote { margin: 8px 0 18px; padding: 18px 22px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); font-family: var(--ff-head); font-style: italic; font-size: clamp(1rem, 2.2vw, 1.2rem); color: rgba(240,240,238,.75); line-height: 1.55; }

.post-film-link { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); flex-wrap: wrap; }
.post-film-link__text { flex: 1; min-width: 0; }
.post-film-link__title { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.post-film-link__meta { font-size: .78rem; color: var(--muted); }
.btn-film-page { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 9px; background: var(--accent); color: #0e0f14; font-size: .85rem; font-weight: 700; white-space: nowrap; flex-shrink: 0; transition: opacity .2s; }
.btn-film-page:hover { opacity: .88; }

.post-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 72px; }
.facts-mini { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.facts-mini__title { font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); padding: 13px 16px 9px; }
.fact-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 8px 16px; border-top: 1px solid var(--border); font-size: .83rem; }
.fact-row__key { color: var(--muted); flex-shrink: 0; }
.fact-row__val { font-weight: 600; text-align: right; line-height: 1.4; }

.other-posts { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.other-posts__title { font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); padding: 13px 16px 9px; }
.other-post-item { display: flex; gap: 10px; align-items: center; padding: 10px 16px; border-top: 1px solid var(--border); transition: background .15s; }
.other-post-item:hover { background: rgba(255,255,255,.02); }
.other-post-item__thumb { width: 38px; height: 54px; border-radius: 5px; background: var(--surface); flex-shrink: 0; overflow: hidden; position: relative; }
.other-post-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.other-post-item__thumb-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: linear-gradient(135deg, var(--bg3), var(--surface)); }
.other-post-item__name { font-size: .85rem; font-weight: 600; line-height: 1.3; }
.other-post-item__meta { font-size: .73rem; color: var(--muted); margin-top: 2px; }

/* ── Post page: ratings, trailer row, sessions block ── */
.ratings-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rating-mini-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; }
.rating-mini-card__source { font-size: .63rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.rating-mini-card__num { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 900; color: var(--accent); line-height: 1; }
.rating-mini-card__max { font-size: .72rem; color: var(--muted); }

.trailer-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.post-sessions-block { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.post-sessions-block__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.post-sessions-block__title { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; }
.mini-cinema-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 18px; border-bottom: 1px solid var(--border); }
.mini-cinema-row:last-of-type { border-bottom: none; }
.mini-cinema-row__name { font-size: .88rem; font-weight: 700; }
.mini-cinema-row__address { font-size: .73rem; color: var(--muted); }
.mini-times { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.mini-time { display: inline-flex; flex-direction: column; align-items: center; padding: 5px 9px; border-radius: 7px; min-width: 46px; background: var(--bg3); border: 1px solid var(--border); font-size: .82rem; font-weight: 700; color: var(--text); cursor: default; }
.mini-time__price { font-size: .62rem; color: var(--muted); margin-top: 1px; }
.mini-time--3d { border-color: rgba(224,92,58,.18); color: #e07a4a; }
.mini-time--imax { border-color: rgba(232,200,74,.2); color: var(--accent); }
.mini-time--past { opacity: .35; }
.mini-time--past span:first-child { text-decoration: line-through; color: var(--muted) !important; }
.post-sessions-block__more { display: flex; justify-content: center; padding: 12px 18px; border-top: 1px solid var(--border); }
.btn-all-sessions { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--accent); transition: opacity .2s; }
.btn-all-sessions:hover { opacity: .75; }

/* ════════ STATIC PAGES (about/contacts/rules) ════════ */
.page-hero { padding: 52px 0 44px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 120% at 80% 40%, rgba(232,200,74,.05) 0%, transparent 65%); pointer-events: none; }
.page-hero__inner { position: relative; display: flex; align-items: flex-start; gap: 28px; }
.page-hero__text { flex: 1; min-width: 0; }
.page-hero__breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); margin-bottom: 14px; }
.page-hero__breadcrumb a:hover { color: var(--accent); }
.page-hero__tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.page-tab { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: 30px; font-size: .82rem; font-weight: 500; color: var(--muted); background: var(--bg3); border: 1px solid var(--border); transition: color .2s, border-color .2s, background .2s; }
.page-tab:hover { color: var(--text); border-color: rgba(255,255,255,.14); }
.page-tab.active { color: var(--accent); background: var(--tag-bg); border-color: rgba(232,200,74,.3); font-weight: 600; }
.page-hero__title { font-family: var(--ff-head); font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 900; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 12px; }
.page-hero__subtitle { font-size: clamp(.9rem, 2vw, 1.05rem); color: var(--muted); line-height: 1.65; max-width: 580px; }

.page-body { display: grid; grid-template-columns: 1fr 260px; gap: 32px; padding: 40px 0 56px; align-items: start; }
@media (max-width: 860px) { .page-body { grid-template-columns: 1fr; } .page-aside { display: none; } }
.page-content { display: flex; flex-direction: column; gap: 32px; }
.content-section__title { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.content-section__body { display: flex; flex-direction: column; gap: 12px; }
.content-section__body p { font-size: .93rem; color: rgba(240,240,238,.82); line-height: 1.78; }

.page-aside { position: sticky; top: 72px; display: flex; flex-direction: column; gap: 16px; }
.related-pages { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.related-pages__title { font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); padding: 13px 16px 9px; }
.related-page-link { display: flex; align-items: center; gap: 10px; padding: 11px 16px; border-top: 1px solid var(--border); font-size: .85rem; color: var(--muted); transition: color .2s, background .2s; }
.related-page-link:hover { color: var(--text); background: rgba(255,255,255,.02); }
.related-page-link__icon { width: 30px; height: 30px; border-radius: 8px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.related-page-link__text { flex: 1; }
.related-page-link__name { font-weight: 600; color: var(--text); font-size: .85rem; }
.related-page-link__desc { font-size: .73rem; color: var(--muted); margin-top: 1px; }
.related-page-link svg { color: var(--muted); flex-shrink: 0; }

/* ─── Film page ──────────────────────────────────────────── */
.film-hero { position: relative; padding: 80px 0 40px; overflow: hidden; }
.film-hero__backdrop { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(30px) brightness(.35); transform: scale(1.1); z-index: 0; }
.film-hero__backdrop::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,15,20,.4), var(--bg) 95%); }
.film-hero .container { position: relative; z-index: 1; }
.film-hero__breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--muted); margin-bottom: 28px; flex-wrap: wrap; }
.film-hero__breadcrumb a { color: var(--muted); transition: color .2s; }
.film-hero__breadcrumb a:hover { color: var(--text); }
.film-hero__breadcrumb svg { flex-shrink: 0; opacity: .6; }
.film-hero__breadcrumb span { color: var(--text); }

.film-hero__inner { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start; }
.film-hero__poster-col { width: 220px; }
.film-hero__poster { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 2/3; }
.film-hero__poster img, .film-hero__poster .img-poster { width: 100%; height: 100%; object-fit: cover; display: block; }

.film-hero__tag-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.film-hero__title { font-family: var(--ff-head); font-size: 2.4rem; line-height: 1.15; margin-bottom: 6px; }
.film-hero__orig { color: var(--muted); font-size: .92rem; margin-bottom: 16px; }
.film-hero__rating-row { margin-bottom: 14px; }
.film-hero__meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.film-hero__tagline { font-style: italic; color: var(--muted); font-size: .95rem; max-width: 60ch; margin-bottom: 22px; }
.film-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.rating-badge { display: inline-flex; align-items: baseline; gap: 6px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 7px 14px; }
.rating-badge__source { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.rating-badge__num { font-weight: 700; color: var(--accent); font-size: 1.05rem; }
.rating-badge__max { font-size: .72rem; color: var(--muted); }

.meta-pill { display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--muted); }
.meta-pill svg { flex-shrink: 0; }

.btn-trailer__play { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* body grid */
.film-body { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; padding: 40px 0 64px; }
.film-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 72px; }

/* sessions */
.sessions-section { margin-bottom: 36px; }
.sessions-section__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.sessions-section__title { font-family: var(--ff-head); font-size: 1.4rem; }
.sessions-section__title span { color: var(--accent); }
.city-switch { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--muted); border: 1px solid var(--border); border-radius: var(--radius); padding: 7px 14px; transition: color .2s, border-color .2s; }
.city-switch:hover { color: var(--text); border-color: var(--accent); }
.sessions-dates:empty { display: none; }
.sessions-list { display: flex; flex-direction: column; gap: 10px; }
.no-sessions-city { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; color: var(--muted); font-size: .9rem; }

.cinema-session-row { display: flex; flex-direction: column; gap: 12px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px 20px; }
.csr__info { }
.csr__name { font-weight: 600; margin-bottom: 3px; }
.csr__name a { color: inherit; text-decoration: none; }
.csr__name a:hover { color: var(--accent); }
.csr__address { font-size: .78rem; color: var(--muted); }
.csr__times { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.csr__fmt-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.csr__fmt-label { font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; color: var(--muted); background: var(--bg3); }
.csr__fmt-label--imax { color: #6cb7ff; background: rgba(108,183,255,.12); }
.csr__fmt-label--3d { color: var(--accent2); background: rgba(224,92,58,.12); }
.csr__fmt-label--2d { color: var(--muted); }

.sessions-section__actions { display: flex; gap: 10px; align-items: center; }
.filter-upcoming { padding: 6px 14px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); color: var(--muted); font-family: inherit; font-size: .78rem; font-weight: 600; cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.filter-upcoming:hover { color: var(--text); border-color: var(--accent); }
.filter-upcoming.active { background: rgba(232,200,74,.12); color: var(--accent); border-color: var(--accent); }
.time-chip { display: inline-flex; align-items: baseline; gap: 6px; font-size: .8rem; font-weight: 600; padding: 6px 11px; border-radius: 8px; background: var(--bg3); border: 1px solid rgba(255,255,255,.15); color: #fff; }
.time-chip--imax { border-color: rgba(108,183,255,.35); }
.time-chip--3d { border-color: rgba(224,92,58,.35); }
.time-chip--past { opacity: .35; color: var(--muted); border-color: var(--border); }
.time-chip__price { color: var(--muted); font-weight: 400; font-size: .72rem; }

/* review/synopsis */
.review-section { margin-bottom: 36px; }
.review-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.review-card__head { padding: 14px 16px 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.review-card__head h2 { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; flex: 1; }
.review-card__body { padding: 18px 16px; color: rgba(240,240,238,.85); font-size: .92rem; line-height: 1.78; }
.review-card__body p { margin-bottom: 14px; }
.review-card__body p:last-child { margin-bottom: 0; }
.verdict-strip { display: flex; align-items: flex-start; gap: 8px; padding: 12px 16px; background: var(--tag-bg); border-top: 1px solid var(--border); font-size: .85rem; font-weight: 600; color: var(--accent); line-height: 1.45; }
.verdict-strip svg { flex-shrink: 0; margin-top: 2px; }
.review-card__foot { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; }
.review-card__foot .btn-outline { padding: 7px 16px; font-size: .8rem; }

/* cities showing */
.cities-section { margin-bottom: 8px; }
.section-head { margin-bottom: 16px; }
.section-head h2 { font-family: var(--ff-head); font-size: 1.4rem; }
.cities-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.cities-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cities-chips--collapsed { max-height: 160px; overflow: hidden; position: relative; }
.cities-chips--collapsed::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: linear-gradient(transparent, var(--bg2)); pointer-events: none; }
.btn-expand { display: block; width: 100%; margin-top: 12px; padding: 10px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); color: var(--muted); font-family: inherit; font-size: .82rem; font-weight: 600; cursor: pointer; transition: color .2s, border-color .2s; }
.btn-expand:hover { color: var(--text); border-color: var(--accent); }
.city-chip { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; background: var(--bg3); border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px; transition: border-color .2s, color .2s; }
.city-chip:hover { border-color: var(--accent); color: var(--accent); }
.city-chip__count { font-size: .7rem; color: var(--muted); background: var(--bg2); border-radius: 999px; padding: 1px 7px; }

/* facts / formats sidebar cards */
.facts-card, .formats-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.facts-card__title, .formats-card__title { font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); padding: 13px 16px 9px; }
.formats-list { display: flex; flex-direction: column; }
.format-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 16px; border-top: 1px solid var(--border); font-size: .83rem; }
.format-item__name { display: flex; align-items: center; gap: 8px; }
.format-item__cinemas { color: var(--muted); font-size: .76rem; }
.format-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.format-dot--imax { background: #6cb7ff; }
.format-dot--3d { background: var(--accent2); }
.format-dot--2d { background: var(--accent); }

@media (max-width: 860px) {
  .film-hero__inner { grid-template-columns: 1fr; }
  .film-hero__poster-col { width: 160px; }
  .film-body { grid-template-columns: 1fr; }
  .film-sidebar { position: static; }
  .csr__fmt-row { justify-content: flex-start; }
}

/* ─── Static pages: stat-cards ───────────────────────────── */
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 8px; }
.stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; display: flex; flex-direction: column; gap: 6px; }
.stat-card__num { font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-card__label { font-size: .82rem; color: var(--muted); }

/* ─── Static pages: feature-list ─────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.feature-item__icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.feature-item__title { font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
.feature-item__desc { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ─── Static pages: data-table ───────────────────────────── */
.data-table { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.data-table-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .83rem; }
.data-table-row:last-child { border-bottom: none; }
.data-table-row__icon { font-size: 1rem; }
.data-table-row__note { color: var(--muted); font-size: .78rem; white-space: nowrap; }

/* ─── Static pages: notice ───────────────────────────────── */
.notice { display: flex; align-items: flex-start; gap: 10px; background: rgba(232,200,74,.07); border: 1px solid rgba(232,200,74,.2); border-radius: var(--radius); padding: 14px 16px; font-size: .83rem; color: var(--muted); line-height: 1.55; }
.notice svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

/* ─── Static pages: contact-cards ────────────────────────── */
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card { position: relative; display: flex; align-items: flex-start; gap: 16px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.contact-card__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg3); border-radius: 10px; flex-shrink: 0; color: var(--accent); }
.contact-card__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 4px; }
.contact-card__value { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.contact-card__value a { color: var(--accent); }
.contact-card__value a:hover { text-decoration: underline; }
.contact-card__note { font-size: .8rem; color: var(--muted); }
.contact-card__badge { position: absolute; top: 14px; right: 14px; font-size: .68rem; font-weight: 700; letter-spacing: .06em; background: var(--tag-bg); color: var(--accent); border-radius: 999px; padding: 3px 10px; }

/* ─── Static pages: topic-grid ───────────────────────────── */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.topic-item { display: flex; align-items: flex-start; gap: 12px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.topic-item__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }
.topic-item__title { font-size: .85rem; font-weight: 600; margin-bottom: 4px; }
.topic-item__desc { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ─── Static pages: rules-section ────────────────────────── */
.rules-section { margin-bottom: 36px; }
.rules-section__num { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.rules-section__title { font-family: var(--ff-head); font-size: 1.25rem; margin-bottom: 14px; }
.rules-section__body { font-size: .88rem; line-height: 1.7; color: #ccc; }
.rules-section__body p { margin-bottom: 12px; }
.rules-section__body a { color: var(--accent); }
.rules-section__body a:hover { text-decoration: underline; }
.rule-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.rule-item { display: flex; gap: 12px; align-items: flex-start; font-size: .85rem; line-height: 1.55; }
.rule-item__n { font-weight: 700; color: var(--accent); flex-shrink: 0; min-width: 16px; }
.rule-item__text { color: #ccc; }

/* ─── Static pages: content-section spacing ──────────────── */
.page-content .content-section { margin-bottom: 36px; }
.page-content .content-section:last-child { margin-bottom: 0; }
.content-section__title { font-family: var(--ff-head); font-size: 1.35rem; margin-bottom: 16px; }
.content-section__body { font-size: .88rem; line-height: 1.7; color: #ccc; }
.content-section__body p { margin-bottom: 12px; }
.content-section__body a { color: var(--accent); }

@media (max-width: 680px) {
  .stat-cards { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
  .stat-card__num { font-size: 1.6rem; }
}
