/* ═══════════════════════════════════════════════════════════════ */
/* 🎨 تنسيق سياسة الخصوصية - صقر الحسابات */
/* ═══════════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 📌 الهيدر */
/* ═══════════════════════════════════════════════════════════════ */

header {
    background: linear-gradient(135deg, #1a4a7a 0%, #0891b2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.app-name {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 5px;
}

.last-update {
    font-size: 0.95em;
    opacity: 0.9;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 📄 المحتوى الرئيسي */
/* ═══════════════════════════════════════════════════════════════ */

main {
    padding: 40px 30px;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #1a4a7a;
    font-size: 1.8em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #0891b2;
}

h3 {
    color: #0891b2;
    font-size: 1.3em;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 📋 القوائم */
/* ═══════════════════════════════════════════════════════════════ */

ul {
    margin: 15px 0;
    padding-right: 30px;
}

ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    background: #f0f9ff;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-right: 4px solid #0891b2;
    border-radius: 5px;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 💡 صندوق التنويه */
/* ═══════════════════════════════════════════════════════════════ */

.highlight {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border-right: 6px solid #ff9800;
}

.highlight strong {
    color: #f57c00;
    font-size: 1.1em;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 🔐 بطاقات الأذونات */
/* ═══════════════════════════════════════════════════════════════ */

.permission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.permission-card {
    background: linear-gradient(135deg, #e8f4fc 0%, #f0f9ff 100%);
    border: 2px solid #0891b2;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.permission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(8, 145, 178, 0.3);
}

.permission-card h3 {
    color: #1a4a7a;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.permission-card p {
    font-size: 0.95em;
    color: #555;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 📞 صندوق الاتصال */
/* ═══════════════════════════════════════════════════════════════ */

.contact-box {
    background: #e8f4fc;
    border: 2px solid #0891b2;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.contact-box ul {
    list-style: none;
    padding: 0;
}

.contact-box li {
    margin-bottom: 10px;
}

.contact-box a {
    color: #0891b2;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 🔻 الفوتر */
/* ═══════════════════════════════════════════════════════════════ */

footer {
    background: linear-gradient(135deg, #1a4a7a 0%, #0891b2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.footer-content p {
    margin: 5px 0;
}

/* ═══════════════════════════════════════════════════════════════ */
/* 📱 تصميم متجاوب */
/* ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header h1 {
        font-size: 1.8em;
    }

    main {
        padding: 20px 15px;
    }

    h2 {
        font-size: 1.5em;
    }

    .permission-grid {
        grid-template-columns: 1fr;
    }
}