/* 语言切换器样式 */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

.language-link {
    display: inline-block;
    padding: 6px 8px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.language-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 静态页面样式 */
.static-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.6;
}

.static-page h1 {
    color: var(--primary-color, #00ff00);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color, #00ff00);
    padding-bottom: 10px;
}

.static-page h2 {
    color: var(--text-color, #ffffff);
    margin-top: 30px;
    margin-bottom: 15px;
}

.static-page h3 {
    color: var(--text-color, #ffffff);
    margin-top: 20px;
    margin-bottom: 10px;
}

.static-page p {
    margin-bottom: 15px;
    color: var(--text-secondary, #cccccc);
}

.static-page ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.static-page li {
    margin-bottom: 8px;
    color: var(--text-secondary, #cccccc);
}

.static-page a {
    color: var(--primary-color, #00ff00);
    text-decoration: none;
}

.static-page a:hover {
    text-decoration: underline;
}

/* 更新日志样式 */
.changelog-entry {
    margin-bottom: 40px;
    border-left: 3px solid var(--primary-color, #00ff00);
    padding-left: 20px;
}

.changelog-entry h2 {
    color: var(--primary-color, #00ff00);
    margin-bottom: 15px;
}

.changelog-entry h3 {
    color: var(--text-color, #ffffff);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 8px;
    }
    
    .language-link {
        padding: 4px 6px;
        font-size: 14px;
    }
    
    .static-page {
        padding: 20px 15px;
    }
}