:root {
    --hall-bg: #0a0a0a;
    --gold: #d4af37;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    background-color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    scrollbar-width: none; 
}

body::-webkit-scrollbar { 
    display: none; 
}

.scroll-track {
    height: 2200vh; 
}

/* Scene Containter (Holds the whole scene in one container) */

.scene-container {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    perspective: 800px;
    perspective-origin: 50% 50%;
    background-color: #000;
    z-index: 1;
}

/* Scene 1: Curtains Intro */

.intro-scene {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 40; 
    background: #050505;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    transform-origin: 50% 50%; 
    transform: translateZ(100px); 
    will-change: transform, opacity;
    pointer-events: none; 
    overflow: hidden;
}

.intro-curtain {
    position: absolute;
    background-color: #4a0000;
    background-image: 
    linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0) 20%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.8)),
    repeating-linear-gradient(to right, transparent 0, transparent 3vw, rgba(0,0,0,0.4) 3vw, rgba(0,0,0,0.4) 6vw);
    z-index: 41;
    box-shadow: 0 0 30px rgba(0,0,0,1);
    will-change: transform;
}

.intro-curtain-left { 
    top: 0; 
    left: 0; 
    bottom: 0; 
    width: 50vw; 
    border-right: 3px solid #2a0000; 
}

.intro-curtain-right { 
    top: 0; 
    right: 0; 
    bottom: 0; 
    width: 50vw; 
    border-left: 3px solid #2a0000; 
}

.intro-curtain-top { 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 15vh; 
    z-index: 42; 
    border-bottom: 3px solid #2a0000; 
}

.intro-text-container {
    position: absolute;
    z-index: 45;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    will-change: opacity, transform;
    padding: 30px 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--gold);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.9), 0 0 30px rgba(212, 175, 55, 0.2);
}

.intro-neon-text {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px var(--gold),
    0 0 40px var(--gold);
    margin: 0;
    animation: pulseGold 2s infinite alternate;
}

.intro-sub-text {
    color: #ddd;
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

@keyframes pulseGold {
    0%, 100% { 
        opacity: 1; 
    }
    50% { 
        opacity: 0.85; 
        text-shadow: 0 0 5px #fff, 0 0 15px var(--gold), 0 0 25px var(--gold); 
    }
}

/* Scene 2: Theatre Hallway */

.world {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    transform: translateZ(-50px);
    will-change: transform;
    pointer-events: none; 
}

.hallway {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform-style: preserve-3d;
    pointer-events: none; 
}

.plane {
    position: absolute;
    background-color: var(--hall-bg);
    background-image: 
    linear-gradient(rgba(255,255,255,0.03) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 2px, transparent 2px);
    background-size: 100px 100px;
    pointer-events: none; 
    transform-style: preserve-3d; 
}

.left-wall {
    width: 8000px;
    height: 100vh;
    left: 0; top: 0;
    transform-origin: left;
    transform: rotateY(90deg);
    display: flex;
    align-items: flex-end;
    padding-bottom: 5vh;
    padding-left: 800px; 
    gap: 1200px; 
}

.right-wall {
    width: 8000px;
    height: 100vh;
    right: 0; top: 0;
    transform-origin: right;
    transform: rotateY(-90deg);
    display: flex;
    align-items: flex-end;
    padding-bottom: 5vh;
    padding-right: 1800px; 
    gap: 1200px;
    flex-direction: row-reverse;
}

.floor {
    width: 100vw;
    height: 8000px;
    bottom: 0; left: 0;
    transform-origin: bottom;
    transform: rotateX(90deg);
    background: repeating-linear-gradient(45deg, #1a0000 0, #1a0000 20px, #2a0000 20px, #2a0000 40px);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.9);
}

.ceiling {
    width: 100vw;
    height: 8000px;
    top: 0; left: 0;
    transform-origin: top;
    transform: rotateX(-90deg);
    background: #050505;
}

.door-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 40px; 
    cursor: pointer;
    pointer-events: auto;
    transform: translateZ(5px);
    flex-shrink: 0;
}

.door {
    width: 280px;
    height: 65vh;
    max-height: 550px;
    background: linear-gradient(to right, #111, #1a1a1a, #111);
    border: 10px solid #050505;
    border-bottom: none; 
    box-shadow: 
    inset 0 0 40px rgba(0,0,0,1),
    -15px 15px 30px rgba(0,0,0,0.9),
    0 0 20px rgba(0,0,0,0.6);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.door::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px; right: -12px; bottom: 0;
    border: 4px solid #000;
    border-bottom: none;
    pointer-events: none;
}

.door::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 60px;
    background: linear-gradient(to bottom, #f2c94c, #d4af37, #b58b1f);
    border-radius: 5px;
    box-shadow: 
    3px 3px 8px rgba(0,0,0,0.8), 
    inset 1px 1px 2px rgba(255,255,255,0.4);
    transition: background 0.3s, box-shadow 0.3s;
}

.left-wall .door-container .door::after { 
    right: 20px; 
}

.right-wall .door-container .door::after { 
    left: 20px; 
}

.door-container:hover .door {
    transform: scale(1.03) translateZ(15px);
    box-shadow: 
    0 -10px 40px rgba(212, 175, 55, 0.25),
    inset 0 0 30px rgba(0,0,0,1),
    -20px 20px 40px rgba(0,0,0,0.9);
}

.door-container:hover .door::after {
    background: linear-gradient(to bottom, #fff, #f2c94c);
    box-shadow: 0 0 15px var(--gold);
}

.door-panels {
    position: absolute;
    top: 25px; bottom: 30px;
    left: 25px; right: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    pointer-events: none;
}

.panel {
    flex: 1;
    border: 2px solid #080808;
    background: rgba(255,255,255,0.015);
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.9), 0 1px 1px rgba(255,255,255,0.05);
}

.wall-plate {
    background: linear-gradient(135deg, #111 0%, #050505 100%);
    border: 2px solid #333;
    border-bottom-color: var(--gold);
    padding: 15px 25px;
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.9), inset 0 0 15px rgba(0,0,0,0.8);
    text-align: center;
    position: relative;
    min-width: 220px;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.wall-plate::before {
    content: '';
    position: absolute;
    top: -15px; 
    left: 50%; 
    transform: translateX(-50%);
    width: 30px; 
    height: 6px;
    background: #ffe599; 
    border-radius: 3px;
    box-shadow: 0 5px 25px 10px rgba(212, 175, 55, 0.3);
    transition: box-shadow 0.4s, background 0.4s;
}

.plate-title-wrapper {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px; 
    margin-bottom: 6px;
}

.plate-logo {
    width: 24px; 
    height: 24px; 
    border-radius: 4px; 
    object-fit: cover; 
    border: 1px solid #555;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.door-container:hover .plate-logo { 
    border-color: var(--gold); 
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5); 
}

.wall-plate h3 {
    color: #ddd; 
    font-size: 20px; 
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 2px; 
    margin-bottom: 0; 
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
    transition: color 0.4s, text-shadow 0.4s;
}

.wall-plate p { 
    color: #777; 
    font-size: 11px; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
}

.door-container:hover .wall-plate {
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.9), 0 0 20px rgba(212, 175, 55, 0.15), inset 0 0 15px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.door-container:hover .wall-plate::before { 
    box-shadow: 0 5px 30px 15px rgba(212, 175, 55, 0.6); 
    background: #fff; 
}

.door-container:hover .wall-plate h3 { 
    color: var(--gold); 
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); 
}

.vignette {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.95) 120%);
    z-index: 60; 
    pointer-events: none; 
}

.scroll-prompt {
    position: absolute; 
    bottom: 40px; 
    left: 50%; 
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5); 
    z-index: 100; 
    font-size: 14px;
    letter-spacing: 2px; 
    text-transform: uppercase;
    animation: pulseText 2s infinite; 
    will-change: opacity; 
    pointer-events: none;
    text-align: center; 
    white-space: nowrap;
}

@keyframes pulseText { 
    0%, 100% { 
        opacity: 0.3; 
    } 
    50% { 
        opacity: 1; 
    } 
}
/* Scene 3: Cinema Screen */

.cinema-scene {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    background: #020202; 
    z-index: 2000;
    display: flex; 
    align-items: center; 
    justify-content: center;
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 1s ease;
    perspective: 1200px; 
    overflow: hidden;
}

.cinema-scene.active { 
    opacity: 1; 
    pointer-events: all; 
}

.back-btn {
    position: absolute; 
    bottom: 40px; 
    right: 50px; 
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: #aaa; 
    padding: 12px 24px;
    font-size: 14px; 
    font-weight: bold; 
    letter-spacing: 3px; 
    text-transform: uppercase;
    cursor: pointer; 
    z-index: 50; 
    border-radius: 4px; 
    transition: all 0.3s ease;
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-family: inherit; 
    backdrop-filter: blur(4px);
}

.back-btn:hover {
    color: var(--gold); 
    border-color: var(--gold); 
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); 
    transform: translateX(-5px);
}

.curtain {
    position: absolute; 
    background-color: #4a0000;
    background-image: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0) 20%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.8)),
    repeating-linear-gradient(to right, transparent 0, transparent 3vw, rgba(0,0,0,0.4) 3vw, rgba(0,0,0,0.4) 6vw);
    z-index: 5; 
    box-shadow: 0 0 30px rgba(0,0,0,1); 
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.curtain-left { 
    top: -10vh; 
    left: -5vw; 
    bottom: -10vh; 
    width: 25vw; 
    transform: translateX(-100%); 
    border-right: 3px solid #2a0000; 
}

.curtain-right { 
    top: -10vh; 
    right: -5vw; 
    bottom: -10vh; 
    width: 25vw; 
    transform: translateX(100%); 
    border-left: 3px solid #2a0000; 
}

.curtain-top { 
    top: -5vh; 
    left: -5vw; 
    right: -5vw; 
    height: 15vh; 
    transform: translateY(-100%); 
    z-index: 6; 
    border-bottom: 3px solid #2a0000; 
}

.cinema-scene.active .curtain-left { 
    transform: translateX(0);
}

.cinema-scene.active .curtain-right { 
    transform: translateX(0); 
}

.cinema-scene.active .curtain-top { 
    transform: translateY(0); 
}

.curtain-left::after {
    content: ''; 
    position: absolute; 
    top: 0; 
    right: 0; 
    bottom: 0; 
    width: 10vw;
    background: linear-gradient(to left, rgba(212, 175, 55, 0.15), transparent); 
    pointer-events: none;
}

.curtain-right::after {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    bottom: 0; 
    width: 10vw;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.15), transparent); 
    pointer-events: none;
}

.cinema-seats {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100vw; 
    z-index: 10;
    background-repeat: repeat-x; 
    background-position: bottom;
}

.row-back {
    height: 22vh; 
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M20,100 L20,30 C20,10 80,10 80,30 L80,100 Z" fill="%23050505"/><path d="M5,100 L5,50 C5,40 25,40 25,50 L25,100 Z" fill="%23020202"/><path d="M75,100 L75,50 C75,40 95,40 95,50 L95,100 Z" fill="%23020202"/></svg>');
    background-size: 8vw 100%; 
    filter: drop-shadow(0 -10px 15px rgba(0,0,0,1)) brightness(0.4);
    transform: translateY(100%); 
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.row-front {
    height: 16vh; 
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M15,100 L15,40 C15,20 85,20 85,40 L85,100 Z" fill="%23080808"/><path d="M17,40 C17,22 83,22 83,40" fill="none" stroke="rgba(212,175,55,0.15)" stroke-width="1.5"/><path d="M0,100 L0,60 C0,45 20,45 20,60 L20,100 Z" fill="%23030303"/><path d="M2,60 C2,47 18,47 18,60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/><path d="M80,100 L80,60 C80,45 100,45 100,60 L100,100 Z" fill="%23030303"/><path d="M82,60 C82,47 98,47 98,60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 12vw 100%; 
    filter: drop-shadow(0 -15px 20px rgba(0,0,0,1));
    transform: translateY(100%); 
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.cinema-scene.active .row-back, .cinema-scene.active .row-front { 
    transform: translateY(0); 
}

@keyframes screenFlicker { 
    0%, 100% { 
        opacity: 0.85; 
    } 
    25%, 75% { 
        opacity: 0.95; 
    } 
    50% { 
        opacity: 1; 
    } 
}

.cinema-screen {
    background-color: #080808; 
    border: 2vw solid #020202; 
    border-radius: 4px; 
    color: #fff;
    width: 75vw; 
    height: 42.18vw; 
    max-height: 70vh; 
    max-width: 124.4vh; 
    box-shadow: 0 0 80px 20px rgba(255, 255, 255, 0.03), inset 0 0 20px rgba(0,0,0,0.8), inset 0 0 2px rgba(255,255,255,0.1); 
    transform: translateY(50px) scale(0.9) rotateX(5deg);
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; 
    z-index: 2; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden;
}

.cinema-scene.active .cinema-screen { 
    transform: translateY(-5vh) scale(1) rotateX(0deg); 
}

.cinema-screen::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 3px 3px, 100% 4px; 
    pointer-events: none; 
    z-index: 0; 
    animation: screenFlicker 3s infinite;
}

.screen-content {
    position: relative; 
    z-index: 2; 
    width: 100%; 
    height: 100%; 
    padding: 5% 8%; 
    text-align: center;
    display: flex; 
    flex-direction: column; 
    overflow-y: auto; 
    scrollbar-width: none; 
}

.screen-content::-webkit-scrollbar { 
    display: none; 
}

.screen-content::before, .screen-content::after { 
    content: ''; 
    margin: auto; 
}

#cinemaTitle {
    font-size: clamp(2rem, 4vw, 3.5rem); 
    margin-bottom: 2%; 
    text-transform: uppercase; 
    letter-spacing: 6px;
    color: var(--gold); 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); 
    flex-shrink: 0;
}

#cinemaGenre {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem); 
    color: #999; 
    text-transform: uppercase; 
    letter-spacing: 4px;
    margin-bottom: 5%; 
    display: inline-block; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    padding-bottom: 1.5%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); 
    flex-shrink: 0;
}

#cinemaDesc {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem); 
    line-height: 1.8; 
    color: #ddd; 
    text-align: left;
    max-width: 800px; 
    margin: 0 auto; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

#cinemaDesc ul { 
    padding-left: 20px; 
}

#cinemaDesc li { 
    margin-bottom: 10px; 
    position: relative; 
}

#cinemaDesc li::marker { 
    color: #fff; 
}

/* Scene 4: Carousel */

.carousel-wrapper {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    transform: translateZ(-6000px); 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.carousel-scene {
    width: 100vw; 
    height: 100vh; 
    background: #000;
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    position: relative; 
    opacity: 0.1; 
    transform: scale(0.6); 
    will-change: transform, opacity;
}

.carousel-row { 
    height: 25vh; 
    width: 100vw; 
    overflow: hidden; 
    display: flex; 
}

.carousel-track { 
    display: flex; 
    width: max-content; 
    height: 100%; 
}

.track-ltr { 
    animation: scrollLTR 50s linear infinite; 
}

.track-rtl { 
    animation: scrollRTL 50s linear infinite; 
}

@keyframes scrollRTL { 
    0% { 
        transform: translateX(0); 
    } 
    100% { 
        transform: translateX(-50%); 
    } 
}

@keyframes scrollLTR { 
    0% { 
        transform: translateX(-50%); 
    } 
    100% { 
        transform: translateX(0); 
    } 
}

.carousel-item {
    width: 20vw; 
    height: 100%; 
    object-fit: cover; 
    margin: 0; 
    padding: 0;
    display: block; 
    filter: brightness(0.85);
}

.carousel-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(0, 0, 0, 0.45); 
    z-index: 10; 
    pointer-events: none;
}

.hero-container {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    z-index: 20;
    display: flex; 
    align-items: flex-end; 
    justify-content: center; 
    pointer-events: none;
}

.hero-glow {
    position: absolute; 
    bottom: 5%; 
    left: 50%; 
    transform: translateX(-50%);
    width: 60vw; 
    max-width: 800px; 
    height: 60vh;
    background: radial-gradient(ellipse at center, rgba(30, 80, 160, 0.75) 0%, rgba(0,0,0,0) 65%);
    z-index: 0; 
    pointer-events: none;
}

.hero-image {
    position: relative; 
    height: 75vh; 
    z-index: 1; 
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.9));
}

@keyframes float { 
    0%, 100% { 
        transform: translateY(0); 
    } 
    50% { 
        transform: translateY(-15px); 
    } 
}

.stat-pill {
    position: absolute; 
    background: rgba(15, 25, 40, 0.85); 
    border: 1px solid rgba(60, 120, 220, 0.4);
    color: #fff; 
    padding: 14px 28px; 
    border-radius: 50px; 
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7), inset 0 0 15px rgba(60, 120, 220, 0.15);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    z-index: 2; 
    white-space: nowrap; 
    animation: float 4s ease-in-out infinite;
    pointer-events: auto; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

.stat-pill span { 
    color: var(--gold); 
    font-weight: 900; 
    font-size: 1.3rem; 
    margin-right: 8px; 
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4); 
}

.pill-1 { 
    top: 25%; 
    left: 24%; 
    animation-delay: 0s; 
}

.pill-2 { 
    top: 50%; 
    left: 18%; 
    animation-delay: 1.2s; 
}

.pill-3 { 
    top: 75%; 
    left: 26%; 
    animation-delay: 2.4s; 
}

.pill-4 { 
    top: 30%; 
    right: 24%; 
    animation-delay: 0.6s; 

}

.pill-5 { 
    top: 60%; 
    right: 18%; 
    animation-delay: 1.8s; 
}

/* Scene 5: Contact Overlay */

.contact-blur-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    z-index: 30; 
    opacity: 0; 
    pointer-events: none;
}

.contact-container {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    gap: 40px; 
    z-index: 40; 
    opacity: 0; 
    pointer-events: none;
}

.contact-title {
    color: #fff; 
    font-size: clamp(2rem, 5vw, 4rem); 
    text-transform: uppercase;
    letter-spacing: 10px; 
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6); 
    margin-bottom: 20px;
}

.contact-links {
    display: flex; 
    gap: 25px; 
    flex-wrap: wrap; 
    justify-content: center;
    max-width: 900px; 
    padding: 0 20px;
}

.contact-card {
    background: rgba(15, 25, 40, 0.65); 
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 20px 35px; 
    border-radius: 12px; 
    text-decoration: none; 
    color: #fff;
    display: flex; 
    align-items: center; 
    gap: 15px; 
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    backdrop-filter: blur(5px);
}

.contact-card:hover {
    background: rgba(212, 175, 55, 0.15); 
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.3);
}

.contact-icon { 
    display: flex; 
    align-items: center; 
    color: var(--gold); 
}

.contact-text { 
    font-size: 1.1rem; 
    letter-spacing: 2px; 
    font-weight: 600; 
    white-space: nowrap; 
}

/* =========================================
   MOBILE RESPONSIVENESS & ROTATE PROMPT
   ========================================= */

#rotate-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050505;
    color: var(--gold);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    line-height: 1.6;
}

.rotate-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: rotateDevice 1.5s ease-in-out infinite alternate;
}

@keyframes rotateDevice {
    0% { 
        transform: rotate(-10deg); 
    }
    100% { 
        transform: rotate(90deg); 
    }
}

/* PORTRAIT MODE (Phones & Tablets) - Force Landscape */
@media screen and (max-width: 900px) and (orientation: portrait) {
    #rotate-message {
        display: flex;
    }
    .scroll-track, .cinema-scene {
        display: none !important;
    }
}

/* LANDSCAPE MODE (Phones) - Minor scaling adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .door {
        height: 60vh;
    }

    .wall-plate {
        min-width: 180px;
        padding: 10px 15px;
    }

    .wall-plate h3 {
        font-size: 16px;
    }

    .intro-neon-text {
        font-size: 3rem;
    }

    .cinema-screen {
        width: 85vw;
        height: 47.8vw;
    }

    #cinemaTitle {
        font-size: 1.5rem;
    }

    #cinemaDesc {
        font-size: 0.85rem;
    }
}