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

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Prevent scroll */
    background-color: #000000;
}

body {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* Ensure the wrapper fits reasonably */
}

.bg-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through if needed, though no interaction is planned */
    background: linear-gradient(to bottom, #000000 0%, transparent 20%, transparent 80%, #000000 100%);
    /* Adjust percentages to control how much black covers the top/bottom. 
       User wants it to "terminate in black", so 0% and 100% are black.
       Fade area is subjective, starting with 20% fade.
    */
}