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

body {
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('image/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Blur overlay effect */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 95%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.domain-wrapper {
    margin-bottom: 0.5rem;
}

.domain {
    font-size: 5.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    font-family: 'Playfair Display', serif;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.domain::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: expandLine 1.5s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes expandLine {
    to {
        opacity: 1;
        width: 150px;
    }
}

.divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    margin: 1rem auto;
    animation: fadeIn 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.subtitle {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
    letter-spacing: 1px;
    line-height: 1.4;
    color: #ffffff;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.description {
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.coming-soon-wrapper {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
}

.coming-soon {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.coming-soon::before,
.coming-soon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
}

.coming-soon::before {
    right: 100%;
}

.coming-soon::after {
    left: 100%;
}

.footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    width: 100%;
    animation: fadeIn 1s ease-out 1.2s forwards;
    opacity: 0;
}

.copyright {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin: 0;
    padding: 0 20px;
}

.company-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.company-link:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px 15px;
    }
    
    .domain {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .domain::after {
        width: 60px;
    }
    
    @keyframes expandLine {
        to {
            width: 100px;
        }
    }
    
    .divider {
        width: 80px;
        margin: 0.8rem auto;
    }
    
    .subtitle {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .description {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }
    
    .coming-soon {
        font-size: 1.3rem;
        letter-spacing: 5px;
    }
    
    .coming-soon::before,
    .coming-soon::after {
        width: 30px;
    }
    
    .footer {
        bottom: 20px;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 20px 15px;
    }
    
    .domain {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .domain::after {
        width: 50px;
        height: 2px;
    }
    
    @keyframes expandLine {
        to {
            width: 80px;
        }
    }
    
    .divider {
        width: 60px;
        margin: 0.6rem auto;
    }
    
    .subtitle {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .coming-soon-wrapper {
        margin-top: 2rem;
    }
    
    .coming-soon {
        font-size: 1.1rem;
        letter-spacing: 4px;
        padding: 0 15px;
    }
    
    .coming-soon::before,
    .coming-soon::after {
        width: 25px;
    }
    
    .footer {
        bottom: 15px;
    }
    
    .copyright {
        font-size: 0.75rem;
        padding: 0 15px;
    }
}
