/* error.css - 统一错误页面样式 */

/* 重置基本样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: "Segoe UI", sans-serif;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 600px;
    width: 90%;
    padding: 50px 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

/* 错误状态码：大号字体 + 绿色 */
h1 {
    font-size: 280px;
    color: #2ecc71; /* 绿色 */
    margin-bottom: 10px;
    line-height: 1;
}

/* 错误信息文本 */
p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* 底部文字 */
.footer {
    font-size: 14px;
    color: #aaa;
    font-style: italic;
}
