/* الأنماط العامة للجسم (Body) والخطوط */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #282c34; /* خلفية داكنة */
    color: #e0e0e0; /* لون نص فاتح */
    margin: 0;
    direction: rtl; /* لجعل النص يبدأ من اليمين (مناسب للعربية) */
    text-align: center;
}

/* حاوية اللعبة الرئيسية */
.game-container {
    background-color: #3a3f47;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative; /* لجعل تحديد موضع عناصر اللغة أسهل */
}

h1 {
    color: #61dafb; /* لون مميز للعناوين */
    margin-bottom: 20px;
}

.game-status {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* لوحة اللعب (Board) */
.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    width: 315px; /* 3*100px + 2*5px gaps */
    height: 315px; /* 3*100px + 2*5px gaps */
    margin: 20px auto;
    background-color: #1a1e24; /* خلفية خفيفة للشبكة */
    border-radius: 5px;
    padding: 5px;
}

/* خلايا (مربعات) اللعب */
.cell {
    width: 100px;
    height: 100px;
    background-color: #4a4f58;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    border-radius: 5px;
}

.cell:hover {
    background-color: #5f6673;
    transform: scale(1.02);
}

/* تصميم علامات X و O */
.cell.X {
    color: #ff6b6b; /* أحمر ناعم لـ X */
}

.cell.O {
    color: #4ecdc4; /* أزرق مخضر لـ O */
}

/* الأزرار العامة */
button {
    background-color: #61dafb;
    color: #282c34;
    border: none;
    padding: 10px 20px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 5px;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

button:hover {
    background-color: #21a1f1;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* قائمة الاختيار (Dropdown) */
select {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #61dafb;
    background-color: #3a3f47;
    color: #e0e0e0;
    font-size: 1em;
    margin: 10px 5px;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #21a1f1;
    box-shadow: 0 0 5px rgba(97, 218, 251, 0.5);
}

/* رسائل اللعبة (فوز، تعادل) */
.message {
    font-size: 1.5em;
    margin-top: 20px;
    font-weight: bold;
    color: #a2fa61; /* لون أخضر للفوز/التعادل */
}

/* --- أنماط جديدة لمحدد اللغة --- */
.language-selector {
    position: absolute; /* تحديد الموضع المطلق */
    top: 15px; /* مسافة من الأعلى */
    right: 15px; /* مسافة من اليمين (لأن direction: rtl) */
    display: flex;
    align-items: center;
    gap: 10px; /* مسافة بين الـ label والـ select */
}

.language-selector label {
    font-size: 0.9em;
    color: #9299a4; /* لون رمادي فاتح للـ label */
}

.language-selector select {
    padding: 8px 12px;
    font-size: 0.9em;
    border: 1px solid #555c66;
    background-color: #2e3238;
    color: #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    appearance: none; /* إزالة النمط الافتراضي للمتصفح */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23e0e0e0%22%20d%3D%22M287%2C197.35L146.2%2C56.65L5.4%2C197.35L0%2C191.95L146.2%2C0.65L292.4%2C191.95L287%2C197.35z%22%2F%3E%3C%2Fsvg%3E'); /* سهم مخصص */
    background-repeat: no-repeat;
    background-position: left 10px center; /* موضع السهم (يسار لأن rtl) */
    background-size: 12px; /* حجم السهم */
    padding-left: 25px; /* مساحة للسهم */
    text-align: right; /* محاذاة النص داخل الـ select */
    padding-right: 12px; /* مسافة للنص */
}

.language-selector select:hover {
    border-color: #61dafb;
}

.language-selector select:focus {
    outline: none;
    border-color: #21a1f1;
    box-shadow: 0 0 5px rgba(97, 218, 251, 0.5);
}


/* الأنماط المتجاوبة */
@media (max-width: 600px) {
    .game-container {
        padding: 20px;
    }
    .board {
        width: 255px; /* أصغر للمربعات */
        height: 255px;
        grid-template-columns: repeat(3, 80px);
        grid-template-rows: repeat(3, 80px);
    }
    .cell {
        width: 80px;
        height: 80px;
        font-size: 2.5em;
    }
    h1 {
        font-size: 1.8em;
    }
    button {
        padding: 8px 15px;
        font-size: 1em;
    }
    .language-selector {
        top: 10px;
        right: 10px;
        gap: 5px;
    }
    .language-selector label,
    .language-selector select {
        font-size: 0.8em;
        padding: 6px 10px;
    }
}