* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #f0f2f5;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.8;
    color: #1a1a1a;
    padding: 20px 16px;
}
.wiki-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 28px 35px 40px;
}
.wiki-header {
    border-bottom: 2px solid #a7d7f9;
    padding-bottom: 12px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.wiki-header h1 {
    font-size: 2.2rem;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wiki-header .lang {
    font-size: 0.85rem;
    background: #eef2f5;
    padding: 4px 16px;
    border-radius: 20px;
    color: #333;
}
.wiki-nav {
    margin: 10px 0 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    border-bottom: 1px solid #e0e8ef;
    padding-bottom: 14px;
}
.wiki-nav a {
    color: #0645ad;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.wiki-nav a:hover {
    text-decoration: underline;
    color: #0b3d8f;
}
.wiki-content h2 {
    font-family: Georgia, serif;
    font-weight: 400;
    border-bottom: 1px solid #e0e8ef;
    padding-bottom: 8px;
    margin: 32px 0 16px 0;
}
.wiki-content h3 {
    font-family: Georgia, serif;
    font-weight: 400;
    margin: 24px 0 10px 0;
    color: #1a1a1a;
}
.wiki-content p {
    margin: 14px 0;
    text-align: justify;
}
.wiki-content ul, .wiki-content ol {
    padding-left: 30px;
    margin: 12px 0;
}
.wiki-content li {
    margin: 8px 0;
}
.wiki-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.95rem;
}
.wiki-content table th {
    background: #e8edf3;
    border: 1px solid #c8d0d8;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}
.wiki-content table td {
    border: 1px solid #c8d0d8;
    padding: 8px 14px;
}
.wiki-content table tr:nth-child(even) {
    background: #f8f9fa;
}
.wiki-content .image-wrap {
    float: right;
    margin: 0 0 16px 24px;
    max-width: 300px;
    background: #f8f9fa;
    border: 1px solid #d0d8e0;
    padding: 8px;
    border-radius: 4px;
}
.wiki-content .image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.wiki-content .image-wrap .caption {
    font-size: 0.8rem;
    color: #555;
    text-align: center;
    margin-top: 6px;
}
.wiki-content .image-wrap-left {
    float: left;
    margin: 0 24px 16px 0;
    max-width: 260px;
    background: #f8f9fa;
    border: 1px solid #d0d8e0;
    padding: 8px;
    border-radius: 4px;
}
.wiki-content .image-wrap-left img {
    width: 100%;
    height: auto;
    display: block;
}
.wiki-content .image-wrap-left .caption {
    font-size: 0.8rem;
    color: #555;
    text-align: center;
    margin-top: 6px;
}
.wiki-content .clearfix {
    clear: both;
}
.wiki-content .fact-box {
    background: #f0f6fa;
    border-left: 4px solid #0645ad;
    padding: 14px 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}
.wiki-content .fact-box strong {
    color: #0645ad;
}
.wiki-content .quote {
    font-style: italic;
    color: #444;
    font-size: 1.05rem;
    padding: 12px 24px;
    border-left: 4px solid #888;
    background: #f8f9fa;
    margin: 18px 0;
}
.ad-box {
    margin: 28px 0 18px 0;
    padding: 12px 0;
    border-top: 1px dashed #d0d8e0;
    border-bottom: 1px dashed #d0d8e0;
    background: #fafbfc;
    text-align: center;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ad-box small {
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.ad-box ins {
    display: block;
    margin: 0 auto;
}
.footer {
    margin-top: 40px;
    border-top: 1px solid #e0e8ef;
    padding-top: 18px;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
}
.footer a {
    color: #0645ad;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .wiki-wrapper { padding: 18px 14px; }
    .wiki-header h1 { font-size: 1.6rem; }
    .wiki-content .image-wrap,
    .wiki-content .image-wrap-left {
        float: none;
        margin: 16px auto;
        max-width: 100%;
    }
    .wiki-nav { gap: 8px 12px; }
    .wiki-nav a { font-size: 0.85rem; }
}
