:root {
    --white: #fff;
    --pad: clamp(12px, 2vw, 24px);
}

* {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    cursor: none !important;
}

html, body {
    height: 100%;
    margin: 0;
    overflow: auto; /* Allow scrolling for long text */
}

body {
    color: var(--white);
    font-family: Arial, sans-serif; /* Use Arial font */
    background: #000;
    scrollbar-color: var(--white) black;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .55) 65%, rgba(0, 0, 0, .9));
    pointer-events: none;
}

.stage {
    position: relative;
    min-height: 100vh;
    padding: var(--pad);
}

.logo {
    position: absolute;
    top: clamp(10px, 2vw, 24px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 1; /* Always visible */
}

.logo img {
    max-width: clamp(200px, 30vw, 420px);
    height: auto;
    filter: drop-shadow(0 0 24px rgba(255, 255, 255, 1)) brightness(1.2);
}

.policy-text {
    position: relative;
    max-width: 80%;
    margin: clamp(100px, 20vw, 200px) auto 20px; /* Space below logo, centered */
    font-size: clamp(12px, 1.5vw, 14px); /* Small text */
    color: var(--white);
    z-index: 10;
    text-align: left;
    line-height: 1.4; /* Improve readability */
}

.policy-text h1 {
    font-size: clamp(16px, 2vw, 18px); /* Slightly larger for heading */
    margin: 20px 0 10px;
    font-weight: bold;
}

.policy-text p {
    margin: 10px 0;
    padding: 0;
}

/* CROSSHAIR */
.crosshair {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.crosshair.shown {
    opacity: 1;
}

.crosshair-line {
    position: absolute;
    background: var(--white);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.crosshair-horizontal-top, .crosshair-horizontal-bottom {
    width: 100%;
    height: 2px;
}

.crosshair-vertical-left, .crosshair-vertical-right {
    height: 100%;
    width: 2px;
}

@media (max-width: 520px) {
    .logo {
        left: 50%;
        transform: translateX(-50%);
    }

    .policy-text {
        max-width: 90%;
        font-size: clamp(10px, 1.3vw, 12px);
    }

    .policy-text h1 {
        font-size: clamp(14px, 1.8vw, 16px);
    }

    .crosshair {
        display: none;
    }

    .crosshair.shown {
        display: none;
    }
}