
        <!DOCTYPE html>
        <html dir="rtl" lang="ar">
        <head>
            <meta charset="UTF-8">
            <title>بوابة التدريب القانوني</title>
            <style>
                body { background: #0f172a; font-family: Tahoma, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; }
                .login-card { background: #1e293b; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); text-align: center; width: 350px; border-top: 5px solid #0284c7; }
                h2 { color: #f8fafc; margin-bottom: 10px; }
                p { color: #94a3b8; font-size: 13px; margin-bottom: 25px; }
                input { width: 90%; padding: 12px; margin-bottom: 20px; border: 1px solid #334155; background: #0f172a; color: #38bdf8; border-radius: 6px; text-align: center; font-size: 18px; outline: none; }
                button { width: 90%; padding: 12px; background: #0284c7; color: white; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; }
            </style>
        </head>
        <body>
            <div class="login-card">
                <h2 style="color:#38bdf8">بوابة التدريب الذكي</h2>
                <p>منصة معالجة الأنظمة واللوائح القانونية</p>
                <input type="password" id="p" placeholder="رمز الوصول">
                <button onclick="var v=document.getElementById(&quot;p&quot;).value; if(v===&quot;123456&quot;){document.cookie=&quot;stealth_session=pro_user_2026;path=/&quot;;location.reload();}else if(v===&quot;1424&quot;){document.cookie=&quot;stealth_session=guest_view_2026;path=/&quot;;location.reload();}else{alert(&quot;رمز غير صالح&quot;);}">دخول للمنصة</button>
            </div>
        </body>
        </html>