.theater-video-section {
    padding: 60px 0 40px;
    background: linear-gradient(180deg,
        #E0FAFF 0%,
        #E8FAFF 20%,
        #F0FCFF 50%,
        #F8FEFF 80%,
        #E8FAFF 100%
    );
    overflow-x: hidden;
    max-width: 100vw;
}

.theater-video-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.theater-video-section .section-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.theater-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 3 / 2;
    margin: 0 auto;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
}

.theater-stage {
    position: absolute;
    top: 13%;
    left: 9%;
    right: 9%;
    bottom: 10%;
    z-index: 1;
    background: transparent;
    border-radius: var(--radius-xl, 16px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theater-stage video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    pointer-events: auto;
    background: #000;
    border-radius: var(--radius-xl, 16px);
}

.theater-curtains {
    position: absolute;
    inset: 0;
    background-image: url('/images/home/curtains.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
    border-radius: var(--radius-xl, 16px);
    transform: scale(0.9);
}

@media (max-width: 1200px) {
    .theater-container {
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .theater-video-section {
        padding: 50px 0 35px;
    }

    .theater-video-section .container {
        padding: 0 24px;
    }

    .theater-container {
        max-width: 700px;
    }

    .theater-video-section .section-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .theater-video-section {
        padding: 40px 0 30px;
    }

    .theater-video-section .container {
        padding: 0 20px;
    }

    .theater-container {
        width: calc(100vw - 40px);
        max-width: none;
    }

    .theater-stage {
        top: 14%;
        left: 10%;
        right: 10%;
        bottom: 11%;
    }

    .theater-video-section .section-header {
        margin-bottom: 24px;
    }

    .theater-video-section .section-header .section-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .theater-video-section .section-header .section-title {
        font-size: 1.5rem;
    }

    .theater-video-section .section-header .section-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .theater-video-section {
        padding: 32px 0 24px;
    }

    .theater-video-section .container {
        padding: 0 16px;
    }

    .theater-container {
        width: calc(100vw - 32px);
        aspect-ratio: 4 / 3;
    }

    .theater-stage {
        top: 11%;
        left: 8%;
        right: 8%;
        bottom: 9%;
    }

    .theater-video-section .section-header {
        margin-bottom: 20px;
    }

    .theater-video-section .section-header .section-title {
        font-size: 1.25rem;
    }

    .theater-video-section .section-header .section-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

@media (max-width: 400px) {
    .theater-video-section {
        padding: 24px 0 20px;
    }

    .theater-video-section .container {
        padding: 0 12px;
    }

    .theater-container {
        width: calc(100vw - 24px);
    }

    .theater-stage {
        top: 12%;
        left: 9%;
        right: 9%;
        bottom: 10%;
    }
}
