/* style.css - Clean Dark Theme (مثل الصور) */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

body {
    background-color: #121212; /* أسود هادئ */
    color: #ffffff;
    font-family: 'Tajawal', sans-serif; /* خط عربي أنيق وواضح */
    margin: 0;
    padding: 0;
    direction: rtl;
    overflow-x: hidden;
}

/* 1. الهيدر (الشريط العلوي) */
.header {
    background-color: #1e1e1e;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    height: 60px;
}

.user-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* زر الرصيد الأخضر (مثل الصورة) */
.balance-box {
    background-color: #27ae60;
    color: white;
    padding: 8px 20px;
    border-radius: 50px; /* شكل كبسولة */
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(39, 174, 96, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 2. اللوبي (كروت الألعاب) */
.games-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px 20px;
    flex-wrap: wrap; /* ينزل سطر جديد بالموبايل */
}

.game-card {
    background-color: #2c2c2c;
    border-radius: 12px;
    width: 200px; /* عرض مناسب */
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid #333;
}

.game-card:hover {
    background-color: #333;
    transform: translateY(-3px);
    border-color: #444;
}

.game-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
}

.game-card div {
    font-size: 1.1rem;
    color: #eee;
    font-weight: bold;
}

/* عنوان الأقسام */
.rooms-section {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    color: #f1c40f; /* أصفر ذهبي */
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

/* 3. صفحة اللعب (الشطرنج) */
.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-height: calc(100vh - 90px);
}

/* منطقة الحالة (فوق البورد) */
#status-area {
    background-color: #2c2c2c;
    color: #f1c40f; /* نص أصفر */
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    border: 1px solid #444;
}

/* البورد */
#myBoard {
    border: 5px solid #444;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* نافذة الفوز */
.win-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.win-box {
    background: #f1c40f;
    color: #000;
    padding: 30px 50px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 30px rgba(241, 196, 15, 0.5);
}

/* تحسينات الموبايل */
@media (max-width: 600px) {
    .game-card {
        width: 100%; /* الكارت يأخذ عرض الشاشة */
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 20px;
        gap: 20px;
    }
    .game-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }
    .games-grid {
        flex-direction: column;
        padding: 10px;
    }
    #myBoard {
        width: 95vw !important; /* البورد يملأ عرض الموبايل */
        height: 95vw !important;
    }
}