/* استدعاء خطوط Google الاحترافية */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;800;900&display=swap');

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body, html {
    height: 100%;
    background-color: #050508;
    color: #fff;
    overflow-x: hidden;
}

/* صورة الخلفية مع تأثير التعتيم */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('../assets/background.jpg') center/cover no-repeat fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.9) 0%, rgba(45, 15, 60, 0.8) 100%);
    z-index: 1;
}

/* المحتوى الزجاجي (Glassmorphism) */
.content-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 30px;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.logo {
    width: 130px; height: 130px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

h1 {
    font-size: 3.2rem; font-weight: 900; margin-bottom: 15px;
    background: linear-gradient(to right, #FFD700, #FF5722);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.slogan {
    font-size: 1.3rem; font-weight: 600; color: #E0E0E0; margin-bottom: 15px; line-height: 1.6;
}

.description {
    font-size: 1.05rem; color: #A0A0B0; margin-bottom: 35px; line-height: 1.8;
}

/* زر التحميل الفخم */
.download-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(45deg, #E91E63, #673AB7);
    color: #fff; padding: 16px 40px; font-size: 1.4rem; font-weight: 800;
    text-decoration: none; border-radius: 50px;
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.5);
    transition: all 0.3s ease; gap: 10px;
}

.download-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.7);
}

/* الفوتر (الروابط السفلية) */
footer {
    position: absolute; bottom: 20px; width: 100%;
    z-index: 2; text-align: center;
}

footer a {
    color: #A0A0A0; text-decoration: none; margin: 0 15px; font-size: 0.95rem; font-weight: 600; transition: 0.3s;
}

footer a:hover { color: #FFD700; }

/* صفحات النصوص (السياسة والشروط) */
.text-page {
    padding: 60px 20px; max-width: 800px; margin: 0 auto; direction: rtl;
}
.text-page h1 { font-size: 2.5rem; margin-bottom: 30px; text-align: center; }
.text-page h2 { color: #FFD700; margin-top: 30px; margin-bottom: 15px; font-size: 1.5rem; }
.text-page p { color: #ccc; line-height: 1.8; margin-bottom: 15px; font-size: 1.1rem; }
.back-btn {
    display: inline-block; margin-top: 40px; color: #E91E63; text-decoration: none; font-weight: bold; border: 1px solid #E91E63; padding: 10px 25px; border-radius: 20px; transition: 0.3s;
}
.back-btn:hover { background: #E91E63; color: #fff; }