/* 基础样式 - 优化版 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 主色调调整为适合深色背景 */
    --primary-color: #9DB68C;
    --secondary-color: #C8BAA4;
    --accent-color: #B68B6B;
    
    /* 深色主题颜色方案 */
    --light-color: #2a2a2a;
    --dark-color: #f5f5f5;
    --text-color: #e0e0e0;
    --text-light: #aaaaaa;
    
    /* 深色主题阴影 - 优化 */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.7);
    
    /* 优化过渡效果 */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    
    --border-radius: 16px;
    --container-width: 1200px;
}

body {
    font-family: 'Roboto', 'Noto Serif SC', sans-serif;
    color: var(--text-color);
    background-color: #171717;
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 深色毛玻璃导航栏样式 - 优化版 ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(23, 23, 23, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    transform: translateZ(0);
}

/* 滚动时的导航栏效果 */
.navbar.scrolled {
    background-color: rgba(23, 23, 23, 0.95);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 12px 0;
}

/* 导航容器 */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    transform: translateZ(0);
}

/* Logo样式 - 优化 */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 2rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #171717;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(157, 182, 140, 0.3);
}

.logo a:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(157, 182, 140, 0.5);
}

/* 导航菜单样式 - 优化 */
.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--dark-color);
    padding: 12px 0;
    position: relative;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

/* 导航链接下划线效果 - 优化 */
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: var(--transition);
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* 汉堡菜单按钮 - 优化 */
.hamburger {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    transition: var(--transition);
}

.hamburger:hover .bar {
    background-color: var(--primary-color);
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition-smooth);
    position: absolute;
    transform-origin: center;
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.bar:nth-child(3) {
    bottom: 0;
}

.hamburger.active .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* 主内容区域 */
.main-content {
    margin-top: 100px;
}

/* 页面标题区域 - 优化 */
.page-header {
    text-align: center;
    padding: 100px 20px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
                rgba(157, 182, 140, 0.1) 0%, 
                transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.page-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--text-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* 在style.css的适当位置添加 */
.title-image-container {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.title-image-container img {
    pointer-events: none;
}

.title-image-container:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 182, 140, 0.3);
}

/* Wiki页面样式 - 优化 */
.wiki-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px 100px;
}

.wiki-box-container {
    background: linear-gradient(135deg, 
                rgba(30, 30, 30, 0.9) 0%, 
                rgba(40, 40, 40, 0.8) 100%);
    border-radius: var(--border-radius);
    padding: 0;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.wiki-box-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(157, 182, 140, 0.05) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.wiki-box-container:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: rgba(157, 182, 140, 0.2);
}

.wiki-box-container:hover::before {
    opacity: 1;
}

/* Wiki页面图片容器 - 占3/5 */
.wiki-image-container {
    flex: 3;
    overflow: hidden;
    position: relative;
}

/* Wiki页面内容容器 - 占2/5 */
.wiki-content-container {
    flex: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.wiki-image-placeholder {
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, 
                rgba(157, 182, 140, 0.9) 0%, 
                rgba(200, 186, 164, 0.7) 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wiki-box-container:hover .wiki-image-placeholder {
    transform: scale(1.05);
}

.wiki-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
}

.wiki-image-overlay h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.wiki-image-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 90%;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wiki-content-container h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(157, 182, 140, 0.3);
    position: relative;
}

.wiki-content-container h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

.wiki-content-container p {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.content-details {
    background: linear-gradient(135deg, 
                rgba(40, 40, 40, 0.6) 0%, 
                rgba(50, 50, 50, 0.4) 100%);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.content-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-details h3::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.content-details ul {
    padding-left: 20px;
}

.content-details li {
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.8;
    padding-left: 5px;
    position: relative;
}

.content-details li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -15px;
    top: 0;
    font-size: 1.2rem;
}

.content-details strong {
    color: var(--dark-color);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 页脚样式 - 优化 */
.footer {
    background: linear-gradient(to bottom, 
                #1a1a1a 0%, 
                #171717 100%);
    padding: 80px 0 40px;
    margin-top: 100px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
                transparent 0%, 
                var(--primary-color) 50%, 
                transparent 100%);
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-logo:hover {
    transform: translateY(-5px);
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-weight: 500;
    color: var(--dark-color);
    padding: 8px 0;
    position: relative;
    font-size: 1.1rem;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: var(--transition);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social {
    display: flex;
    gap: 25px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, 
                rgba(30, 30, 30, 0.8) 0%, 
                rgba(40, 40, 40, 0.6) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.4rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover {
    background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                var(--accent-color) 100%);
    color: #171717;
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(157, 182, 140, 0.4);
    border-color: transparent;
}

.footer-copyright {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 30px;
    opacity: 0.8;
}

.footer-sub {
    font-style: italic;
    margin-top: 10px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* 响应式设计 - 优化 */
@media screen and (max-width: 1200px) {
    .page-title {
        font-size: 3rem;
    }
    
    .wiki-content-container h2 {
        font-size: 2.2rem;
    }
    
    .wiki-image-placeholder {
        min-height: 300px;
    }
}

@media screen and (max-width: 992px) {
    .nav-menu {
        gap: 30px;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .wiki-box-container {
        flex-direction: column;
    }
    
    .wiki-content-container {
        padding: 35px;
    }
    
    .wiki-image-placeholder {
        min-height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: rgba(23, 23, 23, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        width: 100%;
        text-align: center;
        transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        padding: 40px 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .wiki-content-container {
        padding: 30px;
    }
    
    .wiki-content-container h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .wiki-content-container {
        padding: 25px;
    }
    
    .wiki-content-container h2 {
        font-size: 1.8rem;
    }
    
    .wiki-image-overlay h3 {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .footer-social {
        gap: 20px;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 400px) {
    .page-title {
        font-size: 2rem;
    }
    
    .wiki-content-container {
        padding: 20px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(23, 23, 23, 0.8);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, 
                var(--primary-color) 0%, 
                var(--accent-color) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
                var(--accent-color) 0%, 
                var(--primary-color) 100%);
}

/* 选中文字样式 */
::selection {
    background: rgba(157, 182, 140, 0.3);
    color: var(--dark-color);
}

::-moz-selection {
    background: rgba(157, 182, 140, 0.3);
    color: var(--dark-color);
}

/* 聚焦样式 */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* 视差背景占位符 */
.parallax-placeholder {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #171717 0%, #1a1a1a 100%);
}

/* 加载状态占位符 */
.skeleton {
    background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.05) 25%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}
/* ===== SVG标题相关样式 ===== */
/* SVG标题容器 - 高级动画 */
.title-svg-container {
    width: 100%;
    max-width: 879px;
    height: auto;
    margin: 0 auto 2.5rem;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

.title-svg {
    width: 100%;
    height: auto;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* SVG动画路径样式 */
.svg-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLogo 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.8s forwards;
}

.svg-fill {
    opacity: 0;
    animation: fillLogo 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s forwards;
}

/* SVG粒子效果 */
.svg-particle {
    opacity: 0;
    transform-origin: center;
    animation: particleFloat 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.svg-shimmer {
    opacity: 0;
    animation: shimmerEffect 4s ease-in-out 2s infinite;
}

.title-svg-container:hover .title-svg {
    transform: scale(1.03);
    filter: drop-shadow(0 15px 35px rgba(157, 182, 140, 0.4));
}

/* 视差英雄区域相关 */
.parallax-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
    will-change: transform;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(20, 30, 20, 0.85) 0%, 
        rgba(30, 40, 30, 0.6) 50%,
        rgba(40, 50, 40, 0.3) 100%);
    z-index: -1;
    opacity: 0.9;
}

.parallax-content {
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpEnhanced 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
}

.parallax-subtitle {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.parallax-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, rgba(90, 130, 90, 0.9) 0%, rgba(110, 150, 110, 0.9) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.parallax-cta:hover {
    background: linear-gradient(135deg, rgba(110, 150, 110, 0.95) 0%, rgba(130, 170, 130, 0.95) 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceEnhanced 2.5s infinite cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

/* 浮动茶叶元素 */
.floating-tea-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(157, 182, 140, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* Wiki内容链接 */
.wiki-box-link {
    align-self: flex-start;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    position: relative;
    font-size: 1rem;
    transition: var(--transition);
}

.wiki-box-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: var(--transition);
}

.wiki-box-link:hover {
    gap: 15px;
}

.wiki-box-link:hover::after {
    width: 100%;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .title-svg-container {
        max-width: 700px;
    }
    
    .parallax-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .parallax-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .title-svg-container {
        max-width: 500px;
        margin-bottom: 2rem;
    }
    
    .parallax-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .title-svg-container {
        max-width: 350px;
    }
    
    .parallax-subtitle {
        font-size: 1rem;
    }
    
    .parallax-cta {
        padding: 0.9rem 2rem;
    }
    
    .scroll-indicator i {
        font-size: 1.5rem;
    }
}
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* 确保特色部分完全居中 */
#content .section-header {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto 3rem !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 特色标题 - 黄绿渐变 */
.section-title {
    background: linear-gradient(90deg, 
                #FFD700 0%,       /* 金黄色 */
                #9ACD32 25%,      /* 黄绿色 */
                #9DB68C 50%,      /* 茶叶绿 */
                #C8BAA4 75%,      /* 米色 */
                #FFD700 100%);    /* 金黄色 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease-in-out infinite alternate;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* 添加发光效果 */
.section-title::after {
    content: '我们的特色';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(255, 215, 0, 0.2) 0%,
                rgba(154, 205, 50, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
    z-index: -1;
    opacity: 0.7;
}

/* 渐变动画 */
@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 100% center;
    }
}

#content .section-title,
#content .section-subtitle {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

/* ===== 鸣谢卡片图片设置 ===== */

/* 第一个卡片：捐赠者 */
.thanks-card:nth-child(1) .thanks-card-image {
    background-image: url('../assets/img/zz.jpg'); /* 捐赠相关图片 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px; /* 限制高度 */
    position: relative;
}

/* 第二个卡片：特别鸣谢 */
.thanks-card:nth-child(2) .thanks-card-image {
    background-image: url('../assets/img/mx.jpg'); /* 帮助者相关图片 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px; /* 限制高度 */
    position: relative;
}

/* 第三个卡片：特别感谢 */
.thanks-card:nth-child(3) .thanks-card-image {
    background-image: url('../assets/img/gx.jpg'); /* 社区相关图片 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px; /* 限制高度 */
    position: relative;
}

/* 图片悬停效果 */
.thanks-card:hover .thanks-card-image {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* 确保图片显示在渐变层之下 */
.thanks-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.2) 0%, 
                rgba(0, 0, 0, 0.4) 100%);
}

/* ===== Wiki组件图片背景 - 新增 ===== */

/* 第一个Wiki组件：组织与聚落设定 */
.wiki-components-container .wiki-component:nth-child(1) .wiki-component__image {
    background-image: url('../assets/img/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 第二个Wiki组件：非凡物品与炼金术 */
.wiki-components-container .wiki-component:nth-child(2) .wiki-component__image {
    background-image: url('../assets/img/2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 第三个Wiki组件：服务器特性 */
.wiki-components-container .wiki-component:nth-child(3) .wiki-component__image {
    background-image: url('../assets/img/3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 增强图片显示效果 */
.wiki-component__image {
    position: relative;
    overflow: hidden;
}

/* 调整覆盖层透明度 */
.wiki-component__image-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    transition: background-color 0.3s ease;
}

.wiki-component:hover .wiki-component__image-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* 图片悬停放大效果 */
.wiki-component__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.wiki-component:hover .wiki-component__image::before {
    transform: scale(1.08);
}