/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
}

/* Video Background */
.video-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Dark Translucent Overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Center Content */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@supports (height: 100dvh)
{
body, .content{height: 100dvh;}
}

/* Logo */
.logo {
    max-width: 400px;
    width: 60vw;
    height: auto;
	opacity:0.95;
}