body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #000; /* Fallback if video fails, but should not hide video */
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Ensure video is on a low positive layer */
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-soon-container {
    position: relative; /* Needed for z-index to work correctly against fixed video-background */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    z-index: 2; /* Ensure text is above the video */
}

.coming-soon-container h1 {
    font-size: 4em; /* Adjust size as needed */
    color: #ffffff;
    font-weight: bold; /* Changed to bold */
    /* Removed background-color, padding, and border-radius */
}

