        :root {
            --primary: #ff005c;
            --surface: #121217;
            --card-bg: rgba(255, 255, 255, 0.04);
            --border: rgba(255, 255, 255, 0.1);
            --text-dim: #94a3b8;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

        body {
            background-color: #0a0a0c;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* ================= CINEMATIC BACKGROUND ================= */
        .page-bg {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 20% 30%, #1e1e26 0%, #0a0a0c 100%);
            z-index: -1;
        }

        .ambient-glow {
            position: fixed;
            top: -10%; right: -10%; width: 50%; height: 50%;
            background: radial-gradient(circle, rgba(255, 0, 92, 0.15) 0%, transparent 70%);
            filter: blur(80px);
            z-index: -1;
        }

        /* ================= LAYOUT ================= */
        .booking-wrapper {
            display: grid;
            grid-template-columns: 350px 1fr;
            min-height: 100vh;
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            gap: 60px;
        }

        /* ================= LEFT SIDE: POSTER ================= */
        .movie-sidebar {
            position: sticky;
            top: 40px;
            height: fit-content;
        }

        .poster-card {
            width: 100%;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            border: 1px solid var(--border);
        }

        .poster-card img { width: 100%; display: block; }

        .movie-details-side {
            margin-top: 25px;
        }

        .movie-details-side h1 {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(to right, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stats-row {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            color: var(--text-dim);
            font-size: 14px;
        }

        /* ================= RIGHT SIDE: BOOKING ================= */
        .booking-panel h2 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* DATE STRIP */
        .date-strip {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
        }

        .date-item {
            flex: 1;
            padding: 15px 5px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 18px;
            text-align: center;
            cursor: pointer;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .date-item span { display: block; }
        .date-item .day { font-size: 11px; font-weight: 600; color: var(--text-dim); }
        .date-item .num { font-size: 20px; font-weight: 800; margin-top: 4px; }

        .date-item:hover { border-color: var(--primary); background: rgba(255, 0, 92, 0.05); }
        .date-item.active {
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(255, 0, 92, 0.4);
            transform: translateY(-5px);
        }

        /* THEATRE LIST */
        .theatre-glass-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 25px;
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .theatre-glass-card:hover { border-color: rgba(255,255,255,0.2); }

        .theatre-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .theatre-name { font-size: 18px; font-weight: 700; color: #fff; }
        .theatre-loc { font-size: 13px; color: var(--text-dim); margin-top: 4px; }

        .showtime-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            gap: 12px;
        }

        .slot {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border);
            padding: 14px;
            border-radius: 14px;
            text-align: center;
            cursor: pointer;
            transition: 0.3s;
        }

        .slot .time-val { font-size: 15px; font-weight: 600; display: block; }
        .slot .label { font-size: 10px; text-transform: uppercase; margin-top: 5px; color: #10b981; }

        .slot:hover {
            background: #fff;
            color: #000;
            transform: scale(1.05);
        }

        .slot.orange-alert .label { color: #ff9800; }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 900px) {
            .booking-wrapper { grid-template-columns: 1fr; }
            .movie-sidebar { position: relative; top: 0; max-width: 250px; margin: 0 auto; }
            .movie-details-side { text-align: center; }
            .stats-row { justify-content: center; }
        }
      
      .filter-strip {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        .filter-strip::-webkit-scrollbar { display: none; }

        .filter-pill {
            padding: 10px 20px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            font-size: 13px;
            font-weight: 500;
            color: #fff;
            white-space: nowrap;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-pill:hover { border-color: var(--primary); background: rgba(255, 255, 255, 0.08); }
        .filter-pill i { font-size: 10px; opacity: 0.5; }
      
      /* ================= POPUP DESIGN ================= */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: 0.3s;
}

.seat-popup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 40px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.overlay.active { display: flex; }
.overlay.active .seat-popup { transform: translateY(0); }

.popup-header h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.popup-header p { color: var(--text-dim); font-size: 14px; margin-bottom: 30px; }

.seat-visualizer {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.seat-visualizer img {
    height: 80px;
    filter: drop-shadow(0 10px 20px rgba(255, 0, 92, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.seat-options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 35px;
}

.seat-num {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: #fff;
    padding: 12px 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.seat-num.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 92, 0.4);
}

.confirm-btn {
    width: 100%;
    padding: 16px;
    border-radius: 15px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 0, 92, 0.3);
}

.close-popup {
    background: transparent;
    border: none;
    color: var(--text-dim);
    margin-top: 20px;
    cursor: pointer;
    font-size: 13px;
}
      #svgContainer svg {
    filter: drop-shadow(0 15px 15px rgba(255, 0, 92, 0.4));
    animation: floating 3s ease-in-out infinite;
    transition: transform 0.2s ease;
}

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

/* ================= AMBIENT BG ================= */
.ambient-glow {
    position: fixed;
    top: -10%; right: -10%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(255, 0, 92, 0.08) 0%, transparent 70%);
    z-index: -1;
}

/* ================= HERO SLIDER ================= */
.movie-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.movie-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.movie-slide.active { 
    opacity: 1; 
    transform: scale(1);
}

.movie-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 5%, transparent 60%),
                linear-gradient(to right, rgba(10,10,12,0.8), transparent);
}

.movie-hero-content {
    position: absolute;
    left: 8%;
    bottom: 15%;
    max-width: 600px;
}

.hero-glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.movie-hero-content h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.movie-hero-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 0, 92, 0.3);
    transition: 0.3s;
}

.movie-hero-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 0, 92, 0.5); }

/* ================= MOVIE SECTIONS ================= */
.movie-section {
    padding: 60px 8%;
}

.movie-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.movie-section h2::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: var(--glass-border);
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.movie-card {
    background: var(--card-bg);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.movie-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.movie-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: 0.5s;
}

.movie-info {
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.movie-info h4 { font-size: 18px; font-weight: 700; }
.movie-info p { font-size: 14px; color: var(--text-dim); margin-top: 5px; }

/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 100px 8%;
    background: radial-gradient(circle at center, #16161d 0%, var(--bg-dark) 100%);
}

.faq-box { max-width: 800px; margin: auto; }

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 15px;
}

.faq-question {
    padding: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    color: var(--text-dim);
    padding: 0 25px;
}

.faq-item.active .faq-answer { padding-bottom: 25px; max-height: 200px; }

@media(max-width: 768px) {
    .movie-hero-content { left: 5%; bottom: 10%; width: 90%; }
    .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}


/* ================= HERO ================= */
.play-hero {
        position: relative;
        width: 100%;
        min-height: 100vh; /* Changed from just height to min-height */
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;

        /* Add your photo here! */
        background-image: url('../images/hero.jpg'); /* REPLACE 'hero-bg.jpg' WITH YOUR PHOTO'S PATH */
        
        /* Ensures the photo covers the entire section and is centered */
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Important: Adds a subtle dark overlay to make text more readable */
    .play-hero::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5); /* 50% dark overlay */
        z-index: 1; /* Puts it above the image but below content */
    }

    .play-hero-content {
        position: relative; /* Brings it in front of the overlay */
        z-index: 2; 
        max-width: 900px;
        text-align: center;
        padding: 40px;
        color: #fff;
    }

    .play-hero-content h1 {
        font-size: 60px;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }

    .play-hero-content p {
        font-size: 18px;
        color: #fff; /* Ensure it's explicitly white for high contrast */
        max-width: 600px;
        margin: 20px auto 35px; /* Center-aligns on the page */
        opacity: 0.9;
    }

    .hero-btn {
        display: inline-block;
        background: var(--primary);
        color: #fff;
        text-decoration: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 16px;
        transition: transform 0.2s, opacity 0.2s;
    }

    .hero-btn:hover { opacity: 0.9; transform: translateY(-3px); }
/* ================= PLAY SECTION ================= */
.play-section {
    padding: 80px 8%;
}

.play-section h2 {
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-section h2::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: var(--glass-border);
}

.play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.play-card {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: 0.4s;
}

.play-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.play-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.play-info {
    padding: 18px;
}

.play-info h4 {
    font-size: 18px;
    font-weight: 700;
}

.play-info p {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 5px;
}

/* Reuse same movie styling */
.booking-wrapper{
    display:grid;
    grid-template-columns:350px 1fr;
    max-width:1400px;
    margin:auto;
    padding:40px 20px;
    gap:60px;
}

.poster-card img{
    width:100%;
    border-radius:25px;
}

.stats-row{
    display:flex;
    gap:15px;
    color:#94a3b8;
    font-size:14px;
    margin-top:10px;
}

.theatre-glass-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:24px;
    padding:25px;
    margin-bottom:20px;
}

.slot{
    background:rgba(255,255,255,0.05);
    padding:12px 20px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
    border:1px solid rgba(255,255,255,0.1);
}

.slot:hover{
    background:#fff;
    color:#000;
}