:root {
    --brand-yellow: #f6ce28;
    --brand-yellow-strong: #f3c400;
    --brand-yellow-soft: #fff4bf;
    --brand-cream: #fffdf6;
    --brand-cream-2: #fff9e4;
    --brand-white: #ffffff;

    --text-main: #2f2a22;
    --text-soft: #6f6656;
    --text-light: #8a7f6d;

    --border-soft: rgba(120, 98, 44, 0.14);
    --shadow-soft: 0 14px 32px rgba(163, 134, 41, 0.12);
    --shadow-strong: 0 20px 44px rgba(163, 134, 41, 0.16);

    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;

    --container: 1240px;
}

/* =========================================
   Base
   ========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text-main);
    background: var(--brand-cream);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.skip-link {
    position: absolute;
    top: 0;
    left: -9999px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--brand-yellow);
    color: var(--text-main);
    font-weight: 800;
}

.skip-link:focus {
    top: 16px;
    left: 16px;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 72px 0;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2,
.movie-detail-content h1,
.hs-hero-copy h1 {
    margin: 0 0 14px;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.section-text {
    margin: 0;
    font-size: 1.02rem;
    color: var(--text-soft);
}

/* =========================================
   Buttons
   ========================================= */

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover,
.button:focus {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--brand-yellow);
    color: var(--text-main);
    box-shadow: 0 12px 24px rgba(246, 206, 40, 0.26);
}

.button-secondary {
    background: var(--brand-white);
    color: var(--text-main);
    border-color: var(--border-soft);
}

.button::after {
    content: "";
    position: absolute;
    top: -140%;
    left: -28%;
    width: 42%;
    height: 360%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.36),
        rgba(255, 255, 255, 0)
    );
    transform: rotate(20deg) translateX(-220%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.button:hover::after,
.button:focus::after {
    transform: rotate(20deg) translateX(460%);
}

/* =========================================
   Header
   ========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(246, 206, 40, 0.96);
    border-bottom: 1px solid rgba(47, 42, 34, 0.08);
    backdrop-filter: blur(12px);
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 252, 238, 0.90);
    box-shadow: 0 16px 38px rgba(163, 134, 41, 0.12);
    border-bottom-color: rgba(120, 98, 44, 0.14);
}

.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    transition: min-height 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 72px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: width 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled .brand-logo {
    width: 46px;
    height: 46px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.02;
    min-width: 0;
}

.brand-name {
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-main);
    line-height: 1;
    white-space: nowrap;
}

.brand-tag {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    color: var(--text-soft);
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(120, 98, 44, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(163, 134, 41, 0.12);
}

.nav-toggle-line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-shell {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(120, 98, 44, 0.16);
    background: rgba(255, 252, 241, 0.74);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 26px rgba(163, 134, 41, 0.10);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.site-header.is-scrolled .nav-shell {
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 14px 30px rgba(163, 134, 41, 0.12);
}

.site-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.site-nav-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4px;
    min-width: 0;
}

.site-nav-utility {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
    min-width: 0;
}

.site-nav-sep {
    width: 1px;
    height: 22px;
    background: rgba(120, 98, 44, 0.14);
    margin: 0 2px;
    display: inline-block;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 10px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-soft);
    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 7px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
    opacity: 0.7;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.72);
    transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-nav a.is-active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(163, 134, 41, 0.10);
}

.header-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.button-header {
    min-height: 42px;
    padding: 0 18px;
    white-space: nowrap;
    font-size: 0.95rem;
}

.header-account-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 4px;
    color: var(--text-main);
    font-weight: 800;
    transition: transform 0.2s ease, color 0.2s ease;
}

.header-account-link:hover,
.header-account-link:focus {
    transform: translateY(-1px);
}

.header-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    overflow: hidden;
    pointer-events: none;
}

.header-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f3c400, #fad02c, #ffe37f);
    transform: scaleX(0);
    transform-origin: left center;
}

.nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 160;
    background: rgba(47, 42, 34, 0.22);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

body.nav-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
}

/* =========================================
   Hero
   ========================================= */

.hs-home-page {
    min-height: 100vh;
}

.hs-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 239, 170, 0.75), transparent 36%),
        linear-gradient(180deg, #fff8d8 0%, #fffdf6 100%);
    padding-top: 56px;
    padding-bottom: 56px;
}

.hs-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: center;
}

.hs-hero-copy h1 {
    font-size: clamp(2.6rem, 4.4vw, 4.6rem);
}

.hs-hero-subtext {
    max-width: 680px;
    margin-bottom: 24px;
}

.hs-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.hs-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(120, 98, 44, 0.12);
    box-shadow: 0 10px 22px rgba(163, 134, 41, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hs-search-input-wrap:focus-within {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(163, 134, 41, 0.12);
    border-color: rgba(246, 206, 40, 0.8);
}

.hs-search-icon {
    font-size: 1rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.hs-search-input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text-main);
    outline: none;
}

.hs-search-input::placeholder {
    color: var(--text-light);
}

.hs-search-submit {
    min-height: 58px;
    padding: 0 24px;
}

.hs-filter-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hs-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(120, 98, 44, 0.12);
    color: var(--text-main);
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hs-filter-chip:hover,
.hs-filter-chip:focus {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 20px rgba(163, 134, 41, 0.08);
}

.hs-hero-media {
    display: grid;
    gap: 18px;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    animation: panelFloat 6s ease-in-out infinite;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: -40% auto -40% -30%;
    width: 42%;
    transform: rotate(18deg) translateX(-180%);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0)
    );
    pointer-events: none;
    animation: shimmerSweep 6.8s ease-in-out infinite;
}

.hs-highlight-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.hs-highlight-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.hs-highlight-pill,
.hs-highlight-status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.hs-highlight-pill {
    background: var(--brand-yellow-soft);
    border: 1px solid rgba(120, 98, 44, 0.10);
}

.hs-highlight-status {
    background: rgba(255, 248, 218, 0.92);
    color: var(--text-soft);
}

.hs-highlight-card h2 {
    margin: 0 0 12px;
    font-size: 1.8rem;
    line-height: 1.18;
}

.hs-highlight-card p {
    margin: 0 0 18px;
    color: var(--text-soft);
}

.hs-highlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hs-live-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.hs-stat-card {
    min-height: 110px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-stat-card:hover,
.hs-stat-card:focus-within {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.hs-stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 2rem;
    line-height: 1;
}

.hs-stat-card span {
    color: var(--text-soft);
    font-weight: 700;
}

.hero-blur,
.hero-grid-overlay,
.hero-orbit {
    pointer-events: none;
}

.hero-blur {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.55;
    z-index: 0;
}

.hero-blur-a {
    width: 320px;
    height: 320px;
    top: -40px;
    right: -20px;
    background: rgba(255, 221, 110, 0.55);
    animation: floatBlob 9s ease-in-out infinite;
}

.hero-blur-b {
    width: 260px;
    height: 260px;
    left: -50px;
    bottom: 10px;
    background: rgba(250, 208, 44, 0.28);
    animation: floatBlob 9s ease-in-out infinite;
    animation-delay: -3s;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 218, 102, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 218, 102, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 92%);
    opacity: 0.55;
    z-index: 0;
    animation: gridDrift 18s linear infinite;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(250, 208, 44, 0.18);
    z-index: 0;
}

.hero-orbit-a {
    width: 420px;
    height: 420px;
    top: 54px;
    right: -110px;
    animation: orbitSpin 24s linear infinite;
}

.hero-orbit-b {
    width: 280px;
    height: 280px;
    bottom: 38px;
    left: -60px;
    animation: orbitSpinReverse 20s linear infinite;
}

/* =========================================
   Content sections
   ========================================= */

.hs-content-section {
    background: var(--brand-cream);
}

.hs-sessions-section {
    background: linear-gradient(180deg, #fffdf6 0%, #fff9e8 100%);
}

.hs-movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    align-items: start;
}

.movie-grid-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--brand-white);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    will-change: transform;
}

.movie-grid-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 55%;
    height: 300%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0)
    );
    transform: rotate(18deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-grid-card:hover,
.movie-grid-card:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(250, 208, 44, 0.20);
}

.movie-grid-card:hover::after,
.movie-grid-card:focus-within::after {
    opacity: 1;
    animation: cardShine 0.9s ease;
}

.movie-card-link {
    display: block;
    height: 100%;
}

.movie-poster-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    background: #f7f0cf;
    overflow: hidden;
}

.movie-poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-movie-status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(120, 98, 44, 0.10);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-main);
    box-shadow: 0 8px 16px rgba(47, 42, 34, 0.06);
}

.movie-card-content {
    padding: 18px;
}

.hs-movie-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.movie-title {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.3;
}

.hs-save-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff9df;
    border: 1px solid rgba(120, 98, 44, 0.10);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-soft);
    flex-shrink: 0;
}

.movie-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.caption-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--brand-yellow-soft);
    border: 1px solid var(--border-soft);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-main);
}

.movie-summary {
    margin: 0 0 14px;
    color: var(--text-soft);
}

.hs-movie-meta {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.movie-details-link {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hs-session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.hs-session-card {
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hs-session-poster-wrap {
    width: 100%;
    height: 200px;
    background: #f7f0cf;
    overflow: hidden;
}

.hs-session-poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hs-session-card-body {
    padding: 22px;
}

.hs-session-card:hover,
.hs-session-card:focus-within {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.hs-session-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.hs-session-date {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff9df;
    border: 1px solid rgba(120, 98, 44, 0.10);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-main);
}

.hs-session-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.25;
}

.hs-session-meta {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.hs-session-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hs-session-button {
    min-height: 42px;
    padding: 0 16px;
}

.hs-session-inline-link {
    font-weight: 800;
    color: var(--text-soft);
}

.hs-format-section {
    background: var(--brand-cream-2);
}

.hs-format-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.hs-format-card {
    display: block;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hs-format-card:hover,
.hs-format-card:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.hs-format-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--brand-yellow-soft);
    border: 1px solid rgba(120, 98, 44, 0.10);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.hs-format-card h3 {
    margin: 18px 0 10px;
    font-size: 1.55rem;
    line-height: 1.2;
}

.hs-format-card p {
    margin: 0 0 14px;
    color: var(--text-soft);
}

.hs-format-link {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hs-cinema-section {
    background: linear-gradient(180deg, #fffdf6 0%, #fff8e2 100%);
}

.hs-cinema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.hs-cinema-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hs-cinema-card:hover,
.hs-cinema-card:focus-within {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.hs-cinema-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.hs-cinema-top h3 {
    margin: 0;
    font-size: 1.25rem;
}

.hs-cinema-count {
    color: var(--text-soft);
    font-weight: 800;
    font-size: 0.88rem;
}

.hs-cinema-card p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

.hs-cinema-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.hs-cinema-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff9df;
    border: 1px solid rgba(120, 98, 44, 0.10);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-soft);
}

.hs-cinema-link {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =========================================
   Alerts and CTA sections
   ========================================= */

.hs-alerts-section {
    background: var(--brand-cream-2);
}

.hs-alerts-card,
.hs-contact-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) auto;
    gap: 32px;
    align-items: center;
    padding: 34px 36px;
    border-radius: 28px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.hs-alerts-card {
    background:
        radial-gradient(circle at top right, rgba(250, 208, 44, 0.18), transparent 26%),
        rgba(255, 255, 255, 0.82);
}

.hs-contact-cta-section {
    padding-top: 0;
    background: var(--brand-cream);
}

.hs-contact-cta-card {
    background: rgba(255, 255, 255, 0.92);
}

.hs-alerts-actions,
.hs-contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* =========================================
   Movie detail page
   ========================================= */

.movie-detail-page {
    min-height: 100vh;
    background: var(--brand-cream);
}

.movie-detail-section {
    padding-top: 48px;
}

.movie-detail-top {
    margin-bottom: 20px;
}

.detail-back-link {
    font-weight: 800;
    color: var(--text-soft);
}

.detail-back-link:hover,
.detail-back-link:focus {
    color: var(--text-main);
}

.movie-detail-layout {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.movie-detail-poster {
    position: sticky;
    top: 110px;
}

.movie-detail-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
}

.movie-detail-content {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--brand-white);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.movie-detail-summary {
    margin-bottom: 22px;
}

.movie-meta-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin: 0 0 28px;
}

.movie-meta-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff9df;
    border: 1px solid var(--border-soft);
}

.movie-meta-label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.movie-meta-value {
    font-weight: 700;
    color: var(--text-main);
}

.movie-copy-block + .movie-copy-block {
    margin-top: 24px;
}

.movie-copy-block h2 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.movie-copy-block p,
.movie-copy-block li {
    color: var(--text-soft);
}

.movie-cinema-list {
    margin: 0;
    padding-left: 20px;
}

.hs-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
}

/* =========================================
   Footer
   ========================================= */

.hs-site-footer {
    clear: both;
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    margin-top: 40px;
    padding: 28px 0 34px;
    background:
        linear-gradient(180deg, rgba(255, 249, 228, 0.35) 0%, rgba(255, 255, 255, 0.92) 100%);
    border-top: 1px solid rgba(120, 98, 44, 0.10);
    overflow: hidden;
}

.hs-site-footer::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 72vw);
    height: 120px;
    background: radial-gradient(
        circle,
        rgba(250, 208, 44, 0.18) 0%,
        rgba(250, 208, 44, 0.05) 42%,
        transparent 72%
    );
    pointer-events: none;
    filter: blur(12px);
}

.hs-site-footer-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px 28px;
    flex-wrap: wrap;
    padding: 20px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(120, 98, 44, 0.10);
    box-shadow: 0 12px 28px rgba(163, 134, 41, 0.08);
    backdrop-filter: blur(10px);
}

.hs-footer-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hs-footer-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff4bf;
    border: 1px solid rgba(120, 98, 44, 0.12);
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hs-footer-text {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.6;
}

.hs-footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.hs-footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hs-footer-links a:hover,
.hs-footer-links a:focus {
    background: rgba(250, 208, 44, 0.12);
    color: var(--text-main);
    transform: translateY(-1px);
}

/* =========================================
   Flash messages
   ========================================= */

.message {
    width: min(var(--container), calc(100% - 32px));
    margin: 20px auto 0;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
}

.message.success {
    background: #eef9e8;
    color: #245b1e;
}

.message.error {
    background: #fff0f0;
    color: #8f2020;
}

.message.warning {
    background: #fff6df;
    color: #7a5a00;
}

.message.info {
    background: #eef6ff;
    color: #1f4c87;
}

.reveal {
    will-change: opacity, transform;
}

/* =========================================
   Animations
   ========================================= */

@keyframes gridDrift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(12px, 10px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitSpinReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes floatBlob {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -12px, 0) scale(1.04);
    }
}

@keyframes panelFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes shimmerSweep {
    0%,
    100% {
        transform: rotate(18deg) translateX(-180%);
    }
    55% {
        transform: rotate(18deg) translateX(420%);
    }
}

@keyframes cardShine {
    from {
        transform: translateX(-160%) rotate(18deg);
    }
    to {
        transform: translateX(280%) rotate(18deg);
    }
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1480px) {
    .header-inner {
        gap: 12px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-name {
        font-size: 0.92rem;
    }

    .brand-tag {
        font-size: 0.64rem;
    }

    .site-nav {
        gap: 6px;
    }

    .site-nav-primary,
    .site-nav-utility {
        gap: 2px;
    }

    .site-nav a {
        min-height: 36px;
        padding: 0 8px;
        font-size: 0.86rem;
    }

    .button-header {
        min-height: 40px;
        padding: 0 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1380px) {
    .brand-tag {
        display: none;
    }

    .site-nav a {
        font-size: 0.84rem;
        padding: 0 7px;
    }

    .button-header {
        padding: 0 14px;
    }
}

@media (max-width: 1260px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .header-actions {
        display: none;
    }

    .nav-shell {
        position: fixed;
        top: 86px;
        left: 50%;
        width: min(92vw, 430px);
        padding: 14px;
        border-radius: 24px;
        transform: translate(-50%, -14px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 190;
        background: rgba(255, 252, 241, 0.96);
        box-shadow: 0 24px 54px rgba(163, 134, 41, 0.18);
    }

    body.nav-open .nav-shell {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .site-nav,
    .site-nav-primary,
    .site-nav-utility {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 8px;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .site-nav-primary,
    .site-nav-utility {
        flex-wrap: wrap;
        margin-left: 0;
    }

    .site-nav-sep {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }

    .site-nav a {
        justify-content: space-between;
        min-height: 46px;
        padding: 0 16px;
        font-size: 0.92rem;
    }

    .hs-hero-layout,
    .hs-alerts-card,
    .hs-contact-cta-card,
    .movie-detail-layout {
        grid-template-columns: 1fr;
    }

    .hs-live-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .movie-detail-poster {
        position: static;
        max-width: 360px;
    }

    .hero-orbit-a {
        width: 320px;
        height: 320px;
        right: -120px;
    }

    .hero-orbit-b {
        width: 220px;
        height: 220px;
        left: -80px;
    }

    .hs-alerts-actions,
    .hs-contact-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .hs-format-grid {
        grid-template-columns: 1fr;
    }

    .hs-search-form {
        grid-template-columns: 1fr;
    }

    .hs-search-submit {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-name {
        font-size: 0.84rem;
    }

    .site-header.is-scrolled .brand-logo {
        width: 40px;
        height: 40px;
    }

    .nav-shell {
        top: 78px;
    }

    .hs-hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hs-hero-copy h1 {
        font-size: 2.15rem;
    }

    .hs-movie-grid,
    .hs-session-grid,
    .hs-cinema-grid,
    .hs-live-strip {
        grid-template-columns: 1fr;
    }

    .hs-highlight-card,
    .hs-format-card,
    .hs-session-card,
    .hs-cinema-card,
    .hs-alerts-card,
    .hs-contact-cta-card,
    .movie-detail-content {
        padding: 22px;
    }

    .movie-meta-list {
        grid-template-columns: 1fr;
    }

    .hero-grid-overlay {
        background-size: 34px 34px;
        opacity: 0.35;
    }

    .hero-panel {
        animation-duration: 7.5s;
    }

    .hs-site-footer {
        padding: 22px 0 28px;
    }

    .hs-site-footer-inner {
        padding: 18px;
        border-radius: 20px;
    }

    .hs-footer-text {
        font-size: 0.9rem;
    }

    .hs-footer-links {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-blur-a,
    .hero-blur-b,
    .hero-panel,
    .hero-panel::before,
    .hero-grid-overlay,
    .hero-orbit,
    .button::after,
    .movie-grid-card::after {
        animation: none !important;
        transition: none !important;
    }
}
/* =========================================
   Movie detail page upgrades
   ========================================= */

.movie-detail-hero {
    padding-top: 40px;
    padding-bottom: 32px;
}

.movie-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.movie-info-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.movie-info-card h2 {
    margin: 0 0 12px;
    font-size: 1.2rem;
    line-height: 1.25;
}

.movie-info-card p,
.movie-info-card li {
    color: var(--text-soft);
}

@media (max-width: 1100px) {
    .movie-detail-info-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   Movie detail page - visual enhancement
   ========================================= */

.movie-detail-page--enhanced {
    background:
        radial-gradient(circle at top right, rgba(250, 208, 44, 0.14), transparent 24%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 32%),
        linear-gradient(180deg, #fffdf6 0%, #fff9ec 46%, #fffdf8 100%);
}

.movie-detail-hero {
    padding-top: 42px;
    padding-bottom: 40px;
}

.movie-detail-top {
    margin-bottom: 22px;
}

.detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(120, 98, 44, 0.10);
    box-shadow: 0 10px 24px rgba(163, 134, 41, 0.08);
    font-weight: 800;
    color: var(--text-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.detail-back-link:hover,
.detail-back-link:focus {
    color: var(--text-main);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(163, 134, 41, 0.12);
}

.movie-detail-layout--enhanced {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 38px;
    align-items: stretch;
}

.movie-detail-poster--enhanced {
    position: sticky;
    top: 108px;
}

.movie-detail-poster-card {
    padding: 18px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 249, 230, 0.95) 100%);
    border: 1px solid rgba(120, 98, 44, 0.10);
    box-shadow: 0 24px 54px rgba(163, 134, 41, 0.12);
}

.movie-detail-poster-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #f8f1d4;
}

.movie-detail-poster-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(47, 42, 34, 0.04) 100%);
    pointer-events: none;
}

.movie-detail-image {
    width: 100%;
    display: block;
    border-radius: 24px;
    box-shadow: none;
}

.movie-detail-poster-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.movie-detail-poster-stat {
    padding: 14px 14px 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(120, 98, 44, 0.09);
}

.movie-detail-poster-label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.movie-detail-poster-stat strong {
    display: block;
    font-size: 0.98rem;
    color: var(--text-main);
    line-height: 1.35;
}

.movie-detail-content--enhanced {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 252, 243, 0.95) 100%);
    border: 1px solid rgba(120, 98, 44, 0.10);
    box-shadow: 0 22px 50px rgba(163, 134, 41, 0.10);
}

.movie-detail-content--enhanced::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 208, 44, 0.18) 0%, rgba(250, 208, 44, 0.04) 56%, transparent 72%);
    pointer-events: none;
}

.movie-detail-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.movie-detail-heading h1 {
    margin: 0;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.movie-detail-kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #76684f;
}

.movie-detail-summary {
    position: relative;
    z-index: 1;
    max-width: 64ch;
    margin-bottom: 24px;
    font-size: 1.02rem;
    line-height: 1.75;
}

.movie-meta-list--enhanced {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.movie-meta-item {
    padding: 16px 16px 15px;
    border-radius: 18px;
    background: rgba(255, 248, 220, 0.82);
    border: 1px solid rgba(120, 98, 44, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.movie-meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(163, 134, 41, 0.08);
    background: rgba(255, 251, 233, 0.96);
}

.movie-meta-item--accent {
    background: linear-gradient(180deg, #fff1ad 0%, #ffe98d 100%);
}

.movie-meta-label {
    margin-bottom: 6px;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
}

.movie-meta-value {
    font-size: 1rem;
    line-height: 1.35;
}

.movie-detail-note {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(120, 98, 44, 0.08);
    color: var(--text-soft);
    line-height: 1.55;
}

.movie-detail-note-dot {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffd54a 0%, #f4b400 100%);
    box-shadow: 0 0 0 4px rgba(250, 208, 44, 0.14);
}

.hs-detail-actions--enhanced {
    position: relative;
    z-index: 1;
    margin-top: 0;
    gap: 14px;
}

.hs-sessions-section--enhanced {
    position: relative;
    padding-top: 28px;
}

.section-heading--detail {
    margin-bottom: 24px;
}

.hs-session-grid--enhanced {
    gap: 22px;
}

.hs-session-card--enhanced {
    padding: 0;
    overflow: hidden;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(120, 98, 44, 0.10);
    box-shadow: 0 16px 38px rgba(163, 134, 41, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hs-session-card--enhanced:hover,
.hs-session-card--enhanced:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(163, 134, 41, 0.12);
    border-color: rgba(250, 208, 44, 0.34);
}

.hs-session-card-inner {
    padding: 22px 22px 20px;
}

.hs-session-time {
    margin: 2px 0 10px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.hs-session-card--enhanced h3 {
    margin: 0 0 12px;
    font-size: 1.28rem;
    line-height: 1.2;
}

.hs-session-meta--enhanced {
    gap: 4px;
    margin-bottom: 18px;
}

.hs-session-cinema {
    font-weight: 700;
    color: var(--text-main);
}

.hs-session-location {
    color: var(--text-soft);
}

.hs-session-actions--enhanced {
    align-items: center;
    gap: 12px;
}

.hs-session-inline-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 4px;
    font-weight: 800;
    color: var(--text-soft);
    transition: color 0.2s ease, transform 0.2s ease;
}

.hs-session-inline-link:hover {
    color: var(--text-main);
    transform: translateY(-1px);
}

.hs-content-section--detail-panels {
    padding-top: 20px;
}

.movie-detail-info-grid--enhanced {
    gap: 22px;
}

.movie-info-card--enhanced {
    position: relative;
    overflow: hidden;
    padding: 26px 24px 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(120, 98, 44, 0.10);
    box-shadow: 0 16px 36px rgba(163, 134, 41, 0.08);
}

.movie-info-card--enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fad02c 0%, #ffe48a 100%);
}

.movie-info-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.movie-info-card--enhanced h2 {
    margin-bottom: 12px;
    font-size: 1.28rem;
}

.movie-info-card--enhanced p,
.movie-info-card--enhanced li {
    font-size: 0.98rem;
    line-height: 1.75;
}

.movie-cinema-list li + li {
    margin-top: 6px;
}

@media (max-width: 1260px) {
    .movie-detail-layout--enhanced {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .movie-detail-poster--enhanced {
        position: static;
        max-width: 380px;
    }

    .movie-meta-list--enhanced {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .movie-detail-content--enhanced {
        padding: 24px;
        border-radius: 24px;
    }

    .movie-detail-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .movie-detail-heading h1 {
        font-size: 2.2rem;
    }

    .movie-detail-poster-card {
        padding: 14px;
        border-radius: 24px;
    }

    .movie-detail-poster-meta,
    .movie-meta-list--enhanced,
    .movie-detail-info-grid--enhanced {
        grid-template-columns: 1fr;
    }

    .hs-session-card-inner {
        padding: 20px;
    }

    .hs-session-time {
        font-size: 1.72rem;
    }

    .hs-session-actions--enhanced {
        flex-direction: column;
        align-items: stretch;
    }

    .hs-session-inline-link {
        justify-content: center;
        width: 100%;
    }
}
