* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.maintenance-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.icon {
    font-size: 4rem;
    color: #4299e1;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3748;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

.estimated-time {
    font-weight: 600;
    color: #2b6cb0;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 1rem;
    color: #4a5568;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #48bb78;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.logo-section {
    margin-bottom: 30px;
    text-align: center;
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.website-title {
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .maintenance-content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .icon {
        font-size: 3rem;
    }

    .logo {
        max-width: 120px;
    }

    .website-title {
        font-size: 1.5rem;
    }
} 