.overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-background, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.overlay-video {
    position: absolute;
    top: 20%;
    z-index: 10000;
}

.overlay-video img,
.overlay-video video {
    width: 500px;
    height: auto;
}
.overlay-text1 {
    position: absolute;
    text-align: center;
    font-family: var(--font-primary, 'Rethink Sans', sans-serif);
    font-size: var(--font-size-medium, 20px);
    padding: 40px;
    top:16%;
    max-width: 600px;
    z-index: 10001;
}
.overlay-text {
    position: absolute;
    text-align: center;
    font-family: var(--font-primary, 'Rethink Sans', sans-serif);
    font-size: var(--font-size-medium, 20px);
    padding: 40px;
    top:56%;
    max-width: 600px;
    z-index: 10001;
    line-height: 1.5;
}

.site-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-background, #ffffff);
    opacity: 0.95;
    pointer-events: none;
    z-index: 1;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .overlay-video {
        top: 20%;
    }

    .overlay-video img,
    .overlay-video video {
        width: 80vw;
        max-width: 350px;
    }

    .overlay-text1 {
        top: 10%;
        font-size: var(--font-size-base, 18px);
        padding: 20px;
        max-width: 90vw;
    }

    .overlay-text {
        top: 65%;
        font-size: var(--font-size-base, 18px);
        padding: 20px;
        max-width: 90vw;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .overlay-video {
        top: 22%;
    }

    .overlay-video img,
    .overlay-video video {
        width: 85vw;
        max-width: 300px;
    }

    .overlay-text1 {
        top: 8%;
        font-size: 16px;
        padding: 15px;
    }

    .overlay-text {
        top: 68%;
        font-size: 16px;
        padding: 15px;
        line-height: 1.4;
    }
}
