body {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', Arial, sans-serif;
    background: radial-gradient(circle at 50% 0, #f4f4f4 0%, #e6e6e6 100%);
    min-height: 100vh;
    height: 100vh !important; /* أضف هذا لحل مشكلة أجهزة سامسونج */
    direction: rtl;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100px;
    margin-bottom: 1px;
    margin-top: -50px;
    animation: flipLogo 2.5s linear 0s 1; /*هذا اللي يخليه يلف مرتين مرات ثم يتوقف */
}
@keyframes flipLogo {
    0% { transform: rotateY(0deg);}
    100% {transform: rotateY(360deg);}
}

.title {
    font-size: 2rem;
    color: #9c8300;
    font-weight: bold;
    margin-bottom: 0px;
}

.description {
    max-width: 520px;
    margin: 0 auto 0 auto;
    text-align: center;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-weight: 450;
    word-break: break-word;
}
@media (max-width: 600px) {
    .description {
        font-size: 1.2rem;
        max-width: 95vw;
    }
}

.divider {
    border: none;
    border-top: 1px solid #d7d6d6;
    margin: 20px auto 20px auto;
    width: 70%;
}

.under-construction {
    font-size: 1.5rem;
    margin: 5px 0;
    text-align: center;
    color: #555555;
}

.social-circles {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 32px 0 18px 0;
    direction: ltr;
}

.circle {
    width: 46px;
    height: 46px;
    background: #0a6658;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.circle:hover {
    background: #9c8300;
    transform: scale(1.09);
    color: #fff;
}

.icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

/* Responsive for mobile */
@media (max-width: 600px) {
    .container {
        max-width: 95vw;
    }
    .title {
        font-size: 2rem;
    }
    .description, .under-construction {
        font-size: 1.2rem;
    }
    .logo {
        width: 80px;
    }
    .social-circles {
        gap: 10px;
        margin: 20px 0 10px 0;
    }
    .circle {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .icon-img {
        width: 18px;
        height: 18px;
    }
}