@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cinzel:wght@400;700&family=Oswald:wght@300;400;700&display=swap');

:root {
    --primary-bg: #050506;
    --panel: rgba(14, 14, 16, 0.88);
    --panel-strong: #101012;
    --gold: #d4af37;
    --gold-soft: #f4d77a;
    --neon-red: #e50914;
    --crimson: #8b0612;
    --ivory: #fff4df;
    --teal: #0c6f78;
    --text-main: #f4efe7;
    --text-muted: #bdb3a4;
    --line: rgba(212, 175, 55, 0.28);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-script: 'Cinzel', serif;
    --font-body: 'Oswald', sans-serif;
    --hero-image: url('../images/bollywood-hero-premiere.png');
    --section-sheet: url('../images/bollywood-logistics-lobby.png');
    --explore-image: url('../images/bollywood-explore-mumbai.png');
    --logistics-image: url('../images/bollywood-logistics-lobby.png');
    --guestbook-image: url('../images/bollywood-guestbook-desk.png');
    --shagun-image: url('../images/bollywood-shagun-stage.png');
    --wardrobe-image: url('../images/dress-sangeet-spotlight-generated.jpg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-tap-highlight-color: transparent;
}
body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; }

:where(a, button, [role="button"], input, textarea, select, label, summary, .magnetic-btn, .cinema-btn-large, .cinema-btn-small, .btn) {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.film-grain {
    position: fixed;
    inset: 0;
    z-index: 9998;
    opacity: 0.045;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.45) 0 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.32) 0 1px, transparent 1px);
    background-size: 9px 9px, 13px 13px;
    mix-blend-mode: screen;
}

#spotlight-cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 215, 122, 0.16) 0%, rgba(229, 9, 20, 0.08) 34%, transparent 66%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

.page-transition-curtain {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.18) 0 8%, transparent 8% 16%),
        linear-gradient(135deg, #450007, #e50914 45%, #111 100%);
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    z-index: 10001;
    background: linear-gradient(90deg, var(--neon-red), var(--gold), var(--teal));
}

.cinema-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 70px;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px clamp(16px, 4vw, 42px);
    background: linear-gradient(180deg, rgba(5,5,6,0.94), rgba(5,5,6,0.58), transparent);
    transition: transform 0.35s ease, background 0.35s ease;
}
.cinema-nav.nav-hidden { transform: translateY(-100%); }
.cinema-nav.nav-white { background: rgba(5,5,6,0.9); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav-brand {
    color: var(--gold);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    white-space: nowrap;
}
.nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 30px);
    flex-wrap: wrap;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.glow-link { color: var(--neon-red) !important; text-shadow: 0 0 12px rgba(229,9,20,0.8); }

.cinema-btn-small,
.cinema-btn-large,
.cinema-btn-outline,
.ticket-link,
.open-costume-btn,
.shagun-app-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    touch-action: manipulation;
}
.cinema-btn-small {
    background: rgba(0,0,0,0.34);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.cinema-btn-large,
.cinema-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 34px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
}
.cinema-btn-large {
    background: var(--neon-red);
    color: white;
    border-color: var(--neon-red);
    box-shadow: 0 0 24px rgba(229,9,20,0.44);
}
.cinema-btn-outline {
    background: rgba(0,0,0,0.34);
    color: var(--gold);
    border-color: var(--gold);
}
.cinema-btn-small:hover,
.cinema-btn-outline:hover { background: var(--gold); color: #070707; }
.cinema-btn-large:hover { background: transparent; color: var(--neon-red); }

.hero-premiere {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 120px 18px 70px;
    background: linear-gradient(180deg, rgba(5,5,6,0.25), rgba(5,5,6,0.78)), var(--hero-image) center/cover no-repeat;
    position: relative;
    overflow: hidden;
}
.hero-premiere::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 24vh;
    background: linear-gradient(transparent, var(--primary-bg));
    pointer-events: none;
}
.hero-spotlight {
    position: absolute;
    top: -18vh;
    width: 24vw;
    height: 120vh;
    background: linear-gradient(180deg, rgba(244,215,122,0.34), transparent 70%);
    filter: blur(8px);
    opacity: 0.48;
    transform-origin: top;
    pointer-events: none;
}
.hero-spotlight-left { left: 4vw; transform: rotate(18deg); animation: spotlightSweep 8s ease-in-out infinite alternate; }
.hero-spotlight-right { right: 4vw; transform: rotate(-18deg); animation: spotlightSweepRight 9s ease-in-out infinite alternate; }

.marquee-sign-wrapper {
    position: relative;
    z-index: 2;
    width: min(920px, 94vw);
    background: linear-gradient(145deg, #050505, #151515);
    padding: clamp(12px, 2vw, 22px);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 24px 80px rgba(0,0,0,0.72), 0 0 60px rgba(212,175,55,0.16);
    transform-style: preserve-3d;
}
.marquee-sign {
    border: 2px dotted var(--gold);
    padding: clamp(28px, 7vw, 58px) clamp(18px, 5vw, 44px);
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(212,175,55,0.16), transparent 42%),
        rgba(0,0,0,0.32);
}
.marquee-lights {
    position: absolute;
    inset: 10px;
    pointer-events: none;
    background-image: radial-gradient(circle, var(--gold-soft) 0 2px, transparent 3px);
    background-size: 34px 34px;
    opacity: 0.4;
    animation: marqueeBlink 1.8s steps(2) infinite;
}
.hero-subtitle,
.section-kicker {
    color: var(--gold);
    font-family: var(--font-script);
    font-size: clamp(0.82rem, 2.6vw, 1.25rem);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.cinematic-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 8rem);
    line-height: 0.92;
    color: var(--neon-red);
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(229,9,20,0.8), 0 0 30px rgba(229,9,20,0.34);
    animation: flicker 5s infinite alternate;
    max-width: 100%;
    overflow-wrap: anywhere;
}
.cinematic-title .amp {
    color: var(--gold);
    font-family: var(--font-script);
    font-size: 0.55em;
    vertical-align: middle;
}
.hero-date,
.hero-tagline {
    color: var(--gold);
    font-size: clamp(1rem, 3vw, 1.45rem);
    letter-spacing: 3px;
    margin-top: 10px;
    text-transform: uppercase;
}
.hero-tagline { color: var(--text-main); font-size: 1rem; letter-spacing: 2px; }
.hero-actions {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.play-trailer-btn {
    min-height: 52px;
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--text-main);
    background: rgba(0,0,0,0.34);
    padding: 12px 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-banner {
    position: relative;
    z-index: 4;
    margin: -52px auto 0;
    width: min(980px, calc(100% - 28px));
    padding: 18px;
    background: rgba(10,10,11,0.82);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(0,0,0,0.42);
    text-align: center;
}
.countdown-banner p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.time-block {
    min-height: 92px;
    display: grid;
    place-items: center;
    padding: 12px 8px;
    background: linear-gradient(145deg, rgba(229,9,20,0.16), rgba(212,175,55,0.08));
    border: 1px solid rgba(255,255,255,0.08);
}
.time-block strong {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 3.7rem);
    color: var(--gold);
    line-height: 0.9;
}
.time-block span { color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-size: 0.82rem; }

section { position: relative; }
section:not(.hero-premiere) {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}
.section-header-cinema {
    text-align: center;
    width: min(900px, 92vw);
    margin: 0 auto 46px;
}
.section-header-cinema h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 9vw, 4.4rem);
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.section-header-cinema p { color: var(--text-muted); max-width: 680px; margin: 10px auto 0; line-height: 1.7; }
.cinema-divider {
    width: 120px;
    height: 3px;
    margin: 12px auto;
    background: linear-gradient(90deg, transparent, var(--neon-red), var(--gold), transparent);
}

.love-story-section {
    padding: clamp(80px, 12vw, 130px) 0;
    background: linear-gradient(180deg, #050506, #0a0708 52%, #050506);
    overflow: hidden;
}
.film-strip-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #111;
}
.film-strip-viewport::-webkit-scrollbar { height: 8px; }
.film-strip-viewport::-webkit-scrollbar-thumb { background: var(--gold); }
.film-strip-track {
    display: flex;
    width: max-content;
    gap: clamp(22px, 4vw, 46px);
    padding: 42px 8vw;
}
.film-frame {
    width: min(76vw, 720px);
    min-height: 480px;
    position: relative;
    background: #030303;
    border: 16px solid #0d0d0e;
    box-shadow: 0 22px 60px rgba(0,0,0,0.72);
    overflow: hidden;
    transform-style: preserve-3d;
    flex: 0 0 min(76vw, 720px);
    scroll-snap-align: center;
}
.film-frame::before,
.film-frame::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    z-index: 4;
    background-image: radial-gradient(circle, var(--ivory) 32%, transparent 34%);
    background-size: 32px 20px;
    opacity: 0.88;
}
.film-frame::before { top: 0; }
.film-frame::after { bottom: 0; }
.frame-number {
    position: absolute;
    top: 34px;
    left: 28px;
    z-index: 5;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.frame-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0.85) contrast(1.1);
    opacity: 0.72;
    transition: filter 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
}
.film-frame:hover .frame-image { filter: saturate(1.15) contrast(1.05); opacity: 0.95; transform: scale(1.045); }
.frame-text-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 28px;
    z-index: 5;
    padding: 22px;
    background: rgba(0,0,0,0.74);
    border-left: 4px solid var(--neon-red);
}
.story-year { color: var(--gold); font-family: var(--font-heading); font-size: 2rem; }
.frame-text-overlay h3 { font-family: var(--font-script); color: var(--ivory); font-size: 1.45rem; margin: 4px 0 8px; }
.frame-text-overlay p { color: var(--text-muted); line-height: 1.55; }

.families-billing-section,
.assistance-section,
.shagun-section,
.box-office-section {
    padding: clamp(80px, 12vw, 130px) 20px;
    background: #050506;
}
.assistance-section {
    background: linear-gradient(rgba(5,5,6,0.88), rgba(5,5,6,0.94)), var(--logistics-image) center/cover;
}
.shagun-section {
    background: linear-gradient(rgba(5,5,6,0.88), rgba(5,5,6,0.94)), var(--shagun-image) center/cover;
}
.box-office-section {
    background: linear-gradient(rgba(5,5,6,0.88), rgba(5,5,6,0.94)), var(--guestbook-image) center/cover;
}
.billing-block-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.billing-card,
.assist-column,
.shagun-card,
.box-office-window,
.fan-mail-desk,
.guestbook-message {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(0,0,0,0.36);
    overflow: hidden;
}
.billing-card::before,
.assist-card::before,
.vintage-ticket::before,
.album-card::before,
.faq-item::before,
.shagun-card::before,
.box-office-window::before,
.fan-mail-desk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(244,215,122,0.16), transparent 34%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.billing-card:hover::before,
.assist-card:hover::before,
.vintage-ticket:hover::before,
.album-card:hover::before,
.faq-item:hover::before,
.shagun-card:hover::before,
.box-office-window:hover::before,
.fan-mail-desk:hover::before { opacity: 1; }
.billing-card { padding: 32px; text-align: center; }
.billing-crest {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    color: var(--gold);
    border: 1px solid var(--line);
    border-radius: 999px;
}
.billing-card p { margin: 18px 0; text-transform: uppercase; color: var(--text-muted); }
.billing-card p span { display: block; font-size: 0.78rem; letter-spacing: 2px; }
.billing-card p strong { display: block; color: var(--ivory); font-size: 1.35rem; letter-spacing: 1px; }
.billing-role { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; }

.showtimes-section {
    padding: clamp(80px, 12vw, 130px) 20px;
    background:
        radial-gradient(circle at 20% 10%, rgba(229,9,20,0.14), transparent 30%),
        radial-gradient(circle at 88% 24%, rgba(12,111,120,0.16), transparent 28%),
        linear-gradient(rgba(5,5,6,0.84), rgba(5,5,6,0.92)), var(--wardrobe-image) center/cover;
}
.tickets-container {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
    perspective: 1200px;
}
.vintage-ticket {
    display: grid;
    grid-template-columns: 132px 1fr 108px;
    min-height: 210px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.05), transparent),
        #101012;
    border: 1px solid rgba(212,175,55,0.26);
    color: white;
    box-shadow: 0 18px 54px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    will-change: transform;
}
.vintage-ticket:hover { transform: translateY(-6px); box-shadow: 0 28px 76px rgba(0,0,0,0.62); }
.ticket-left {
    background: linear-gradient(180deg, var(--neon-red), #600009);
    display: grid;
    place-items: center;
    position: relative;
}
.ticket-icon {
    width: 78px;
    height: 78px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.38));
    transition: transform 0.35s ease, filter 0.35s ease;
}
.vintage-ticket:hover .ticket-icon {
    transform: translateY(-3px) rotate(-4deg) scale(1.06);
    filter: drop-shadow(0 12px 24px rgba(244,215,122,0.28));
}
.ticket-stub-tear {
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 20px;
    background-image: radial-gradient(circle, var(--primary-bg) 50%, transparent 52%);
    background-size: 20px 20px;
    background-position: -10px 0;
}
.ticket-center { padding: 28px clamp(20px, 4vw, 40px); }
.ticket-kicker { color: var(--gold); text-transform: uppercase; letter-spacing: 2px; }
.ticket-center h3 {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 8vw, 3.3rem);
    letter-spacing: 2px;
    color: var(--ivory);
}
.ticket-meta { color: var(--text-muted); margin: 8px 0; font-size: 1rem; }
.ticket-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.88rem;
}
.ticket-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.ticket-link,
.open-costume-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 13px;
    background: rgba(0,0,0,0.24);
    color: var(--ivory);
    border: 1px solid rgba(255,255,255,0.16);
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ticket-link:hover,
.open-costume-btn:hover { border-color: var(--gold); color: var(--gold); }
.ride-link {
    border-color: rgba(12,111,120,0.7);
    background: linear-gradient(135deg, rgba(12,111,120,0.18), rgba(0,0,0,0.18));
}
.ride-link:hover { box-shadow: 0 0 18px rgba(12,111,120,0.34); }
.ticket-right {
    border-left: 2px dashed rgba(255,255,255,0.18);
    display: grid;
    place-items: center;
    background: #151518;
    overflow: hidden;
}
.ticket-barcode {
    font-family: 'Courier New', monospace;
    color: rgba(255,255,255,0.38);
    font-size: 1.3rem;
    transform: rotate(90deg);
    white-space: nowrap;
}
.admit-one {
    color: var(--gold);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 2px;
}

.assistance-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.assist-column { padding: 24px; }
.assist-column h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.assist-card {
    position: relative;
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px dashed rgba(255,255,255,0.14);
}
.assist-card i { color: var(--neon-red); font-size: 1.3rem; margin-top: 4px; }
.assist-card h4 { color: var(--ivory); font-size: 1.05rem; }
.assist-card p { color: var(--text-muted); line-height: 1.55; }
.assist-card strong, .assist-card a { display: inline-block; margin-top: 8px; color: var(--gold); }

.explore-teaser-section {
    min-height: 420px;
    display: grid;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(90deg, rgba(5,5,6,0.9), rgba(5,5,6,0.34)), var(--explore-image) center/cover;
}
.explore-teaser-copy { width: min(620px, 92vw); margin-left: max(0px, calc((100vw - 1100px) / 2)); }
.explore-teaser-copy h2 {
    font-family: var(--font-heading);
    color: var(--ivory);
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: 0.95;
    margin: 12px 0 24px;
}

.shagun-card {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 0;
    min-height: 360px;
}
.shagun-copy { padding: clamp(26px, 5vw, 48px); align-self: center; }
.shagun-copy p { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.shagun-copy strong { color: var(--gold); font-size: 1.3rem; }
.shagun-apps { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.shagun-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    color: var(--ivory);
    background: rgba(0,0,0,0.28);
    text-decoration: none;
    padding: 10px 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}
.primary-mini { background: var(--neon-red); border-color: var(--neon-red); }
.shagun-poster img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.08);
}

.box-office-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    max-width: 1120px;
    margin: 0 auto;
}
.box-office-section::before {
    content: "RSVP";
    position: absolute;
    inset: 28px auto auto 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.035);
    font-family: var(--font-heading);
    font-size: clamp(7rem, 18vw, 14rem);
    letter-spacing: 10px;
    pointer-events: none;
}
.box-office-window,
.fan-mail-desk { padding: clamp(26px, 5vw, 46px); text-align: center; }
.box-office-window h2,
.fan-mail-desk h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 9vw, 4rem);
    color: var(--gold);
    letter-spacing: 3px;
}
.box-office-window p,
.fan-mail-sub { color: var(--text-muted); line-height: 1.7; margin: 12px 0 24px; }
.box-office-window .cinema-btn-outline { margin-top: 16px; width: 100%; }
.box-office-window .cinema-btn-large {
    width: 100%;
    margin-top: 8px;
}

.final-rsvp-section {
    padding: clamp(70px, 10vw, 120px) 18px;
    background:
        radial-gradient(circle at 18% 20%, rgba(229,9,20,0.2), transparent 32%),
        radial-gradient(circle at 82% 12%, rgba(212,175,55,0.18), transparent 28%),
        linear-gradient(180deg, #050506, #120608 60%, #050506);
    border-top: 1px solid rgba(212,175,55,0.18);
}
.final-rsvp-panel {
    width: min(1060px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 6vw, 62px);
    text-align: center;
    border: 1px solid rgba(212,175,55,0.42);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.055), transparent),
        rgba(8,8,10,0.9);
    box-shadow: 0 30px 90px rgba(0,0,0,0.5), inset 0 0 50px rgba(229,9,20,0.08);
}
.final-rsvp-panel h2 {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 11vw, 6.7rem);
    line-height: 0.92;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 10px auto 16px;
}
.final-rsvp-panel p {
    max-width: 680px;
    margin: 0 auto 26px;
    color: var(--text-muted);
    line-height: 1.75;
}
.final-rsvp-actions,
.modal-action-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.guestbook-messages {
    display: grid;
    gap: 12px;
    margin: 20px 0;
    text-align: left;
}
.guestbook-message { padding: 16px; }
.guestbook-message.is-yours {
    border-color: rgba(212,175,55,0.56);
    box-shadow: 0 18px 48px rgba(212,175,55,0.13), 0 18px 44px rgba(0,0,0,0.34);
}
.guestbook-message span { color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }
.guestbook-message p { color: var(--ivory); margin: 8px 0; line-height: 1.55; }
.guestbook-message strong { color: var(--text-muted); }
.guestbook-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.guestbook-edit-btn,
.guestbook-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(212,175,55,0.28);
    color: var(--gold);
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.guestbook-delete-btn {
    border-color: rgba(229,9,20,0.45);
    color: var(--ivory);
}
.guestbook-edit-btn:hover,
.guestbook-delete-btn:hover {
    border-color: var(--gold);
    color: var(--ivory);
}
.cinema-form input,
.cinema-form textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 12px;
    background: rgba(0,0,0,0.54);
    border: 1px solid rgba(255,255,255,0.16);
    color: var(--ivory);
    resize: vertical;
}
.cinema-form input:focus,
.cinema-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.12); }

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 24px;
    background: rgba(0,0,0,0.84);
    backdrop-filter: blur(12px);
}
#ride-modal {
    align-items: center !important;
    justify-content: center !important;
}
#ride-modal .cinematic-modal {
    width: min(440px, calc(100vw - 28px));
    padding: 24px 18px 26px;
    text-align: center;
}
#ride-modal .close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    float: none;
}
#ride-modal .modal-eyebrow,
#ride-modal h2,
#ride-modal p {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
#ride-modal h2 {
    max-width: 100%;
    padding: 0 36px;
    font-family: var(--font-heading);
    color: var(--ivory);
    letter-spacing: 1px;
    line-height: 1.05;
}
#ride-modal #ride-modal-location {
    color: var(--text-muted);
    line-height: 1.45;
}
#ride-modal-actions {
    width: 100%;
    display: grid;
    gap: 10px;
}
#ride-modal-actions .shagun-app-btn {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    text-align: center;
}
.cinematic-modal {
    width: min(920px, 100%);
    max-height: min(88vh, 820px);
    overflow-y: auto;
    background: #101012;
    border: 1px solid var(--gold);
    box-shadow: 0 0 70px rgba(212,175,55,0.2);
    position: relative;
}
.close-modal {
    position: sticky;
    top: 12px;
    float: right;
    z-index: 5;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: #050506;
    border: 1px solid var(--line);
    color: var(--ivory);
    cursor: pointer;
}
.dress-modal-grid {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 26px;
    padding: clamp(26px, 5vw, 46px);
}
.modal-eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; }
.modal-action-grid {
    margin: 18px auto;
}
.modal-status {
    min-height: 24px;
    color: var(--gold);
    margin: 10px 0;
    letter-spacing: 1px;
}
.dress-modal-copy .cinematic-title { font-size: clamp(3.2rem, 8vw, 5rem); margin: 8px 0; }
.vibe-text { color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.dress-modal-copy p { color: var(--text-muted); line-height: 1.7; }
.color-palette { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.color-swatch {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.32);
    cursor: pointer;
    position: relative;
}
.color-swatch.copied::after {
    content: "Copied";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    background: var(--gold);
    color: #050506;
    padding: 4px 8px;
    font-size: 0.75rem;
}
.dc-image-preview img {
    width: 100%;
    min-height: 420px;
    max-height: 620px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.12);
}
.shagun-qr {
    width: 240px;
    height: 240px;
    object-fit: contain;
    margin: 18px auto;
    display: block;
    background: white;
    padding: 12px;
}
.text-center { text-align: center; }
.cinema-footer {
    text-align: center;
    padding: 34px 20px;
    background: #030303;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.cinema-footer p { color: var(--gold); font-family: var(--font-heading); font-size: 1.25rem; }

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.32);
    animation: rippleOut 0.7s ease-out;
    pointer-events: none;
    z-index: -1;
}

.ticket-reveal {
    opacity: 0;
    transform: translateY(32px);
}
.ticket-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

@keyframes rippleOut { to { transform: scale(2.8); opacity: 0; } }
@keyframes marqueeBlink { 50% { opacity: 0.72; filter: brightness(1.5); } }
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(229,9,20,0.8), 0 0 30px rgba(229,9,20,0.34); }
    20%, 24%, 55% { opacity: 0.72; text-shadow: none; }
}
@keyframes spotlightSweep { to { transform: rotate(25deg) translateX(6vw); opacity: 0.34; } }
@keyframes spotlightSweepRight { to { transform: rotate(-25deg) translateX(-6vw); opacity: 0.34; } }

@media (max-width: 900px) {
    .cinema-nav {
        grid-template-columns: 1fr auto;
        align-items: start;
    }
    .nav-brand { display: none; }
    .nav-links { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a { white-space: nowrap; font-size: 0.98rem; }
    .billing-block-container,
    .assistance-grid,
    .shagun-card,
    .box-office-section,
    .dress-modal-grid { grid-template-columns: 1fr; }
    .film-frame { width: 84vw; min-height: 430px; }
    .vintage-ticket { grid-template-columns: 88px 1fr; }
    .ticket-right { display: none; }
    .ticket-actions { gap: 8px; }
    .ticket-link, .open-costume-btn { flex: 1 1 calc(50% - 8px); justify-content: center; }
    .dc-image-preview img { min-height: 320px; }
    section:not(.hero-premiere) { content-visibility: visible; contain-intrinsic-size: auto; }
}

@media (max-width: 640px) {
    #spotlight-cursor { display: none; }
    .film-grain { display: none; }
    .cinema-nav {
        min-height: 48px;
        padding: 7px 6px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 6px;
    }
    .nav-links {
        gap: 7px;
        max-width: 100%;
    }
    .nav-links a {
        font-size: clamp(0.58rem, 2.25vw, 0.72rem);
        letter-spacing: 0.45px;
    }
    .lang-toggle-container { justify-self: end; }
    .cinema-btn-small { padding: 5px 8px; font-size: 0.68rem; letter-spacing: 0.8px; }
    .hero-premiere { padding: 78px 8px 46px; justify-content: end; min-height: 92svh; }
    .marquee-sign-wrapper { width: 100%; }
    .cinematic-title { letter-spacing: 1.2px; }
    #hero-title-text {
        display: grid;
        justify-items: center;
        gap: 2px;
        font-size: clamp(3.15rem, 18vw, 4.7rem);
        line-height: 0.86;
    }
    #hero-title-text .amp {
        display: grid;
        place-items: center;
        width: 1.55em;
        height: 1.55em;
        margin: 2px auto;
        border: 1px solid rgba(212,175,55,0.5);
        border-radius: 999px;
        background: rgba(0,0,0,0.36);
        font-size: 0.36em;
        line-height: 1;
    }
    .marquee-sign { padding: 32px 14px; }
    .hero-actions { width: 100%; }
    .cinema-btn-large,
    .cinema-btn-outline,
    .play-trailer-btn { width: 100%; }
    .countdown-banner { margin-top: -20px; }
    .countdown-grid { grid-template-columns: repeat(2, 1fr); }
    .film-strip-viewport { padding-bottom: 12px; }
    .film-strip-track {
        display: flex;
        width: max-content;
        padding: 22px 14px;
        gap: 18px;
    }
    .film-frame {
        width: 82vw;
        flex-basis: 82vw;
        min-height: 410px;
    }
    .vintage-ticket { grid-template-columns: 1fr; min-height: 0; }
    .ticket-left { min-height: 72px; }
    .ticket-icon { width: 64px; height: 64px; }
    .ticket-stub-tear { display: none; }
    .ticket-center { padding: 22px 16px; }
    .ticket-link, .open-costume-btn { flex-basis: 100%; }
    .showtimes-section,
    .families-billing-section,
    .assistance-section,
    .shagun-section,
    .box-office-section { padding-left: 14px; padding-right: 14px; }
    .modal-overlay { padding: 12px; align-items: center; }
    .cinematic-modal { max-height: calc(100svh - 24px); }
    .dress-modal-grid { padding: 20px; }
    .box-office-section::before { display: none; }
    .final-rsvp-actions .cinema-btn-large,
    .final-rsvp-actions .cinema-btn-outline,
    .modal-action-grid .shagun-app-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
