/* Optimiertes Video-Hintergrund System */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -200;
    object-fit: cover;
    background: #000;
}

/* Für bessere Performance auf Mobilgeräten */
@media (max-width: 767px) {
    #myVideo {
        display: none;
    }

    /* Fallback-Hintergrundbild für Mobile */
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        z-index: -200;
    }
}

/* Für Tablets */
@media (min-width: 768px) and (max-width: 991px) {
    #myVideo {
        object-position: center center;
    }
}

/* Für große Bildschirme */
@media (min-width: 1920px) {
    #myVideo {
        width: 100%;
        height: auto;
    }
}