/* Blur overlay class */
body.journey-blurred > * {
    filter: blur(15px) grayscale(100%);
    pointer-events: none;
    user-select: none;
    opacity: 0.1;
}

body.journey-blurred::before {
    content: "Content Protected - Return to Window";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 40px;
    border-radius: 10px;
    z-index: 999999;
}

/* Disable selection globally */
body {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
