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

body {
    font-family: 'Cairo', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* الشعار */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 4px solid #fff;
}

.logo:hover {
    transform: scale(1.1);
}

/* العناوين */
.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.english-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

/* رسالة تحت الإنشاء */
.construction-message {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.construction-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.construction-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.construction-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.construction-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* شريط التقدم */
.progress-container {
    margin: 30px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border-radius: 10px;
    width: 0%;
    animation: progressAnimation 2s ease-out forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s infinite;
}

.progress-text {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* روابط التواصل الاجتماعي */
.social-links h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
    color: white;
}

.social-link.website {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 1.2rem;
}

/* معلومات الاتصال */
.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-right: 4px solid #667eea;
}

.contact-info p {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    justify-content: center;
}

.contact-item i {
    color: #667eea;
}

/* تاريخ آخر تحديث */
.last-update {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.last-update small {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* الخلفية المتحركة */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.circle-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

/* الرسوم المتحركة */
@keyframes progressAnimation {
    from { width: 0%; }
    to { width: 75%; }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .content {
        padding: 30px 25px;
    }

    .main-title {
        font-size: 2rem;
    }

    .english-title {
        font-size: 1.2rem;
    }

    .construction-title {
        font-size: 1.5rem;
    }

    .construction-text {
        font-size: 1rem;
    }

    .social-icons {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }

    .construction-message {
        padding: 20px;
    }

    .construction-icon {
        font-size: 2.5rem;
    }
}
