
        :root {
             --primary-color: #2D6E6E;  /* تم تغميقه لتحسين التباين */
              --primary-dark: #1F4E4E;   /* تم تغميقه أكثر */

            --secondary-color: #6CB4B4;
            --success-color: #4CAF50;
            --warning-color: #FF9800;
            --danger-color: #F44336;
            --info-color: #2196F3;
            --light-color: #F5F7FA;
            --dark-color: #2C3E50;
              --text-color: #222;  
             --text-light: #555;
            --border-radius: 12px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
           .footer { text-align:center; font-size:13px;  color: #444; margin:20px 0; padding:10px; } 
.footer a {    color: var(--primary-dark); /* استخدام لون أغمق للروابط */
    text-decoration: none;
    font-weight: 600;
 }

        body {
            font-family: 'Tajawal', 'Cairo', sans-serif;
            background: #f5f7fa;
             color: var(--text-color);
            line-height: 1.6;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 30px;
        }

        h1 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 700;
        }

        h2 {
            color: var(--primary-color);
            border-right: 4px solid var(--primary-color);
            padding-right: 15px;
            margin: 30px 0 20px;
            font-weight: 700;
        }

        .subtitle {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 10px;
			color: #fff;   
        }

        /* تصميم الخطوات */
        .steps-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        .step {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .step:hover {
            transform: translateY(-3px);
        }

        .step-header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .step-number {
            background: white;
            color: var(--primary-color);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .step-title {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .step-body {
            padding: 20px;
        }

        .step-content {
            margin-bottom: 15px;
        }

        .step-image {
            text-align: center;
            margin: 15px 0;
            background: var(--light-color);
            padding: 15px;
            border-radius: 8px;
        }

        .step-image img {
            max-width: 100%;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

.image-placeholder {
  background: #eee;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.9rem;
  border: 2px dashed #ccc;

  /* احذف أي height أو عرض ثابت */
  width: auto;
  height: auto;
}


.image-placeholder img {
  max-width: 100%;   /* تاخذ عرض الشاشة أو الحاوية */
  height: auto;      /* يحافظ على النسبة الأصلية */
  display: block;
}



        /* تصميم الحالة */
        .status-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 8px 0;
        }

        .status-green, .status-red {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .status-green {
            background: var(--success-color);
        }

        .status-red {
            background: var(--danger-color);
        }

        /* الملاحظات */
        .note {
            background: #fff8e1;
            border-right: 4px solid var(--warning-color);
            padding: 12px 15px;
            border-radius: 0 5px 5px 0;
            margin: 15px 0;
            font-size: 0.9rem;
        }

        /* رسالة النجاح */
        .success-message {
            background: #e8f5e9;
            border-right: 4px solid var(--success-color);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
            text-align: center;
        }

        .success-message i {
            color: var(--success-color);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        /* قسم QR */
        .qr-section {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--box-shadow);
            margin: 30px 0;
        }

        .qr-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .qr-code {
            margin: 0 auto;
            width: 180px;
            height: 180px;
            background: white;
            padding: 10px;
            border: 1px solid #eee;
            border-radius: 8px;
        }
		

        .qr-link {
            margin-top: 15px;
        }

        .qr-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .qr-link a:hover {
            text-decoration: underline;
        }

        .qr-code-img {
            width: 100%;
            max-width: 300px;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* التثبيت على المتصفح */
        .browser-install {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
            padding: 10px;
            background: var(--light-color);
            border-radius: 8px;
        }

        .browser-icon {
            width: 24px;
            height: 24px;
        }

        /* التذييل */
        .footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid #eee;
        }

        /* تصميم صفحة المواصفات */
        .section {
            margin-bottom: 20px;
        }

        .section-header {
  background-color: var(--primary-dark); /* استخدام اللون الأغمق */
    color: white;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 6px;
            margin-bottom: 12px;
            font-size: 18px;
        }

        .section-content {
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 14px;
        }

        ul {
            list-style: none;
            padding: 0 15px;
            margin: 0;
        }

        li {
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 1.5em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        li::before {
            content: "✔";
            color: var(--success-color);
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }

        /* تصميم صفحة عدم الاتصال */
        .offline-container {
            max-width: 400px;
            background: #fff;
            padding: 40px 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            animation: fadeIn 1s ease-in-out;
            margin: 0 auto;
            text-align: center;
        }

        .offline-container img {
            width: 100px;
            margin-bottom: 20px;
        }

        .offline-container h1 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--danger-color);
        }

        .offline-container p {
            font-size: 16px;
            margin-bottom: 25px;
            color: #555;
        }

        .offline-container button {
            background: var(--primary-color);
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .offline-container button:hover {
            background: var(--primary-dark);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* التجاوب مع مختلف أحجام الشاشات */
        @media (max-width: 600px) {
            .container {
                padding: 15px;
            }
            
            header {
                padding: 25px 15px;
            }
            
            h1 {
                font-size: 1.5rem;
            }
        }
