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

body, html {
    width: 100%;
    height: 100%;
    background-color: #000000;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
}

#logoVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces the video to cover the screen entirely, leaving no black borders */
    z-index: 10;
}

.enter-btn {
    position: absolute;
    bottom: 8vh; /* Approximate vertical position of the video's button */
    left: 50%;
    transform: translateX(-50%);
    width: clamp(200px, 40vw, 400px); /* Responsive width spanning the visual button */
    height: 15vh; /* Enough height to comfortably cover the visual button */
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 30;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.enter-btn.hidden {
    display: none;
}