@font-face {
    font-family: 'UthmanicHafs';
    src: url('./fonts/UthmanicHafs_V22.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'UthmanicHafs', serif;
    background-color: #F8F4E8; /* لون الخلفية من الصورة */
    color: #333;
    line-height: 2.5;
    direction: rtl;
    text-align: justify;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #F8F4E8; /* نفس لون الخلفية ليتناسب مع الصورة */
    box-shadow: none; /* إزالة الظل */
    border-radius: 0; /* إزالة حواف دائرية */
}

.header {
    text-align: center;
    margin-bottom: 20px;
    background: none; /* إزالة الخلفية */
    padding: 0; /* إزالة الحشوة */
    box-shadow: none; /* إزالة الظل */
    backdrop-filter: none; /* إزالة تأثير التمويه */
}

.header h1 {
    font-size: 2.2rem;
    color: #333; /* لون النص */
    margin-bottom: 5px;
    font-weight: normal; /* خط عادي */
    text-shadow: none; /* إزالة الظل */
}

.header .subtitle {
    font-size: 1rem;
    color: #666;
    font-family: sans-serif; /* خط عادي للترجمة */
}

.bismillah {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin: 20px 0;
    padding: 0; /* إزالة الحشوة */
    background: none; /* إزالة الخلفية */
    box-shadow: none; /* إزالة الظل */
    font-weight: normal; /* خط عادي */
}

.surah-content {
    background: none; /* إزالة الخلفية */
    padding: 0; /* إزالة الحشوة */
    box-shadow: none; /* إزالة الظل */
    backdrop-filter: none; /* إزالة تأثير التمويه */
    margin-bottom: 0;
}

.verse {
    font-size: 1.5rem; /* حجم الخط ليتناسب مع الصورة */
    line-height: 2.5; /* تباعد الأسطر */
    margin-bottom: 0; /* إزالة الهامش السفلي */
    padding: 0; /* إزالة الحشوة */
    background: none; /* إزالة الخلفية */
    border-right: none; /* إزالة الحدود */
    transition: none; /* إزالة التأثيرات */
    position: relative;
    text-align: justify; /* محاذاة النص */
}

.verse:hover {
    transform: none; /* إزالة التأثيرات */
    box-shadow: none; /* إزالة الظل */
    background: none; /* إزالة الخلفية */
}

.verse-number {
    display: inline-block;
    background: none; /* إزالة الخلفية */
    color: #333; /* لون النص */
    width: auto;
    height: auto;
    border-radius: 0;
    text-align: center;
    line-height: normal;
    font-size: 1rem; /* حجم الخط لرقم الآية */
    font-weight: bold;
    margin-left: 5px; /* هامش صغير لرقم الآية */
    font-family: sans-serif; /* خط عادي لرقم الآية */
    box-shadow: none; /* إزالة الظل */
    vertical-align: super; /* رفع رقم الآية قليلاً */
}

.verse-text {
    display: inline;
    color: #333;
}

/* إزالة الفوتر بالكامل */
.footer {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .bismillah {
        font-size: 1.4rem;
    }
    
    .verse {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .bismillah {
        font-size: 1.2rem;
    }
    
    .verse {
        font-size: 1.1rem;
    }
}

/* إزالة تأثيرات التحميل */
.fade-in {
    animation: none;
}

@keyframes fadeIn {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* إزالة العناصر الزخرفية */
.header::before {
    content: none;
}


