.font-cairo { font-family: 'Cairo', sans-serif; }
/* خط المصحف الخاص */
.font-quran { font-family: 'Amiri', serif; }

/* تأثير الزجاج */
.glass-panel {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* تنسيق صفحة المصحف لتبدو واقعية */
.quran-page-container {
    background-color: #fdfbf7; /* لون ورق المصحف */
    color: #000;
    border-radius: 8px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
    min-height: 80vh;
    padding: 20px;
    line-height: 2.2;
    font-size: 22px;
    text-align: justify;
    direction: rtl;
    position: relative;
}

/* الآيات داخل المصحف */
.ayah-span {
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 4px;
    padding: 0 2px;
}
/* عند الضغط المطول */
.ayah-span.selected {
    background-color: rgba(16, 185, 129, 0.3); /* تمييز أخضر */
}

/* فواصل الآيات */
.ayah-number {
    color: #d97706; /* لون ذهبي */
    font-size: 0.8em;
    margin: 0 5px;
    font-family: sans-serif;
    border: 1px solid #d97706;
    border-radius: 50%;
    padding: 0 6px;
    display: inline-block;
}

/* شريط التقدم الدائري */
.progress-ring circle { transition: stroke-dashoffset 0.35s; transform: rotate(-90deg); transform-origin: 50% 50%; }