/**
 * 溯未叠态官网 - 全局背景样式
 * 适用于所有页面
 */

/* ========== 背景层：图片背景 ========== */
.bg-ink-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background-image: url('beijing/baijing1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
}

/* 响应式背景调整 */
@media (max-width: 768px) {
    .bg-ink-container {
        background-size: cover;
        background-position: center bottom;
        opacity: 0.8;
    }
}

/* 确保 body 不会遮挡背景 */
body {
    background: transparent !important;
    position: relative;
    margin: 0;
    min-height: 100vh;
}
