/* Arabic Fonts - خطوط عربية جميلة */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

/* تعريف الخطوط العربية */
:root {
    --font-primary: 'Noto Sans Arabic', 'Almarai', 'Tajawal', sans-serif;
    --font-heading: 'Tajawal', 'Almarai', 'Noto Sans Arabic', sans-serif;
    --font-body: 'Noto Sans Arabic', 'Almarai', sans-serif;
}

/* تطبيق الخطوط على العناصر */
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

/* إصلاح مشكلة الترميز للنصوص العربية */
.game-detail-content h2,
.game-detail-content h3,
.game-detail-content p,
.game-detail-content li,
.game-detail-content strong {
    font-family: var(--font-body) !important;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.7;
}

.game-detail-content h2 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    color: #ffffff;
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 0.5rem;
}

.game-detail-content h3 {
    font-family: var(--font-heading) !important;
    font-weight: 600;
    color: #ffc107;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.game-detail-content p {
    font-family: var(--font-body) !important;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1rem;
    text-align: justify;
}

.game-detail-content li {
    font-family: var(--font-body) !important;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 0.75rem;
    padding-right: 1.5rem;
    position: relative;
}

.game-detail-content strong {
    font-family: var(--font-heading) !important;
    font-weight: 600;
    color: #ffc107;
}

/* تحسين عرض الأزرار */
.action-btn {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: 1.1rem;
}

/* تحسين عرض العناوين */
.game-detail-header h1 {
    font-family: var(--font-heading) !important;
    font-weight: 800;
    font-size: 3rem;
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
