/* 全局样式 */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden; /* 防止滚动条 */
}

/* 全屏背景图 */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1; /* 置于底层 */
    opacity: 0.7; /* 背景图透明度（可选） */
}

/* 主要内容（居中显示） */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #333; /* 文字颜色（根据背景调整） */
}

/* 右上角LOGO和公司名 */
.corner-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(44, 72, 230, 0.8); /* 半透明白底 */
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 120px; /* 调小LOGO尺寸 */
    height: auto;
}

.company-name {
    font-size: 2.0em;
    font-weight: bold;
    color: #d3c1ff;
}

.scroll-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    height: calc(100vh - 130px); /* 动态计算高度 */
    margin-top: 30px; /* LOGO空间 */
    margin-bottom: 130px; /* 备案号空间 */
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 20px;
    color: white;
    /* 隐藏滚动条 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}


.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    line-height: 1.6;
    color: #fff; /* 文字改为白色 */
    background-color: rgba(0, 0, 0, 0.6); /* 半透明黑色遮罩 */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.intro {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.divider {
    border: 0;
    height: 1px;
    background: #080808;
    margin: 20px 0;
}

.game-description {
    background-color: #000000;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.feature-section {
    margin-bottom: 25px;
    padding-left: 10px;
    border-left: 3px solid #ff6b6b;
}

/* 调整其他元素的颜色以适应遮罩 */
.feature-section h3 {
    color: #ff9e9e; /* 改为浅粉色，更醒目 */
}

.feature-section {
    border-left: 3px solid #ff9e9e; /* 同步调整边框色 */
}

.feature-section ul {
    padding-left: 20px;
}

.feature-section li {
    margin-bottom: 8px;
}

.conclusion {
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #666;
}

.conclusion {
    color: #fff; /* 底部文字也改为白色 */
}

/* 备案号底部固定 */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.8); /* 半透明白底 */
    text-align: center;
}

footer a {
    color: #0066cc;
    text-decoration: none;
}