* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ff9500;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #ff6b35, #f7931e);
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* 添加页面加载动画 */
.content-section-t6v {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.content-section-t6v:nth-child(2) { animation-delay: 0.1s; }
.content-section-t6v:nth-child(3) { animation-delay: 0.2s; }
.content-section-t6v:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 添加滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* 选择文本的样式 */
::selection {
    background: var(--accent-color);
    color: var(--text-light);
}

/* 改进的焦点样式 */
a:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* 改进链接的悬停效果 */
.guide-link-z4m,
.news-link-u2n {
    position: relative;
    overflow: hidden;
}

.guide-link-z4m::after,
.news-link-u2n::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-light);
    transition: width 0.3s ease;
}

.guide-link-z4m:hover::after,
.news-link-u2n:hover::after {
    width: 100%;
}

.container-fluid-k9p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-nav-x7m {
    background: var(--gradient-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-medium);
}

.header-nav-x7m .container-fluid-k9p {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand-w2q {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon-t5r {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.nav-brand-w2q h1 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.desktop-nav-l8n {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link-m4s {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-m4s:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.mobile-menu-btn-p6v {
    display: none;
    background: var(--gradient-primary);
    border: none;
    color: var(--text-light);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn-p6v:hover {
    transform: scale(1.1);
}

.mobile-nav-q3z {
    display: none;
    background: var(--darker-bg);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 15px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--accent-color);
}

.mobile-nav-q3z.active-m7k {
    display: block;
    animation: slideDown-n4p 0.3s ease;
}

.mobile-nav-link-r8t {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    font-size: 1rem;
}

.mobile-nav-link-r8t:hover,
.mobile-nav-link-r8t:active {
    background: var(--gradient-primary);
    border-left-color: var(--accent-color);
    transform: translateX(8px);
    color: var(--text-light);
}

@keyframes slideDown-n4p {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content-d7h {
    padding: 40px 0;
}

.game-header-section-v5k {
    background: var(--gradient-dark);
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.game-header-section-v5k::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="phoenix" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,107,53,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23phoenix)"/></svg>');
    pointer-events: none;
}

.game-info-card-b9m {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
    padding: 30px;
    background: rgba(26, 26, 46, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 149, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-icon-area-n2x {
    text-align: center;
}

.game-icon-large-c4w {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.game-icon-large-c4w:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.game-details-f8q {
    color: var(--text-light);
}

.game-title-z6y {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.version-tag-a3s {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-tags-h7p {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag-item-j9r {
    background: rgba(255, 107, 53, 0.3);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--accent-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.game-desc-u4t {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.download-area-s5l {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-btn-primary-e8w {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-align: center;
    max-width: 320px;
    position: relative;
    overflow: hidden;
}

.download-btn-primary-e8w::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-btn-primary-e8w:hover::before {
    left: 100%;
}

.download-btn-primary-e8w:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #ff8c5a, #ffb347);
}

.download-info-x2p {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-section-t6v {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    padding: 50px 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-light);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-article-w8x {
    max-width: 800px;
    margin: 0 auto;
}

.section-title-p4r {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title-p4r::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.article-content-y7s {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 100%;
}

.article-content-y7s p {
    margin-bottom: 24px;
    text-align: justify;
    text-indent: 2em;
}

.article-content-y7s p:first-of-type {
    text-indent: 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-gray);
}

.sub-title-n8k {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 35px 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
    position: relative;
}

.sub-title-n8k::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.image-showcase-l5n {
    margin: 30px 0;
    text-align: center;
}

.article-image-q9z {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    transition: all 0.3s ease;
}

.article-image-q9z:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.guide-list-container-h6j,
.news-list-container-r7k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.guide-item-card-f3q,
.news-item-card-s8p {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-item-card-f3q::before,
.news-item-card-s8p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.guide-item-card-f3q:hover,
.news-item-card-s8p:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.guide-item-card-f3q h4,
.news-item-card-s8p h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.guide-item-card-f3q p,
.news-item-card-s8p p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.guide-link-z4m,
.news-link-u2n {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.guide-link-z4m:hover,
.news-link-u2n:hover {
    transform: translateX(5px);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.system-requirements-v9w {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 0;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.requirements-grid-j5x {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.req-card-android-l8q,
.req-card-pc-m3y {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    position: relative;
    border: 1px solid rgba(255, 149, 0, 0.2);
}

.req-card-android-l8q::before {
    content: '📱';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.req-card-pc-m3y::before {
    content: '💻';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.req-card-android-l8q h4,
.req-card-pc-m3y h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.req-card-android-l8q ul,
.req-card-pc-m3y ul {
    list-style: none;
}

.req-card-android-l8q li,
.req-card-pc-m3y li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
    transition: all 0.2s ease;
}

.req-card-android-l8q li:hover,
.req-card-pc-m3y li:hover {
    padding-left: 30px;
    color: var(--accent-color);
}

.req-card-android-l8q li::before,
.req-card-pc-m3y li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-section-k4z {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 30px 0;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.footer-content-n7v p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* 友情链接样式 - 科技蓝色主题 */
.friend-links-section-x8m4 {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.friend-links-title-p2k9 {
    color: #00d4ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.friend-links-container-v5n7 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.friend-link-w3q8 {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 212, 255, 0.6);
    border-radius: 25px;
    color: #00d4ff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
}

.friend-link-w3q8::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.friend-link-w3q8:hover {
    color: #00d4ff;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.friend-link-w3q8:hover::before {
    left: 100%;
}


@media (max-width: 768px) {
    .container-fluid-k9p {
        padding: 0 15px;
    }

    .desktop-nav-l8n {
        display: none;
    }

    .mobile-menu-btn-p6v {
        display: block;
    }

    .nav-brand-w2q h1 {
        font-size: 1.4rem;
    }

    .brand-icon-t5r {
        width: 40px;
        height: 40px;
    }

    .game-info-card-b9m {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        padding: 25px 20px;
        align-items: center;
        background: rgba(26, 26, 46, 0.95);
    }

    .game-icon-large-c4w {
        width: 100px;
        height: 100px;
    }

    .game-title-z6y {
        font-size: 2rem;
    }

    .version-tag-a3s {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
    }

    .game-tags-h7p {
        justify-content: center;
    }

    .download-btn-primary-e8w {
        width: 100%;
        max-width: none;
        justify-content: center;
    }

    .download-info-x2p {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-title-p4r {
        font-size: 1.8rem;
    }

    .article-content-y7s {
        font-size: 1rem;
    }

    .article-content-y7s p {
        text-indent: 1.5em;
    }

    .sub-title-n8k {
        font-size: 1.3rem;
        margin: 25px 0 15px 0;
        padding-left: 12px;
    }

    .guide-list-container-h6j,
    .news-list-container-r7k {
        grid-template-columns: 1fr;
    }

    .requirements-grid-j5x {
        grid-template-columns: 1fr;
    }

    .main-content-d7h {
        padding: 20px 0;
    }

    .content-section-t6v {
        padding: 30px 0;
        margin-bottom: 20px;
    }

    .game-header-section-v5k {
        padding: 40px 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .nav-brand-w2q {
        gap: 10px;
    }

    .nav-brand-w2q h1 {
        font-size: 1.2rem;
    }

    .brand-icon-t5r {
        width: 35px;
        height: 35px;
    }

    .game-title-z6y {
        font-size: 1.6rem;
    }

    .section-title-p4r {
        font-size: 1.5rem;
    }



    .container-fluid-k9p {
        padding: 0 10px;
    }

    .game-info-card-b9m {
        padding: 20px 15px;
        background: rgba(26, 26, 46, 0.98);
    }

    .article-content-y7s p {
        text-indent: 1em;
        margin-bottom: 20px;
    }

    .sub-title-n8k {
        font-size: 1.2rem;
        padding-left: 10px;
        margin: 20px 0 12px 0;
    }
} 

/* JSON 资讯模板与受管下载确认层，沿用原站的暖色和深色对比。 */
.brand-heading-fhz1 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-brand-w2q .brand-heading-fhz1 {
    color: var(--text-light);
}

.article-date-fhz1 {
    margin: -12px 0 28px;
    color: var(--text-gray);
    font-size: 0.95rem;
    text-align: center;
}

.article-content-y7s {
    overflow-wrap: anywhere;
}

.article-content-y7s .content-paragraph-fhz1 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.9;
    text-indent: 0;
    white-space: pre-wrap;
}

.article-navigation-fhz1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 42px;
    text-indent: 0;
}

.article-navigation-fhz1 a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
}

.download-modal-fhz1 {
    position: fixed;
    z-index: 1200;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(16, 20, 35, 0.72);
}

.download-modal-fhz1.is-open-fhz1 {
    display: flex;
    animation: downloadModalFadeFhz1 0.2s ease;
}

.download-modal-panel-fhz1 {
    position: relative;
    width: min(100%, 440px);
    padding: 34px 32px 30px;
    border: 1px solid rgba(255, 149, 0, 0.45);
    border-radius: 8px;
    background: var(--darker-bg);
    color: var(--text-light);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
    text-align: center;
}

.download-modal-icon-fhz1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.download-modal-panel-fhz1 h2 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.download-modal-panel-fhz1 p {
    color: rgba(255, 255, 255, 0.82);
}

.download-modal-actions-fhz1 {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.download-modal-actions-fhz1 button,
.download-modal-close-fhz1 {
    cursor: pointer;
    font-family: inherit;
}

.download-modal-cancel-fhz1,
.download-modal-confirm-fhz1 {
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    font-weight: 600;
}

.download-modal-cancel-fhz1 {
    background: rgba(255, 255, 255, 0.16);
    color: var(--text-light);
}

.download-modal-confirm-fhz1 {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.download-modal-cancel-fhz1:hover,
.download-modal-confirm-fhz1:hover {
    transform: translateY(-1px);
}

.download-modal-close-fhz1 {
    position: absolute;
    top: 9px;
    right: 11px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.7rem;
    line-height: 1;
}

.download-modal-close-fhz1:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
}

@keyframes downloadModalFadeFhz1 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .brand-heading-fhz1 {
        font-size: 1.4rem;
    }

    .article-content-y7s .content-paragraph-fhz1 {
        font-size: 1rem;
        line-height: 1.85;
    }
}

@media (max-width: 480px) {
    .download-modal-panel-fhz1 {
        padding: 30px 20px 24px;
    }

    .download-modal-actions-fhz1 {
        flex-direction: column-reverse;
    }

    .download-modal-cancel-fhz1,
    .download-modal-confirm-fhz1 {
        width: 100%;
    }
}
