.gf-vr-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gf-vr-popup-overlay.gf-vr-popup-visible {
    opacity: 1;
}

.gf-vr-popup-modal {
    background: #fff;
    border-radius: 6px;
    padding: 48px 40px 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.gf-vr-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.gf-vr-popup-close:hover {
    color: #000;
}

.gf-vr-popup-message {
    font-family: 'Sabon', serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin: 0 0 28px;
    line-height: 1.5;
}

.gf-vr-popup-cta {
    display: inline-block;
    background: #010101;
    color: #fff;
    font-family: 'Sabon', serif;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: background 0.2s ease;
}

.gf-vr-popup-cta:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
}

.gf-vr-popup-close:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 2px;
    border-radius: 4px;
}

.gf-vr-popup-cta:focus-visible {
    outline: 2px solid #010101;
    outline-offset: 4px;
}

@media (max-width: 480px) {
    .gf-vr-popup-modal {
        padding: 40px 24px 32px;
        width: 92%;
    }

    .gf-vr-popup-message {
        font-size: 16px;
    }

    .gf-vr-popup-cta {
        padding: 12px 28px;
        font-size: 15px;
    }
}
