/* Varsayılan olarak gizli */
.language-selector,
.language-overlay {
    display: none;
}

.language-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
}

.language-selector {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 1000;
}

/* Geri kalan kodlar aynı... */

/* Dil Seçici Stilleri */
.language-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
}

.language-selector {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 1000;
}

.language-selector h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
}

.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.language-buttons button {
    padding: 15px 40px;
    font-size: 18px;
    border: 2px solid #333;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    min-width: 200px;
}

.language-buttons button:hover {
    background: #333;
    color: white;
}


/* RTL Desteği */
[dir="rtl"] nav ul {
    flex-direction: row-reverse;
}

[dir="rtl"] .scroll-text {
    direction: rtl;
}


