/* ============================
   DESIGN 02: CINEMATIC & BLACK-TIE
   Full-screen Snap Scrolling, Dark Luxury
============================ */

:root {
    --bg-color: #0d0f0e; /* Deep dark almost black */
    --text-color: #ffffff; /* White */
    --accent-color: #D68C72; /* Terracotta / Copper */
    --accent-light: #f7e3d8; /* Very light champagne */
    --font-heading: 'Playfair Display', serif;
    --font-script: 'Pinyon Script', cursive;
    --font-body: 'Jost', sans-serif;
}

/* ============================
   RESET & SNAP SCROLLING
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow: hidden; /* Hide normal scrollbars */
}

/* ==========================================================================
   CINEMATIC SHUTTER OPENING EFFECT (Design 02 Unique)
   ========================================================================== */
#cine-intro {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: #08090A;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.9s ease;
}

#cine-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cine-shutter-frame {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cine-shutter {
    position: absolute;
    left: 0; width: 100%;
    height: 50.5%;
    background: #0D0E10;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(30, 32, 36, 0.6) 0%, rgba(10, 11, 13, 0.95) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    z-index: 2;
    transition: transform 1.4s cubic-bezier(0.7, 0, 0.2, 1);
}

.cine-shutter-top {
    top: 0;
    border-bottom: 1px solid rgba(214, 140, 114, 0.35);
}

.cine-shutter-bottom {
    bottom: 0;
    border-top: 1px solid rgba(214, 140, 114, 0.35);
}

#cine-intro.opened .cine-shutter-top {
    transform: translateY(-100%);
}

#cine-intro.opened .cine-shutter-bottom {
    transform: translateY(100%);
}

/* Golden Anamorphic Flare */
.cine-light-flare {
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(214, 140, 114, 0.9) 50%, transparent 100%);
    box-shadow: 0 0 25px 8px rgba(214, 140, 114, 0.6);
    transform: translateY(-50%) scaleX(0);
    opacity: 0;
    z-index: 5;
    transition: transform 0.8s ease-out, opacity 0.5s ease;
}

#cine-intro.opened .cine-light-flare {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
}

.cine-center-badge {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem;
    max-width: 90vw;
    transition: transform 0.7s ease, opacity 0.6s ease;
}

#cine-intro.opened .cine-center-badge {
    transform: scale(1.1);
    opacity: 0;
}

.cine-premiere-pill {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 5px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cine-emblem-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid rgba(214, 140, 114, 0.4);
    box-shadow: 0 0 30px rgba(214, 140, 114, 0.15), inset 0 0 20px rgba(214, 140, 114, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    background: rgba(18, 20, 24, 0.6);
    backdrop-filter: blur(8px);
}

.cine-monogram {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #FFF;
}

.cine-intro-titles {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cine-intro-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.cine-intro-date {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #FFF;
    font-weight: 300;
}

.cine-pulse-prompt {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    animation: cine-fade-pulse 2.2s infinite ease-in-out;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
}

@keyframes cine-fade-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* The magic of snap scrolling */
.snap-container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* Hide scrollbar for a cleaner look (optional, but good for cinematic) */
.snap-container::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* ============================
   BACKGROUNDS & OVERLAYS
============================ */
.cine-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.snap-section.is-visible .cine-bg {
    transform: scale(1.05);
}

.cine-bg.solid-dark {
    background-color: var(--bg-color);
}

.cine-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 2;
    /* Gradient from dark to slightly less dark */
    background: linear-gradient(to bottom, rgba(13, 15, 14, 0.4), rgba(13, 15, 14, 0.9));
}

.cine-overlay.dark {
    background: rgba(13, 15, 14, 0.7);
}

.cine-overlay.darkest {
    background: rgba(13, 15, 14, 0.85);
}

/* ============================
   CONTENT & ANIMATIONS
============================ */
.cine-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
}

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

/* Reveal logic (Base & Modifiers) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Modifiers */
.reveal.blur-fx {
    transform: scale(1.05) translateY(10px);
    filter: blur(10px);
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 1.5s cubic-bezier(0.25, 1, 0.5, 1),
                transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.blur-fx.active {
    filter: blur(0);
    transform: scale(1) translateY(0);
}

.reveal.clip-fx {
    transform: translateY(60px);
    filter: blur(20px);
    transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.clip-fx.active {
    transform: translateY(0);
    filter: blur(0);
}

.reveal.scale-fx {
    transform: scale(0.85);
}
.reveal.scale-fx.active {
    transform: scale(1);
}

.reveal.slide-left-fx {
    transform: translateX(-40px);
}
.reveal.slide-left-fx.active {
    transform: translateX(0);
}

.reveal.slide-right-fx {
    transform: translateX(40px);
}
.reveal.slide-right-fx.active {
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================
   SECTION 1: HERO
============================ */
.cine-subtitle {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cine-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 8rem);
    line-height: 0.9;
    font-weight: 400;
    margin-bottom: 2rem;
}

.cine-title .name {
    display: block;
}

@media (min-width: 768px) {
    .cine-title .name {
        display: inline-block;
    }
}

.cine-title .amp {
    font-family: var(--font-script);
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--accent-color);
    display: block;
    margin: -1rem 0;
    font-weight: 400;
}

@media (min-width: 768px) {
    .cine-title .amp {
        display: inline-block;
        margin: 0 1rem;
    }
}

.cine-date {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
    z-index: 5;
}

.scroll-indicator.reveal {
    transform: translateX(-50%) translateY(30px);
}

.scroll-indicator.reveal.active {
    transform: translateX(-50%) translateY(0);
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background-color: var(--text-color);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.cine-music-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.cine-music-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* ============================
   TYPOGRAPHY & COMPONENTS
============================ */
.cine-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 3rem;
}

.cine-heading.left {
    text-align: left;
}

.cine-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--accent-color);
    transition: all 0.4s ease;
    cursor: pointer;
}

.cine-btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.cine-btn.outline {
    background-color: transparent;
    color: var(--text-color);
    border-color: rgba(255,255,255,0.3);
}

.cine-btn.outline:hover {
    border-color: var(--text-color);
}

/* ============================
   SECTION 2: DATE & COUNTDOWN
============================ */
.cine-massive-date {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 4rem;
}

.cine-massive-date .year {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    letter-spacing: 15px;
    color: var(--accent-light);
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-style: normal;
}

.cine-countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.c-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-item span:first-child {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
}

.c-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.6;
}

.cine-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================
   SECTION 3: STORY
============================ */
.cine-content.split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .cine-content.split {
        flex-direction: row;
        gap: 4rem;
    }
}

.split-text {
    flex: 1;
    text-align: left;
}

.cine-para {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

.split-image {
    flex: 1;
    width: 100%;
}

.cine-portrait {
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    border-radius: 200px 200px 0 0;
}

@media (min-width: 768px) {
    .cine-portrait {
        height: 60vh;
    }
}

/* ============================
   SECTION 3.5: PROGRAM
============================ */
.cine-program-list {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 0;
}

.tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tl-item:last-child {
    border-bottom: none;
}

.tl-time {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.tl-event h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #fff;
}

.tl-event p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-family: var(--font-body);
}

/* ============================
   SECTION 4: VENUE GRID
============================ */
.cine-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cine-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-card {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(13, 15, 14, 0.4);
    backdrop-filter: blur(10px);
}

.grid-card h3 {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
    font-weight: 400;
}

.grid-card h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.grid-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.cine-link {
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 3px;
    transition: border-color 0.3s;
}

.cine-link:hover {
    border-color: var(--accent-color);
}

/* ============================
   SECTION 5: RSVP FORM
============================ */
.cine-form {
    max-width: 600px;
    margin: 0 auto;
}

.input-row {
    margin-bottom: 1.5rem;
}

.split-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .split-row {
        flex-direction: row;
    }
    .split-row input, .split-row select {
        flex: 1;
    }
}

.cine-form input,
.cine-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.cine-form input::placeholder {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.cine-form select {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    -webkit-appearance: none;
}

.cine-form select:focus,
.cine-form select:valid {
    color: white;
}

.cine-form input:focus,
.cine-form select:focus {
    border-color: var(--accent-color);
}

.cine-btn.wide {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.2rem;
}

.hidden { display: none !important; }

.success-heading {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--accent-light);
    margin: 3rem 0 1rem;
}

/* ============================
   FOOTER
============================ */
.cine-footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.3;
}

/* ============================
   SECTION 6: THANK YOU (LIGHT THEME)
============================ */
#thank-you {
    background-color: #FDFBF7;
    position: relative;
}

.thank-you-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.ty-image-wrapper {
    flex: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
    max-height: 55vh;
}

.ty-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ty-text-wrapper {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #FDFBF7;
    flex-shrink: 0;
}

.ty-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 4rem);
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.ty-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.ty-signature span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.ty-signature h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: normal;
}

.ty-footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #a39585; /* Soft earthy grey/brown that looks premium on light bg */
}

.ty-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.ty-footer a:hover {
    color: var(--accent-color);
}

/* Desktop layout for Thank You section */
@media (min-width: 768px) {
    .thank-you-content {
        flex-direction: row;
        max-width: 1100px;
        margin: 0 auto;
        align-items: center;
        gap: 5rem;
        padding: 0 4rem;
    }
    
    .ty-image-wrapper {
        flex: 1;
        max-height: 70vh;
        border-radius: 4px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    
    .ty-image-wrapper img {
        object-position: center center;
    }
    
    .ty-text-wrapper {
        flex: 1;
        text-align: left;
        padding: 0;
    }
    
    .ty-heading {
        font-size: 4.5rem;
    }
    
    .ty-text {
        margin: 0 0 2.5rem 0;
        font-size: 1rem;
    }
}

/* ===================================================
   VIP MODULES: Language Switch, Seating Chart, Photo Wall
   =================================================== */

.lang-switch-wrapper {
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0.3rem 0.7rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #888;
    padding: 0.2rem 0.4rem;
    transition: color 0.3s ease;
    font-family: inherit;
}

.lang-btn.active {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin: 0 0.1rem;
}

/* Seating Chart Search */
.seating-card-container {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

.seating-search-box {
    position: relative;
    max-width: 480px;
    margin: 0 auto 1.5rem;
}

.seating-search-box input {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 2.8rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    outline: none;
    transition: all 0.3s ease;
}

.seating-search-box input:focus {
    border-color: var(--accent-light, #D4AF37);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.seating-search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

.seating-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.seating-result-item {
    background: rgba(30, 30, 30, 0.85);
    border-radius: 12px;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.seating-guest-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--accent-light, #D4AF37);
    font-family: var(--font-heading, inherit);
}

.seating-table-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-light, #D4AF37);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.seating-notes {
    font-size: 0.85rem;
    color: #aaa;
    font-style: italic;
}

.seating-empty {
    color: #888;
    font-style: italic;
    padding: 1rem;
}

/* ===================================================================
   INTERAKTÍV TEREM ALAPRAJZ (VISUAL FLOOR PLAN - CINEMATIC)
   =================================================================== */
.seating-floorplan-wrapper {
    max-width: 680px;
    margin: 2rem auto 1rem;
    background: rgba(25, 25, 25, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.5);
    position: relative;
}

.floorplan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.floorplan-header h3 {
    font-family: var(--font-heading, inherit);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.floorplan-header p {
    font-size: 0.82rem;
    color: #aaa;
}

.floorplan-stage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.2rem;
    align-items: center;
    justify-items: center;
    padding: 0.5rem 0;
}

.floorplan-head-table {
    grid-column: 1 / -1;
    width: 80%;
    max-width: 320px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.08));
    border: 2px solid var(--accent-light, #D4AF37);
    border-radius: 25px;
    padding: 0.8rem 1.4rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.floorplan-head-table .table-title {
    font-family: var(--font-heading, inherit);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-light, #D4AF37);
}

.floorplan-head-table .table-sub {
    font-size: 0.75rem;
    color: #bbb;
    margin-top: 0.2rem;
}

.floorplan-table {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(35, 35, 35, 0.9);
    border: 2px dashed rgba(212, 175, 55, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.4rem;
}

.floorplan-table:hover {
    transform: scale(1.08);
    border-style: solid;
    border-color: var(--accent-light, #D4AF37);
    background: rgba(50, 50, 50, 0.95);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.floorplan-table .table-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-light, #D4AF37);
    line-height: 1;
}

.floorplan-table .table-name {
    font-size: 0.65rem;
    color: #ccc;
    margin-top: 0.2rem;
    max-width: 75px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floorplan-dance-floor {
    width: 105px;
    height: 90px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.floorplan-dance-floor span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--accent-light, #D4AF37);
    margin-top: 0.3rem;
}

.floorplan-bottom-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    color: #aaa;
}

.floorplan-bottom-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.floorplan-table.highlighted,
.floorplan-head-table.highlighted {
    border-style: solid !important;
    border-color: var(--accent-light, #D4AF37) !important;
    background: var(--accent-light, #D4AF37) !important;
    color: #111 !important;
    transform: scale(1.15) !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 50px rgba(212, 175, 55, 0.4) !important;
    animation: pulseGoldDark 2s infinite !important;
    z-index: 10;
}

.floorplan-table.highlighted .table-num,
.floorplan-table.highlighted .table-name,
.floorplan-head-table.highlighted .table-title,
.floorplan-head-table.highlighted .table-sub {
    color: #111 !important;
    font-weight: 700 !important;
}

@keyframes pulseGoldDark {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.95), 0 0 15px rgba(255, 255, 255, 0.6); }
    100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
}

.floorplan-table.dimmed,
.floorplan-head-table.dimmed {
    opacity: 0.3;
    transform: scale(0.95);
}

/* Canvas Mode & Shapes */
.floorplan-stage.canvas-mode {
    display: block !important;
    position: relative;
    width: 100%;
    height: 440px;
    background-color: #1a1a1a;
    background-image: radial-gradient(rgba(212, 175, 55, 0.18) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    border: 1.5px dashed rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    overflow: hidden;
    margin: 1rem 0;
}

.floorplan-stage-tag {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 700;
    pointer-events: none;
    z-index: 1;
}

.floorplan-stage.canvas-mode .floorplan-head-table {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 220px;
    max-width: 85%;
    padding: 0.6rem 1rem;
    z-index: 2;
    margin: 0;
}

.floorplan-stage.canvas-mode .floorplan-table {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    z-index: 2;
    margin: 0;
}

.floorplan-stage.canvas-mode .floorplan-table.shape-rect {
    width: 125px;
    height: 58px;
    border-radius: 12px;
}

.floorplan-stage.canvas-mode .floorplan-table.shape-rect.rotated {
    width: 58px;
    height: 125px;
}

.floorplan-stage.canvas-mode .floorplan-table.shape-rect .table-name {
    max-width: 110px;
}

.floorplan-stage.canvas-mode .floorplan-table.shape-rect.rotated .table-name {
    max-width: 48px;
}

.floorplan-stage.canvas-mode .floorplan-dance-floor {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 80px;
    z-index: 1;
    margin: 0;
}

.floorplan-stage.canvas-mode .floorplan-table.highlighted,
.floorplan-stage.canvas-mode .floorplan-head-table.highlighted {
    transform: translate(-50%, -50%) scale(1.15) !important;
}

.floorplan-stage.canvas-mode .floorplan-table.dimmed,
.floorplan-stage.canvas-mode .floorplan-head-table.dimmed {
    transform: translate(-50%, -50%) scale(0.95) !important;
}

.floorplan-stage.canvas-mode .floorplan-table:hover {
    transform: translate(-50%, -50%) scale(1.08) !important;
}

.floorplan-stage.canvas-mode .floorplan-head-table:hover {
    transform: translate(-50%, -50%) scale(1.04) !important;
}

@media (max-width: 768px) {
    /* FLOATING CONTROLS */
    .lang-switch-wrapper, .lang-switch-btn {
        top: 10px !important;
        right: 10px !important;
        height: 32px !important;
        padding: 0 8px !important;
        border-radius: 16px !important;
        z-index: 10000 !important;
    }
    .lang-btn {
        font-size: 0.72rem !important;
        padding: 0.1rem 0.3rem !important;
    }
    .cine-music-btn {
        bottom: 12px !important;
        right: 12px !important;
        width: 38px !important;
        height: 38px !important;
        z-index: 1000 !important;
    }

    /* COUNTDOWN: STRICT 1 SINGLE ROW GUARANTEE */
    .cine-countdown {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.35rem !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 1.5rem auto 2.5rem !important;
        padding: 0.8rem 0.3rem !important;
        box-sizing: border-box !important;
    }
    .c-item {
        min-width: 0 !important;
        width: 100% !important;
        padding: 0.4rem 0.1rem !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    .c-item span:first-child {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
        line-height: 1 !important;
        margin-bottom: 0.2rem !important;
    }
    .c-label {
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
    }

    /* FLOORPLAN MOBILE SCALING */
    .floorplan-stage, .floorplan-stage.canvas-mode {
        height: 420px !important;
    }
    .floorplan-head-table, .floorplan-stage.canvas-mode .floorplan-head-table {
        width: 145px !important;
        height: 46px !important;
        padding: 0.2rem 0.4rem !important;
    }
    .floorplan-head-table .table-title, .floorplan-stage.canvas-mode .floorplan-head-table .table-title {
        font-size: 0.8rem !important;
    }
    .floorplan-table, .floorplan-stage.canvas-mode .floorplan-table {
        width: 58px !important;
        height: 58px !important;
    }
    .floorplan-table.shape-rect, .floorplan-stage.canvas-mode .floorplan-table.shape-rect {
        width: 76px !important;
        height: 46px !important;
    }
    .floorplan-table.shape-rect.rotated, .floorplan-stage.canvas-mode .floorplan-table.shape-rect.rotated {
        width: 46px !important;
        height: 76px !important;
    }
    .floorplan-table .table-num, .floorplan-stage.canvas-mode .floorplan-table .table-num {
        font-size: 1rem !important;
    }
    .floorplan-dance-floor, .floorplan-stage.canvas-mode .floorplan-dance-floor {
        width: 95px !important;
        height: 60px !important;
        font-size: 0.7rem !important;
    }

    /* PREVENT IOS SAFARI ZOOM ON INPUT FOCUS */
    input, select, textarea, #seatingSearch, #seatingSearchInput {
        font-size: 16px !important;
    }
}

/* Music & Photo Upload Cards */
.cine-music-card,
.photo-upload-box {
    max-width: 550px;
    margin: 2rem auto 0;
    background: rgba(25, 25, 25, 0.9);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.photo-dropzone {
    border: 2px dashed rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(212, 175, 55, 0.04);
    margin-bottom: 1.5rem;
}

.photo-dropzone:hover, .photo-dropzone.dragover {
    border-color: var(--accent-light, #D4AF37);
    background: rgba(212, 175, 55, 0.08);
    transform: scale(1.01);
}

.photo-dropzone i {
    font-size: 2.8rem;
    color: var(--accent-light, #D4AF37);
    margin-bottom: 0.8rem;
    display: block;
}

.photo-dropzone p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 0.3rem;
}

.photo-dropzone small {
    color: #888;
    font-size: 0.75rem;
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.photo-preview-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.photo-preview-item img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.photo-preview-remove {
    position: absolute;
    top: 2px; right: 2px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px; height: 20px;
    font-size: 12px;
    cursor: pointer;
    line-height: 20px;
    text-align: center;
}

.uploader-input-group {
    margin-bottom: 1.2rem;
}

.uploader-input-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.uploader-input-group input:focus {
    border-color: var(--accent-light, #D4AF37);
}

.photo-status-msg {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.photo-status-msg.success {
    color: #81c784;
}

.photo-status-msg.error {
    color: #e57373;
}

/* ==========================================================================
   HOLLYWOOD PREMIERE CINEMATIC EXTENSIONS (DESIGN 02)
   ========================================================================== */

/* 2.39:1 Letterbox Bars */
.cine-letterbox-bar {
    position: fixed;
    left: 0;
    width: 100%;
    height: clamp(40px, 8vh, 80px);
    background: #000000;
    z-index: 9000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    font-size: 0.68rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
}

.cine-letterbox-bar.bar-top { top: 0; }
.cine-letterbox-bar.bar-bottom { 
    bottom: 0; 
    border-bottom: none; 
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .cine-letterbox-bar {
        padding: 0 1rem;
        font-size: 0.58rem;
        letter-spacing: 1.5px;
        height: 38px;
    }
}

/* Hero Center Content */
.film-billing-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 6px;
    color: var(--accent-light, #D4AF37);
    margin-bottom: 0.8rem;
}

.cine-film-tagline {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 1.2rem 0;
}

.cine-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.meta-dot {
    color: var(--accent-light, #D4AF37);
    font-size: 0.6rem;
}

.cine-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.cine-action-btn {
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cine-action-btn.solid {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cine-action-btn.gold {
    background: linear-gradient(135deg, #B8965B 0%, #D4AF37 100%);
    color: #000000;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.cine-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.hud-music-text {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-left: 0.4rem;
}



.cine-hud-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.hud-cd-cell {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 1.5rem 1.8rem;
    border-radius: 8px;
    min-width: 100px;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.1), 0 10px 30px rgba(0,0,0,0.6);
}

.hud-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1;
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.hud-lbl {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light, #D4AF37);
    margin-top: 0.3rem;
}

.hud-cd-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-light, #D4AF37);
    margin-top: -1rem;
    opacity: 0.6;
}

/* 3-Act Trilogy Story */
.film-scene-tag {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light, #D4AF37);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.trilogy-film-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.trilogy-card {
    background: rgba(18, 20, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 2rem 1.8rem;
    text-align: left;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.trilogy-card:hover, .trilogy-card.active-card {
    border-color: var(--accent-light, #D4AF37);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.card-film-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem;
}

.film-perf-holes {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.6rem;
    letter-spacing: 3px;
}

.act-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light, #D4AF37);
    font-weight: 600;
}

.trilogy-body h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
}

.trilogy-body p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Premiere Marquee Timeline */
.cine-marquee-timeline {
    max-width: 820px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(18, 20, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.6rem 2rem;
    transition: all 0.3s ease;
}

.marquee-item:hover, .marquee-item.highlight {
    border-color: var(--accent-light, #D4AF37);
    background: rgba(24, 26, 32, 0.9);
    transform: translateX(6px);
}

.marquee-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-light, #D4AF37);
    min-width: 80px;
    letter-spacing: 1px;
}

.scene-no {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light, #D4AF37);
    margin-bottom: 0.2rem;
}

.marquee-text h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.marquee-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
    .marquee-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.4rem;
    }
}

/* Golden Ticket VIP Pass */
.golden-ticket-card {
    max-width: 620px;
    margin: 0 auto;
    background: linear-gradient(145deg, #16181C 0%, #0D0E10 100%);
    border: 2px solid var(--accent-light, #D4AF37);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), inset 0 0 20px rgba(212, 175, 55, 0.08);
    position: relative;
}

.ticket-stub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.4);
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
}

.ticket-admit {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--accent-light, #D4AF37);
}

.ticket-barcode {
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.cine-btn.gold-glow {
    background: linear-gradient(135deg, #B8965B 0%, #D4AF37 100%);
    color: #000000;
    font-weight: 600;
    border: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.ticket-confirm-seal {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-light, #D4AF37);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

/* Hollywood Billing Credits Block */
.hollywood-billing-block {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.billing-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 4px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

/* Strict Single-Row Mobile Countdown for Design 02 */
@media (max-width: 768px) {
    .cine-hud-countdown {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.2rem !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 1.5rem auto !important;
    }
    .hud-cd-cell {
        min-width: 0 !important;
        width: 100% !important;
        padding: 0.5rem 0.2rem !important;
        text-align: center !important;
    }
    .hud-num {
        font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
    }
    .hud-lbl {
        font-size: 0.5rem !important;
        letter-spacing: 1px !important;
    }
    .hud-cd-sep {
        display: none !important;
    }
}

/* ==========================================================================
   DESKTOP ENHANCEMENTS (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
    .cine-grid {
        max-width: 1040px;
        margin: 3rem auto 0;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .seating-floorplan-wrapper {
        max-width: 860px;
        margin: 3rem auto 0;
    }
    .golden-ticket-card {
        max-width: 720px;
        margin: 0 auto;
        padding: 4rem 3.5rem;
    }
    .cine-music-card,
    .photo-upload-box {
        max-width: 720px;
        margin: 2.5rem auto 0;
        padding: 3.5rem 3rem;
    }
}

/* ==========================================================================
   POLISH ENHANCEMENTS: FILM GRAIN, CINEMATIC FADE, HUD
   ========================================================================== */

/* Film grain overlay */
.snap-container::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.03;
    background: repeating-conic-gradient(#000 0.0001%, transparent 0.0002%);
    animation: grain 0.5s steps(1) infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-2%, -2%); }
    40% { transform: translate(2%, 2%); }
    50% { transform: translate(-1%, 2%); }
    60% { transform: translate(1%, -2%); }
    70% { transform: translate(-2%, 1%); }
    80% { transform: translate(2%, -1%); }
    90% { transform: translate(0, 1%); }
}

/* Enhanced HUD Elements */
.camera-hud-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-family: monospace;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
}

.rec-dot {
    color: #ff3333;
    font-weight: bold;
    animation: recPulse 1s infinite;
}

@keyframes recPulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 8px red; }
    50% { opacity: 0.3; text-shadow: none; }
}

.fps-tag {
    color: rgba(255, 255, 255, 0.5);
    animation: pulseGoldDark 3s infinite;
}

.timecode-label {
    font-family: monospace;
    letter-spacing: 2px;
    position: relative;
}

.timecode-label::after {
    content: '01:23:45:12';
    margin-left: 10px;
    animation: timecodeUpdate 1s linear infinite;
    color: rgba(255,255,255,0.6);
}

@keyframes timecodeUpdate {
    0% { content: '01:23:45:12'; }
    25% { content: '01:23:45:18'; }
    50% { content: '01:23:46:04'; }
    75% { content: '01:23:46:21'; }
    100% { content: '01:23:47:02'; }
}

/* Scene number typewriter */
.scene-no {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--accent-color);
    animation: typing 2s steps(10, end) forwards, blinkCursor 0.75s step-end infinite;
    max-width: fit-content;
}

@keyframes typing {
    from { max-width: 0; }
    to { max-width: 100%; }
}

@keyframes blinkCursor {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent-color); }
}

/* Cinematic fade-in for section content */
.snap-section.is-visible .cine-content {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
