/* Reset and layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: white;
    background-color: #000; /* Fallback color */
}

/* Container spans the full viewport */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -100; /* Pushes it behind content */
    overflow: hidden;
}

/* The actual iframe generated by YouTube */
.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio (9 / 16 = 0.5625) */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio (16 / 9 = 1.7777) */
    transform: translate(-50%, -50%); /* Centers the video */
    pointer-events: none; /* Prevents clicks on the iframe */
}

/* Overlay blocks interactions and can tint the video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darkens video for text readability */
    z-index: 1;
}

/* Style your foreground content */
.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: left;
}