* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0c0f;
    color: #eaeaea;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, .chinese-serif {
    font-family: 'Noto Serif SC', serif;
    font-weight: 600;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 装饰用金色 */
.gold-text {
    color: #b89b5b;
}
.gold-border {
    border-color: #b89b5b;
}
.btn-gold {
    background: transparent;
    border: 2px solid #b89b5b;
    color: #b89b5b;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
.btn-gold:hover {
    background: #b89b5b;
    color: #0a0c0f;
}
.btn-solid {
    background: #b89b5b;
    border: 2px solid #b89b5b;
    color: #0a0c0f;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 2px;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
.btn-solid:hover {
    background: transparent;
    color: #b89b5b;
}

/* 导航 */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(184, 155, 91, 0.3);
    position: sticky;
    top: 0;
    background-color: rgba(10, 12, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1rem;
}
.nav-links a:hover {
    color: #b89b5b;
}
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 102;
}

/* 移动端菜单 (全屏覆盖) */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 12, 15, 0.98);
    backdrop-filter: blur(8px);
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    pointer-events: none;
}
.mobile-nav.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.mobile-nav a {
    color: #eaeaea;
    font-size: 2.2rem;
    font-family: 'Noto Serif SC', serif;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.mobile-nav a:hover {
    color: #b89b5b;
}
.mobile-nav .close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #b89b5b;
    cursor: pointer;
}

/* 英雄区 */
.hero {
    padding: 6rem 0 4rem;
    background: radial-gradient(circle at 30% 30%, rgba(30, 25, 20, 0.8), #0a0c0f 70%);
    text-align: center;
}
.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(184,155,91,0.3);
    margin-bottom: 1rem;
}
.hero-tagline {
    font-size: 1.5rem;
    color: #b89b5b;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}
.hero p {
    max-width: 700px;
    margin: 2rem auto;
    font-size: 1.2rem;
    color: #ccc;
}
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 故事区 */
.section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}
.section-sub {
    text-align: center;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.story-text {
    font-size: 1.1rem;
    color: #ddd;
}
.story-text p {
    margin-bottom: 1.2rem;
}
.story-highlight {
    background: rgba(184, 155, 91, 0.1);
    padding: 2rem;
    border-left: 4px solid #b89b5b;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* 特色卡片 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.feature-card {
    background: rgba(20, 22, 27, 0.7);
    border: 1px solid #2a2a2a;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
    border-color: #b89b5b;
    transform: translateY(-8px);
}
.feature-icon {
    font-size: 2.8rem;
    color: #b89b5b;
    margin-bottom: 1.2rem;
}
.feature-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}
.feature-desc {
    color: #aaa;
    font-size: 0.95rem;
}

/* 角色 */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}
.character-card {
    background: rgba(15, 17, 22, 0.8);
    border: 1px solid #2f2f2f;
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}
.character-avatar {
    height: 240px;
    background: #1e2128;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #b89b5b;
    border-bottom: 2px solid #b89b5b;
    overflow: hidden;
}
.character-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.character-info {
    padding: 1.8rem;
}
.character-name {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}
.character-title {
    color: #b89b5b;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.character-quote {
    color: #bbb;
    font-style: italic;
    border-top: 1px dashed #444;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* 截图区域 (使用真实图片) */
.screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}
.screenshot {
    background: #23262e;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5f6b;
    font-size: 1rem;
    border: 1px solid #333;
    transition: all 0.3s;
    overflow: hidden;
}
.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.screenshot:hover {
    border-color: #b89b5b;
}

/* 下载区 (仅保留用户指定的四个链接) */
.download-section {
    background: linear-gradient(145deg, #0f1219, #0a0c0f);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid #2a2a2a;
    margin: 3rem 0;
}
.download-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
/* 下载链接组 (part) 现在作为主要下载区 */
.part {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.download {
    background: transparent;
    border: 2px solid #b89b5b;
    color: #b89b5b;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 1px;
    min-width: 160px;
}
.download:hover {
    background: #b89b5b;
    color: #0a0c0f;
}

/* 反馈 & 开发者名单样式 (新增) */
.feedback-container {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0,0,0,0.2);
    border-radius: 24px;
    border: 1px solid #2a2a2a;
}
.feedback-container .part {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.feedback-container .part:first-child {
    margin-top: 0;
}
.text {
    font-size: 1.1rem;
    color: #ccc;
    text-align: center;
    word-break: break-word;
}
.upload {
    color: #b89b5b;
    text-decoration: none;
    border-bottom: 1px dotted #b89b5b;
}
.upload:hover {
    color: #e4c27a;
}
.feedback-container img {
    width: 20%;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 12px;
    border: 2px solid #b89b5b;
}
.little_title {
    font-size: 2rem;
    color: #b89b5b;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif SC', serif;
}

footer {
    padding: 3rem 0;
    text-align: center;
    color: #777;
    border-top: 1px solid rgba(184,155,91,0.2);
}
footer a {
    color: #b89b5b;
    text-decoration: none;
}
.back-link {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 3.2rem;
    }
    .story-grid {
        grid-template-columns: 1fr;
    }
    .screenshots {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .container {
        padding: 0 1.2rem;
    }
    .part {
        flex-direction: column;
        align-items: center;
    }
    .download {
        width: 80%;
        text-align: center;
    }
    .feedback-container img {
        width: 60%;
    }
}
/* ========== 更新日志页面专用样式 ========== */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(184, 155, 91, 0.3);
    padding-bottom: 1.5rem;
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(184,155,91,0.2);
}
.page-header .back-home {
    margin-top: 1rem;
}

/* 版本条目 */
.version-entry {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(20, 22, 27, 0.5);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    transition: border-color 0.2s;
}
.version-entry:hover {
    border-color: #b89b5b;
}
.version-entry h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #b89b5b;
    border-left: 4px solid #b89b5b;
    padding-left: 1rem;
}
.version-entry h2 a {
    color: #b89b5b;
    text-decoration: none;
}
.version-entry h2 a:hover {
    text-decoration: underline;
    color: #e4c27a;
}
.version-entry ul {
    list-style-type: none;
    padding-left: 1.2rem;
}
.version-entry li {
    margin-bottom: 0.5rem;
    color: #ccc;
    position: relative;
}
.version-entry li::before {
    content: "•";
    color: #b89b5b;
    font-weight: bold;
    display: inline-block;
    width: 1.2rem;
    margin-left: -1.2rem;
}
.note-list {
    margin: 1rem 0 2rem;
    padding-left: 1.2rem;
}
.note-list li {
    margin-bottom: 0.5rem;
    color: #ccc;
    position: relative;
}
.note-list li::before {
    content: "※";
    color: #b89b5b;
    font-weight: bold;
    display: inline-block;
    width: 1.2rem;
    margin-left: -1.2rem;
}
.footer-nav {
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid rgba(184,155,91,0.2);
    padding-top: 2rem;
}

/* ========== 下载页面专用样式 ========== */
.download-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.download-card {
    max-width: 700px;
    width: 100%;
    background: linear-gradient(145deg, #0f1219, #0a0c0f);
    border-radius: 32px;
    padding: 3rem 2rem;
    border: 1px solid #2a2a2a;
    text-align: center;
    margin: 2rem auto;
}
.download-card h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.download-card p {
    color: #aaa;
    margin-bottom: 2rem;
}
.download-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.back-home {
    margin-top: 1.5rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.4rem;
    }
    .version-entry h2 {
        font-size: 1.6rem;
    }
    .download-card {
        padding: 2rem 1.5rem;
    }
    .download-card h1 {
        font-size: 2rem;
    }
}