:root {
    --primary: #a855f7;
    --text: #e2e8f0;
}

body {
    background-color: #000;
    color: var(--text);
    font-family: 'Cairo', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
}

.document-border {
    border: 2px solid var(--primary);
    padding: 4px;
    width: 790px; /* عرض مثالي لورقة A4 */
    background: #050505;
    position: relative;
    box-sizing: border-box;
}

.terms-container {
    padding: 25px 40px;
    position: relative;
}

.watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-35deg);
    font-size: 8rem;
    color: rgba(168, 85, 247, 0.02);
    z-index: 0;
    pointer-events: none;
}

.terms-header { text-align: center; margin-bottom: 15px; }
.brand-box img { width: 55px; margin-bottom: 5px; }
.brand-name { font-size: 1.6rem; color: #fff; display: block; }
.brand-sub { font-size: 0.6rem; color: var(--primary); letter-spacing: 3px; }

.main-title { font-size: 1.2rem; margin: 10px 0; color: #fff; }
.title-divider { width: 80px; height: 2px; background: var(--primary); margin: 0 auto; }

.terms-content { position: relative; z-index: 1; }
.terms-section { margin-bottom: 12px; }
.terms-section h2 { 
    font-size: 1rem; 
    color: var(--primary); 
    border-right: 3px solid var(--primary); 
    padding-right: 10px; 
    margin-bottom: 5px;
    background: rgba(168, 85, 247, 0.05);
}

.terms-list { list-style: none; padding: 0; }
.terms-list li { font-size: 0.85rem; margin-bottom: 4px; line-height: 1.4; }
.terms-list li strong { color: #fff; }

.signature-area {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed rgba(168, 85, 247, 0.2);
}
.sig-box { width: 40%; }
.sig-box p { font-size: 0.8rem; margin-bottom: 20px; }
.sig-line { border-bottom: 1px solid #222; font-size: 0.7rem; }

.terms-footer { text-align: center; margin-top: 15px; border-top: 1px solid #111; }
.confidential-tag { font-size: 0.6rem; color: #444; margin-top: 5px; }

/* إعدادات الطباعة لضمان صفحة واحدة وبدون قطع */
@media print {
    body { padding: 0; background: #fff; }
    .document-border { 
        width: 100%; 
        height: 99vh; /* يجبر البرواز على البقاء داخل الصفحة */
        border-color: #000; 
        background: #fff; 
    }
    .terms-container { color: #000; padding: 20px 40px; }
    .terms-section h2 { color: #000; border-right-color: #000; }
    .brand-name, .main-title, .terms-list li strong { color: #000; }
    .sig-line { border-bottom-color: #000; }
}