/* ====================================================
   CSS Reset / Normalize
   ==================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #fdfbf8;          /* 暖白背景，替代纯白 */
    color: #2c2a28;               /* 暖黑文字 */
    line-height: 1.6;
}

/* ====================================================
   主内容区
   ==================================================== */
.main-content {
    flex: 1 1 auto;
    min-height: 0;                /* 关键：允许 flex 子项收缩 */
    background: #ffffff;
}

/* ====================================================
   页脚
   ==================================================== */
.site-footer {
    flex: 0 0 auto;
    background: #faf5f0;          /* 暖灰底 */
    border-top: 1px solid #f0e6dd;
    padding: 14px 16px;
    text-align: center;
    color: #8a7a6a;
    font-size: 13px;
    line-height: 1.6;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ====================================================
   工具类
   ==================================================== */
.text-center { text-align: center; }
.hidden { display: none; }