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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.maintenance-container {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-icon svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.maintenance-content h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.maintenance-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
}

.maintenance-content a {
    color: #667eea;
    text-decoration: none;
}

.maintenance-content a:hover {
    text-decoration: underline;
}

.site-name {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #718096;
}

@media (max-width: 480px) {
    .maintenance-container {
        padding: 40px 24px;
    }

    .maintenance-content h1 {
        font-size: 24px;
    }

    .maintenance-content p {
        font-size: 15px;
    }
}
