/* === START: تمت إضافة خط كايرو لتوحيد هوية الموقع === */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
/* === END: نهاية التعديل === */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: #87CEEB; /* لون سماء فاتح */
    color: #333;
    overflow: hidden;
    direction: rtl; 
}

h1, h2, h3 {
    color: #0056b3; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    text-align: center;
    margin: 5px 0;
}

h2 {
    font-size: 1.2rem;
    font-weight: 400;
}

/* === START: تنسيق الترجمة الإنجليزية === */
.lang-en {
    font-size: 0.75em; /* خط أصغر */
    color: #333; /* لون أغمق قليلاً */
    font-weight: 400;
    font-style: italic;
    display: block; /* لجعلها تحت النص العربي */
    line-height: 1.2;
}
/* === END: تنسيق الترجمة الإنجليزية === */

#game-area {
    width: 90vw;
    max-width: 800px;
    height: 60vh;
    border: 3px solid #0056b3;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#score-board {
    display: flex;
    justify-content: space-around;
    width: 90vw;
    max-width: 800px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 15px;
    color: #004085; 
    /* تعديل ليتسع للترجمة */
    text-align: center;
    line-height: 1.4;
}

#score-board span {
    color: #d9534f; 
    background-color: #fff;
    padding: 2px 8px;
    border-radius: 5px;
    border: 2px solid #004085;
}

/* لوحة النتائج الإنجليزية (لتحديثها بالجافاسكريبت) */
#score-board .lang-en span {
    background-color: transparent;
    border: none;
    padding: 0;
    color: #d9534f;
    font-size: 1em;
    font-style: italic;
}


.balloon {
    position: absolute;
    bottom: -100px;
    width: 60px; 
    height: 75px;
    background-color: #ff6347;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    cursor: pointer;
    animation-timing-function: ease-out;
    animation-duration: 3.5s;
    animation-fill-mode: forwards;
}

/* ألوان مختلفة للبالونات */
.balloon:nth-child(2n) { background-color: #4CAF50; }
.balloon:nth-child(3n) { background-color: #3498db; }
.balloon:nth-child(4n) { background-color: #f1c40f; }
.balloon:nth-child(5n) { background-color: #9b59b6; }

@keyframes throw1 {
    0%   { bottom: -100px; transform: translateX(0px) rotate(0deg); }
    50%  { bottom: 50vh; transform: translateX(100px) rotate(180deg); }
    100% { bottom: -100px; transform: translateX(200px) rotate(360deg); }
}
@keyframes throw2 {
    0%   { bottom: -100px; transform: translateX(0px) rotate(0deg); }
    50%  { bottom: 55vh; transform: translateX(-80px) rotate(-180deg); }
    100% { bottom: -100px; transform: translateX(-160px) rotate(-360deg); }
}
@keyframes throw3 {
    0%   { bottom: -100px; transform: translateX(0px) rotate(0deg); }
    50%  { bottom: 60vh; transform: translateX(0px) rotate(100deg); }
    100% { bottom: -100px; transform: translateX(0px) rotate(200deg); }
}

.pop {
    transform: scale(1.5);
    opacity: 0;
    transition: transform 0.1s, opacity 0.1s;
}

#start-button {
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    /* تم تعديل الحشو ليتناسب مع السطرين */
    padding: 10px 30px;
    line-height: 1.5;
    margin-top: 15px;
    border: none;
    border-radius: 10px;
    background-color: #28a745;
    color: white;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

#start-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* === START: تعديل النافذة المنبثقة (Modal) === */
.modal {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: none; /* مخفي افتراضياً */
    align-items: center;
    justify-content: center;
}

.modal-content {
    font-family: 'Cairo', sans-serif;
    background-color: #fefefe;
    padding: 20px 30px;
    border: 2px solid #0056b3;
    border-radius: 15px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#options button {
    font-family: 'Cairo', sans-serif;
    display: block;
    width: 100%;
    margin: 10px 0;
    /* تم تعديل الحشو والارتفاع للترجمة */
    padding: 12px 10px;
    line-height: 1.4;
    min-height: 60px; 
    font-size: 1rem;
    font-weight: 700;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#options button:hover {
    background-color: #0056b3;
}

#modal-message {
    min-height: 25px;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.6; /* للسماح بالترجمة */
}
/* === END: تعديل النافذة المنبثقة === */


@media (max-width: 600px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1rem; }
    #score-board { font-size: 1rem; }
    .balloon {
        width: 50px;
        height: 65px;
    }
    #start-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
    #options button {
        font-size: 0.9rem;
        min-height: 50px;
    }
}