* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}

.content {
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-in-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 400px;
    height: auto;
    animation: pulseEffect 3s infinite;
}

h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #222;
}

.separator {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #d9a039, #29a99d, #c42c2c, #2d9245);
    margin: 1.5rem auto;
    border-radius: 3px;
}

.tagline {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.coming-soon {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #555;
}

.message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.progress-bar {
    height: 8px;
    width: 70%;
    margin: 0 auto 2rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, #d9a039, #29a99d, #c42c2c, #2d9245);
    border-radius: 4px;
    animation: progressAnimation 2s ease-in-out;
}

.contact {
    font-size: 0.95rem;
    color: #777;
}

.contact a {
    color: #29a99d;
    text-decoration: none;
    transition: color 0.3s;
}

.contact a:hover {
    color: #d9a039;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes progressAnimation {
    from { width: 0; }
    to { width: 75%; }
}

@keyframes pulseEffect {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .progress-bar {
        width: 90%;
    }
}
