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

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

/* خلفية متحركة بألوان فلات */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7, #DDA0DD, #98D8C8);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* تأثير الماوس */
body::before {
    content: '';
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    width: 100%;
    transform: translateY(0);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

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

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.company-name {
    font-family: 'Amiri', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.company-name:hover {
    color: #e74c3c;
    transform: scale(1.05);
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #3498db);
    transition: width 0.3s ease;
}

.company-name:hover::after {
    width: 100%;
}

.description {
    margin-bottom: 40px;
    line-height: 1.8;
}

.description p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    transition: all 0.3s ease;
}

.description p:first-child {
    animation-delay: 0.5s;
}

.description p:last-child {
    animation-delay: 0.7s;
}

.description p:hover {
    color: #2c3e50;
    transform: translateX(10px);
}

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

.coming-soon {
    position: relative;
}

.coming-soon h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #e74c3c, #3498db, #9b59b6, #e67e22);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s ease infinite, pulse 2s ease infinite;
    text-shadow: 0 0 30px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.coming-soon h2:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

@keyframes gradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* تأثيرات إضافية للماوس */
.content * {
    transition: all 0.3s ease;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .coming-soon h2 {
        font-size: 3rem;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2rem;
    }
    
    .coming-soon h2 {
        font-size: 2.5rem;
    }
    
    .description p {
        font-size: 0.9rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
}

