/* Video tam ekran ortalama düzeltmesi - Desktop */
@media only screen and (min-width: 757px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    #wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }

    .content-holder {
        margin: 0 !important;
        padding: 0 !important;
    }

    .content.full-height {
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .bg-holder {
        margin: 0 !important;
        padding: 0 !important;
    }

    .media-container {
        margin: 0 !important;
        padding: 0 !important;
    }

    .video-holder {
        margin: 0 !important;
        padding: 0 !important;
    }

    .video-holder video {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        object-fit: cover !important;
        object-position: center center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Mobil görünüm için özel ayarlar */
@media only screen and (max-width: 756px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    .bg-holder {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .bg-holder:before {
        height: 80px !important;
    }

    .bg-holder:after {
        height: 80px !important;
    }

    .media-container {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .video-holder {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100vw !important;
        height: 100vh !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .video-holder video {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        max-width: 100% !important;
        max-height: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: center center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

