body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('images/bg.jpg'); /* Arka plan resmi */
    background-size: cover;
    background-position: center;
    position: relative; /* Mutlak konumlandırma için */
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit; /* Arka plan resmini miras al */
    filter: blur(8px); /* %80 bulanıklık */
    z-index: -1; /* Arka planın önünde olması için */
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Beyaz yarı şeffaf bir arka plan */
    padding: 20px;
    border-radius: 10px; /* Yuvarlatılmış köşeler */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
        max-width: 100%; /* Container'ı ekran boyutuna uygun hale getir */
    box-sizing: border-box; /* Padding hesabı */
}

.logo {
    margin-bottom: 20px;
}

.language-select select {
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}

.video-container {
    margin-top: 20px;
}
.logo {
    max-width: 40%; /* Container genişliğine sığacak şekilde ayarla */
    height: auto; /* Yüksekliği otomatik ayarla */
}

h1 {
    font-size: 16px; /* Başlık boyutunu küçült */
}

/* Önceki stiller */
body {
    overflow: hidden; /* Ekran taşmalarını önle */
}


.video-container {
    max-width: 100%; /* Video container'ı ekran boyutuna uygun hale getir */
    overflow: hidden; /* Gerektiğinde kaydırma çubuklarını kaldır */
}

.video-container video {
    width: 100%; /* Videoyu container genişliğine sığdır */
    height: auto; /* Yüksekliği otomatik ayarla */
}
/* Diğer stiller */