/* =========================================
   CRP5 Style Sheet (crp.css) - مُعدّل 5 - لتصحيح موضع الرابط (تحت اللوجو)
   ========================================= */

/* 1. رابط الهيدر (تنسيق الزر الذي يفتح الأداة) - تعديلات مهمة هنا */
.crp5-test-link-wrapper {
    background: none;
    padding: 0;
    position: absolute;
    top: 90px; /* **تعديل كبير**: قم بزيادة هذا الرقم ليظهر أسفل اللوجو. جرب 90px كبداية. */
    left: 20px; /* هامش من اليسار */
    z-index: 1000;
    width: auto;
}

.crp5-header-link {
    display: inline-block;
    padding: 5px 10px;
    background-color: transparent;
    color: #333 !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #ccc;
}

.crp5-header-link:hover {
    background-color: #f0f0f0;
    color: #000 !important;
    transform: none;
}

/* 2. خلفية النافذة المنبثقة (Modal Overlay) - لم تتغير */
.crp5-modal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.crp5-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.crp5-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 3. صندوق المحتوى (Modal Content Container) - لم يتغير */
.crp5-modal-content {
    position: relative;
    background-color: transparent;
    width: 95%;
    max-width: 600px;
    text-align: center;
    z-index: 100000;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.crp5-modal.is-visible .crp5-modal-content {
    transform: scale(1);
}

/* 4. زر الإغلاق (Close Button) - لم يتغير */
.crp5-close-button {
    position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.2s;
    z-index: 100001;
}

.crp5-close-button:hover {
    color: #ff9800;
}

/* 5. عنوان الأداة والتعليمات - لم يتغير */
.crp5-title { 
    color: #fff; 
    margin-bottom: 15px; 
    font-family: sans-serif; 
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-top: 20px;
}
.crp5-instructions { 
    color: #ccc; 
    margin-top: 15px; 
    font-size: 13px; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* 6. حاوية تطبيق CRP5 (المسرح الرئيسي للأقراص) - لم تتغير */
.crp5-app {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
    overflow: hidden;
}

/* 7. القرص الخارجي (Outer Scale - الثابت) - لم يتغير */
.crp5-outer-scale {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.crp5-outer-scale img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

/* 8. القرص الداخلي (Inner Scale - المتحرك) - لم يتغير */
.crp5-inner-scale {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 99.5%;
    height: 99.5%;
    transform: translate(-50%, -50%) rotate(0deg); 
    z-index: 2;
    cursor: grab;
    border-radius: 50%;
    touch-action: none;
    transition: transform 0.1s ease-out;
}

.crp5-inner-scale:active {
    cursor: grabbing;
}

.crp5-inner-scale img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* 9. تحسينات للموبايل - تعديل طفيف */
@media (max-width: 768px) {
    .crp5-modal-content {
        padding: 0;
        max-width: 90vw;
        margin-top: 10px;
    }
    .crp5-title { font-size: 20px; margin-top: 10px; }
    .crp5-instructions { font-size: 12px; }
    .crp5-close-button { top: -5px; right: 5px; font-size: 35px; }
    .crp5-header-link { padding: 6px 12px; font-size: 13px; }
    .crp5-test-link-wrapper {
        position: absolute;
        top: 80px; /* **تعديل**: قد تحتاج لتعديل هذا الرقم للموبايل أيضاً */
        left: 10px;
        width: auto;
    }
}