﻿/* العنوان */
.game-title {
    text-align: center;
    font-size: 2.8rem;
    color: #7b1fa2;
    margin-bottom: 25px;
    font-weight: bold;
}

/* الحاوية الرئيسية */
.word-game-container {
    max-width: 800px;
    margin: auto;
    padding: 30px 20px;
    text-align: center;
    background-color: #fffdf0;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* الكلمة */
.target-word {
    font-size: 4rem;
    font-weight: bold;
    color: #f97316;
    margin: 20px auto;
    background-color: #fff7ed;
    padding: 12px 25px;
    border-radius: 16px;
    display: inline-block;
}

/* التعليمات */
.instruction {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

/* زر الصوت (تم تعديله ليطابق الزرين الآخرين) */
.btn-sound {
    background-color: #3b82f6;
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-sound:hover {
        background-color: #2563eb;
    }

/* خانة الإدخال */
.input-box {
    display: block;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 1.4rem;
    width: 60%;
    border-radius: 12px;
    border: 2px solid #d1d5db;
    margin-bottom: 20px;
    text-align: center;
}

    .input-box:focus {
        border-color: #3b82f6;
        outline: none;
    }

/* أزرار الإجراءات */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-check, .btn-next {
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-check {
    background-color: #22c55e;
    color: white;
}

    .btn-check:hover {
        background-color: #16a34a;
    }

.btn-next {
    background-color: #f59e0b;
    color: white;
}

    .btn-next:hover {
        background-color: #d97706;
    }

/* الإحصائيات */
.stats {
    margin-top: 30px;
    font-size: 1.2rem;
    color: #444;
}

/* النافذة المنبثقة */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    max-width: 420px;
    animation: popupFade 0.3s ease-in-out;
}

.popup-correct {
    border: 3px solid #4caf50;
    background-color: #e8f5e9;
    color: #2e7d32;
}

.popup-wrong {
    border: 3px solid #f44336;
    background-color: #ffebee;
    color: #c62828;
}

.popup-image {
    width: 100px;
    margin: 15px 0;
    animation: pulse 1s infinite;
}

.close-popup {
    background-color: #3b82f6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

    .close-popup:hover {
        background-color: #2563eb;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}
