#stage {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url('darkcurtain.png') no-repeat center;
    background-size: cover;
}

#leftcurtain, #rightcurtain {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    background: url('frontcurtain.png') repeat-y;
    z-index: 2;
}

#leftcurtain {
    left: 0;
}

#rightcurtain {
    right: 0;
}

#stage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#ticker {
    position: absolute;
    top: 5%;
    left: 100%;
    transform: translateX(0);
    white-space: nowrap;
    font-size: 5vw;
    color: white;
    z-index: 1;
    animation: tickerAnimation 3s linear forwards;
    display: none;
}

@keyframes tickerAnimation {
    0% { left: 100%; transform: translateX(0); }
    100% { left: 50%; transform: translateX(-50%); }
}

#pushTheButton2 {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 20vw;
    max-width: 150px;
    z-index: 3;
    cursor: pointer;
}

.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
}

.white {
    display: none;
    position: absolute;
    top: 10%;
    left: 5%;
    width: 90%;
    height: auto;
    padding: 16px;
    border: 0 solid #801209;
    background-color: transparent;
    z-index: 1002;
    overflow: hidden;
}

.white iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
}

.white img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #ticker {
        font-size: 8vw;
    }

    #pushTheButton2 {
        width: 30vw;
        max-width: 120px;
    }
}