:root {
    --primary-brown: #44362d;
    --bg-dark: #1a1a1b;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

#launch-screen {
    z-index: 10;
}

#launchBtn {
    padding: 20px 40px;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    transition: 0.5s;
}

#launchBtn:hover {
    background: white;
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

#video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden { display: none !important; }

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen like a movie */
}