:root {
    color-scheme: light;
    --bg: #f5f7fb;
    --fg: #1c2434;
    --muted: #5f6b7c;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
    background: radial-gradient(circle at top, #ffffff 0%, #eef2ff 45%, #e2e8f0 100%);
    color: var(--fg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.maintenance {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.maintenance__animation {
    width: min(65vh, 90vw);
}

#maintenanceAnimation {
    width: 100%;
    height: min(65vh, 90vw);
}

.footer {
    text-align: center;
    padding: 1rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}
