* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d; /* Dark theme for a cinematic meme experience */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: sans-serif;
    overflow: hidden; /* Prevents annoying scrolling */
}

/* Overlay Screen Styling */
#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* The Button */
#enterBtn {
    padding: 15px 35px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    background-color: #ff4500; 
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#enterBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 69, 0, 0.8);
}

/* Video Wrapper */
.video-container {
    width: 100%;
    max-width: 800px; /* Keeps it from getting comically large on big monitors */
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* Responsive Video */
video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}