/* Vollflächiges Video als Hintergrund */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

/* Overlay mit Gradient */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to top, rgba(18, 20, 23, 0.8) 20%, rgba(18, 20, 23, 0.4) 80%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
}

/* Body Grundstyles */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #e4e6eb;
    background: transparent;
    overflow-x: hidden;
}
