/* 内容区域 */
.content-section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Wiki 组件容器 */
.wiki-components-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Wiki 组件基础 */
.wiki-component {
    /* 布局 */
    display: flex;
    min-height: 400px;
    
    /* 盒模型 */
    border-radius: 20px;
    overflow: hidden;
    
    /* 视觉 */
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* 动画 */
    transition: all 0.5s var(--ease-out-back);
}

.wiki-component:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.wiki-component__image {
    /* 布局 */
    flex: 0 0 40%;
    position: relative;
    
    /* 视觉 */
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.wiki-component__image-overlay {
    /* 布局 */
    position: absolute;
    top: 0;
    left: 0;
    
    /* 盒模型 */
    width: 100%;
    height: 100%;
    padding: var(--spacing-lg);
    
    /* 视觉 */
    background: rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.wiki-component__icon {
    /* 布局 */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* 盒模型 */
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    
    /* 视觉 */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    
    /* 动画 */
    transition: all 0.4s var(--ease-out-back);
    overflow: hidden;
}

.wiki-component:hover .wiki-component__icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.svg-icon-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wiki-component:hover .svg-icon-decoration {
    opacity: 1;
}

.icon-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Wiki 内容区域 */
.wiki-component__content {
    /* 布局 */
    flex: 1;
    padding: var(--spacing-lg);
    
    /* 视觉 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wiki-component__content h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.wiki-component__content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.wiki-component__details {
    margin: var(--spacing-md) 0;
}

.wiki-component__details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.wiki-component__details ul {
    list-style: none;
    padding-left: 0;
}

.wiki-component__details li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.wiki-component__details li:before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

/* 链接 */
.wiki-component__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: rgba(157, 182, 140, 0.1);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.wiki-component__link:hover {
    background: rgba(157, 182, 140, 0.2);
    transform: translateX(5px);
}

/* 特色区域 */
.feature-section {
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, rgba(157, 182, 140, 0.1) 0%, rgba(200, 186, 164, 0.1) 100%);
    border-radius: 30px;
    margin: var(--spacing-xl) auto;
    max-width: 1200px;
    gap: var(--spacing-lg);
}

.feature-section__content {
    flex: 1;
    padding: var(--spacing-lg);
}

.feature-section__title {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.feature-section__text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.feature-section__actions {
    display: flex;
    gap: var(--spacing-sm);
}

.feature-section__image {
    flex: 0 0 40%;
    height: 300px;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 20px;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float-random 15s infinite ease-in-out;
}

.floating-element.el1 {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 20%;
}

.floating-element.el2 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 60%;
    animation-delay: 2s;
}

.floating-element.el3 {
    width: 30px;
    height: 30px;
    top: 70%;
    left: 30%;
    animation-delay: 4s;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .wiki-component {
        flex-direction: column;
        min-height: auto;
    }
    
    .wiki-component__image {
        flex: 0 0 250px;
    }
    
    .feature-section {
        flex-direction: column;
    }
    
    .feature-section__image {
        flex: 0 0 250px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .wiki-component__icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .feature-section__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .wiki-component__icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .feature-section__actions {
        flex-direction: column;
    }
    
}