 /* ===== المتغيرات والأساسيات ===== */
    :root {
        --privacy-primary: #000000;
        --privacy-primary-light: #ede9fe;
        --privacy-primary-dark: #6d28d9;
        --privacy-accent: #f59e0b;
        --privacy-bg: #f9fafb;
        --privacy-card-bg: #ffffff;
        --privacy-text-dark: #1f2937;
        --privacy-text-soft: #4b5563;
        --privacy-text-light: #9ca3af;
        --privacy-border: #f0e4ff;
        --privacy-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.15);
        --privacy-border-radius: 2rem;
    }

    /* ===== الحاوية الرئيسية ===== */
    .privacy-wrapper {
        background: linear-gradient(135deg, #f5f0ff 0%, #f9fafb 100%);
        min-height: calc(100vh - 80px);
        padding: 4rem 1.5rem;
        font-family: 'Tajawal', 'Segoe UI', sans-serif;
    }

    /* ===== البطاقة الرئيسية ===== */
    .privacy-card {
        max-width: 900px;
        margin: 0 auto;
        background: var(--privacy-card-bg);
        border-radius: var(--privacy-border-radius);
        box-shadow: var(--privacy-shadow);
        padding: 3rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(139, 92, 246, 0.1);
        transition: all 0.3s ease;
    }

    .privacy-card:hover {
        box-shadow: 0 30px 60px -12px rgba(139, 92, 246, 0.25);
    }

    /* ===== الهيدر ===== */
    .privacy-header {
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 2px dashed var(--privacy-border);
        position: relative;
    }

    .privacy-icon {
        font-size: 4.5rem;
        margin-bottom: 1rem;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .privacy-title {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--privacy-primary), var(--privacy-primary-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }

    .privacy-subtitle {
        font-size: 1.2rem;
        color: var(--privacy-text-soft);
        max-width: 600px;
        margin: 0 auto 1.5rem;
        line-height: 1.6;
    }

    .update-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--privacy-primary-light);
        color: var(--privacy-primary-dark);
        padding: 0.6rem 1.5rem;
        border-radius: 100px;
        font-size: 0.9rem;
        font-weight: 600;
        border: 1px solid rgba(139, 92, 246, 0.2);
        backdrop-filter: blur(5px);
    }

    /* ===== الأقسام ===== */
    .privacy-section {
        margin-bottom: 2.5rem;
        padding: 1.5rem;
        background: #ffffff;
        border-radius: 1.5rem;
        border: 1px solid var(--privacy-border);
        transition: all 0.3s ease;
    }

    .privacy-section:hover {
        transform: translateX(5px);
        border-color: var(--privacy-primary);
        box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.2);
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.2rem;
    }

    .section-icon {
        font-size: 2rem;
        background: var(--privacy-primary-light);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        color: var(--privacy-primary);
    }

    .section-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--privacy-text-dark);
        margin: 0;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--privacy-primary), var(--privacy-accent));
        border-radius: 3px;
    }

    .section-content {
        padding-right: 3.5rem;
        color: var(--privacy-text-soft);
        line-height: 1.8;
        font-size: 1.05rem;
    }

    /* ===== القوائم ===== */
    .privacy-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .privacy-list li {
        margin-bottom: 0.8rem;
        padding-right: 2rem;
        position: relative;
    }

    .privacy-list li::before {
        content: '✦';
        position: absolute;
        right: 0;
        color: var(--privacy-primary);
        font-size: 1.2rem;
        font-weight: bold;
    }

    /* ===== الروابط ===== */
    .privacy-link {
        color: var(--privacy-primary);
        text-decoration: none;
        font-weight: 600;
        position: relative;
        transition: all 0.3s ease;
    }

    .privacy-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--privacy-primary), var(--privacy-accent));
        transition: width 0.3s ease;
    }

    .privacy-link:hover::after {
        width: 100%;
    }

    .privacy-link:hover {
        color: var(--privacy-primary-dark);
    }

    /* ===== التذييل ===== */
    .privacy-footer {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 2px dashed var(--privacy-border);
    }

    .privacy-footer p {
        color: var(--privacy-text-light);
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .privacy-footer span {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.6; }
    }

    /* ===== تجاوب مع الشاشات ===== */
    @media (max-width: 768px) {
        .privacy-wrapper {
            padding: 2rem 1rem;
        }
        .privacy-card {
            padding: 1.5rem;
        }
        .privacy-title {
            font-size: 2.2rem;
        }
        .section-content {
            padding-right: 0;
        }
        .section-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        .section-icon {
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
        }
    }

    /* ===== لمسات جمالية ===== */
    .glass-effect {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
    }

    .gradient-text {
        background: linear-gradient(135deg, var(--privacy-primary), var(--privacy-accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
