.landing-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 99999;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.landing-page-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.landing-content {
    position: relative;
    width: 100%;
    max-width: 1928px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

#landing-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.landing-top-left {
    padding-top: 31px;
    padding-left: 45px;
    max-width: 800px;
    pointer-events: none;
}

.landing-bottom-right {
    align-self: flex-end;
    padding-right: 61px;
    padding-bottom: 39px;
    pointer-events: none;
}

.landing-title {
    font-family: 'MNKY Banana Grotesk', sans-serif;
    font-weight: 500;
    font-size: 90px;
    line-height: 109px;
    letter-spacing: -0.03em;
    margin: 0;
    text-transform: none;
    pointer-events: none;
}

.landing-subtitle {
    font-family: 'MNKY Banana Grotesk', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 37px;
    letter-spacing: -0.01em;
    margin-top: 35px;
    max-width: 650px;
    pointer-events: none;
}

.landing-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

.landing-close:hover {
    opacity: 1;
}

/* Hide on mobile via CSS as well just in case for resizing */
@media (max-width: 768px) {
    .landing-page-overlay {
        display: none !important;
    }
}

/* Ensure content is centered if the screen is larger than max-width */
@media (min-width: 1928px) {
    .landing-content {
        padding-left: 0;
        padding-right: 0;
    }
}
