* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Jura';
    src: url('Jura-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

body {
    overflow: hidden;
    background: #000;
    font-family: Arial, sans-serif;
}


#video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

video {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
}

video.active {
    opacity: 1;
}

#button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.invisible-button {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 11;
}


#password-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* No background overlay - completely transparent */
    z-index: 20;
    color: white;
}

#password-overlay.hidden {
    display: none;
}

#password-input, .password-input {
    /* Completely invisible - no background, border, or outline */
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin-top: -3px; /* Raise text up by 3 pixels */
    font-family: 'Jura', Arial, sans-serif; /* Use Jura font */
    font-size: 27px; /* 75% of 36px */
    font-weight: 600; /* Semibold weight */
    display: block;
    color: #0066cc; /* Darker blue for better Chrome compatibility */
    text-align: center; /* Center the text */
    text-transform: uppercase; /* Force all caps */
    /* Holographic glow effect - reduced intensity for better Chrome compatibility */
    text-shadow:
        0 0 3px rgba(0, 102, 204, 0.6),
        0 0 6px rgba(0, 102, 204, 0.4),
        0 0 9px rgba(0, 102, 204, 0.2);
    /* Position will be set by JavaScript using video mapping */
    position: fixed;
    z-index: 21;
}

#password-submit {
    /* Completely invisible - no background, border, text, or outline */
    background: transparent;
    border: none;
    outline: none;
    color: transparent;
    cursor: pointer;
    /* Position will be set by JavaScript */
    position: fixed;
    z-index: 21;
}

#password-submit:hover {
    /* No hover effect for invisible button */
}

#password-message {
    /* Same invisible styling as password input */
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
    font-family: 'Jura', Arial, sans-serif; /* Use Jura font */
    font-size: 27px; /* 75% of 36px */
    font-weight: 600; /* Semibold weight */
    color: #ff6b6b;
    position: fixed; /* Position absolutely like input field */
    display: flex; /* Use flexbox for responsive vertical centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    visibility: hidden; /* Hidden by default instead of display: none */
}

