body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #ffffff; /* Default text color for body */
    /* Ensure body takes full viewport height */
    min-height: 100vh; /* Use vh for viewport height */
    display: flex; /* Keep flex for overall page structure, but ensure it doesn't hinder background */
    flex-direction: column;
    position: relative; /* Essential for positioning the background video */
    overflow-x: hidden; /* Prevent horizontal scrollbar if video overflows */
}
