/* ========================================
   THEATRE PAGE CSS
   ======================================== */

.theatre-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.theatre-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.theatre-frame-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.theatre-video {
    position: absolute;
    z-index: 5;
    overflow: hidden;
}

.theatre-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.theatre-nav {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 20;
    padding: 8px 15px;
    pointer-events: auto;
}

.theatre-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 8px;
    background: #333;
    border: 2px dashed #fff;
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-pixel);
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.theatre-nav-item:hover {
    background: #555;
}

.theatre-nav-icon {
    width: 20px;
    height: 20px;
}

.theatre-nav-youtube {
    display: flex;
    align-items: center;
    gap: 4px;
}

.theatre-nav-playlist {
    font-family: var(--font-pixel);
    padding: 8px 50px;
    letter-spacing: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .theatre-nav {
        gap: 10px;
        padding: 6px 10px;
    }

    .theatre-nav-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .theatre-nav-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .theatre-nav {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .theatre-nav-item {
        width: 180px;
        justify-content: center;
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}
