/* Override for airplane video to cover entire window */
.page-module__E0kJGG__video {
    /* Position to cover entire window including left side - shifted left */
    position: absolute !important;
    top: 50% !important;
    left: 30% !important;
    transform: translate(-50%, -50%) !important;

    /* Cover the entire window scene with proper scaling */
    width: 110% !important;
    height: 110% !important;
    min-width: 110% !important;
    min-height: 110% !important;
    object-fit: cover !important;

    /* Remove mask */
    -webkit-mask-image: none !important;
    mask-image: none !important;

    /* Remove blur and adjust visibility - use normal blend mode */
    filter: none !important;
    --opacity: 0.3 !important;
    mix-blend-mode: normal !important;
    opacity: 0.3 !important;
}

/* Also remove blur from window frame if any */
.page-module__E0kJGG__windowFrame {
    filter: none !important;
}

/* Apply same font to info text */
.page-module__E0kJGG__infoContainer p {
    font-family: Departure Mono, monospace !important;
}

/* Glassmorphism button */
.remind-me-btn {
    margin-top: 15px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: Departure Mono, monospace;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    pointer-events: all !important;
}

.remind-me-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
