* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    margin-bottom: 40px;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.coming-soon-section {
    margin-bottom: 50px;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-subtitle {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
    font-style: italic;
}

.coming-soon-text {
    font-size: 1.2rem;
    opacity: 0.85;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.info-section {
    margin-bottom: 50px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
}

.info-item {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: right;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
}

.info-item a {
    color: #4fc3f7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    word-break: break-all;
}

.info-item a:hover {
    color: #81d4fa;
    text-decoration: underline;
}

.info-item span {
    color: rgba(255, 255, 255, 0.9);
}

.social-section {
    margin-top: 40px;
}

.social-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    fill: currentColor;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.3);
    border-color: rgba(24, 119, 242, 0.5);
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.3);
    border-color: rgba(225, 48, 108, 0.5);
}

.social-link.tiktok:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 3rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.5rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
    }
    
    .info-item {
        font-size: 1rem;
    }
    
    .social-link {
        width: 100px;
        height: 100px;
    }
    
    .social-link svg {
        width: 35px;
        height: 35px;
    }
    
    .logo {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 90px;
        height: 90px;
    }
    
    .social-link svg {
        width: 30px;
        height: 30px;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
}

