/* إعدادات النظام العامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #080808; /* الأسود الملكي العميق المعتمد لمطعمكم */
    /* الملمس الفاخر الذي يحاكي نقوش المنيو الورقي */
    background-image: 
        radial-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 0),
        radial-gradient(rgba(212, 175, 55, 0.01) 2px, transparent 0);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    color: #f0f0f0;
    font-family: 'Cairo', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* حاوية الصفحة المركزية والأطر */
.maintenance-box {
    width: 100%;
    max-width: 500px; /* المقاس المثالي لشاشات الهواتف في الصالة */
    text-align: center;
}

.outer-gold-frame {
    border: 1px solid #4a371a;
    padding: 4px;
    border-radius: 12px;
}

.inner-gold-frame {
    border: 2px solid #d4af37; /* الخط المذهب للغلاف */
    padding: 40px 20px;
    border-radius: 8px;
    background: rgba(14, 14, 14, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

/* الشعار وحركة التوهج الخافتة */
.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.brand-logo {
    max-width: 140px;
    height: auto;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5));
}

.pulsing-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
}

/* العناوين والنصوص الملكية */
.main-title {
    font-family: 'Amiri', serif;
    font-size: 2.1rem;
    color: #d4af37; /* الذهب المطفي للشعار */
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
}

.status-badge {
    display: inline-block;
    font-size: 0.8rem;
    color: #a68429;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.heritage-divider {
    color: #4a371a;
    font-size: 0.8rem;
    letter-spacing: 6px;
    margin: 25px 0;
}

/* قسم الـ PDF وزر التحميل الفخم */
.pdf-section {
    margin-top: 10px;
}

.pdf-notice {
    color: #8c8c8c;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.download-pdf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #aa841c 100%);
    color: #080808;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-pdf-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.btn-icon {
    font-size: 1.2rem;
}

/* الفوتر */
.maintenance-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    color: #444;
}