body {
    /* 强行覆盖 WordPress 主题可能设置的背景和字体 */
    background-color: #ffffff !important; 
    color: #000000 !important;
    font-family: Arial, sans-serif !important;
    margin: 0;
    padding: 0;
    line-height: 1.4; /* 模仿原始页面略紧凑的行高 */
}

/* 2. 容器和内容居中 */
.site-content {
    /* 使用 Flexbox 确保内容完全垂直和水平居中，如果这是唯一内容 */
    /* 如果页面上还有 header/footer 等其他 WP 元素，则使用 margin auto 居中 */
    
    max-width: 600px; /* 限制宽度，模仿原始页面的内容区 */
    margin: 100px auto 0; /* 顶部留出较大空白，模仿默认页面的位置 */
    padding: 20px;
    text-align: left; /* 保持文本左对齐，但整个块居中 */
}
/* 3. 标题样式 (H1) */
h1 {
    font-size: 24pt; /* 模仿默认页面的字体大小 */
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

/* 4. 段落样式 (P) */
p {
    font-size: 11pt; /* 模仿默认页面的小字体 */
    margin-bottom: 12px;
}

/* 5. 链接样式 (A) */
a {
    color: #0000FF; /* 经典蓝色链接 */
    text-decoration: underline; /* 经典下划线 */
}

a:hover {
    color: #551A8B; /* 经典访问过/悬停颜色 */
}

/* 6. 特殊文本样式 (Emphasis/Italics) */
em {
    display: block; /* 确保感谢语独占一行 */
    margin-top: 20px;
    font-style: italic;
    font-size: 11pt;
}

/* 7. 响应式微调 (如果需要) */
@media (max-width: 600px) {
    .nginx-imitation-container {
        margin-top: 50px; 
    }
}