/* 全局样式 */
body {
    /* 默认隐藏，由 JS 控制显示，防止闪烁 */
    background: transparent !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
    user-select: none; /* 防止在游戏中选中文本 */
}

.main-container {
    display: none;
}

.main-page {
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
}

/* 模糊背景层 */
.blur-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.blur-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.6); /* 调整模糊度和亮度以匹配原版风格 */
    transform: scale(1.1); /* 放大一点避免模糊边缘 */
}

/* 滚动条隐藏 */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}