        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #202122;
            background-color: #f8f9fa;
            margin: 0;
            padding: 0;
        }
        .wiki-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border: 1px solid #a2a9b1;
            border-radius: 2px;
        }
        .wiki-header {
            background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
            color: white;
            padding: 1rem 0;
        }
        .wiki-content {
            padding: 2rem;
        }
        .wiki-nav a {
            color: #3366cc;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: background-color 0.2s;
        }
        .wiki-nav a:hover {
            background-color: #f6f6f6;
            text-decoration: underline;
        }
        .info-box {
            background: #f8f9fa;
            border: 1px solid #a2a9b1;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 4px;
            float: right;
            width: 300px;
            margin-left: 1rem;
        }
        .section-anchor {
            display: block;
            position: relative;
            top: -80px;
            visibility: hidden;
        }
        @media (max-width: 768px) {
            .info-box {
                float: none;
                width: 100%;
                margin-left: 0;
            }
            .wiki-content {
                padding: 1rem;
            }
            .hamburger-menu {
                display: block;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav.active {
                display: block;
            }
        }
        @media (min-width: 769px) {
            .hamburger-menu {
                display: none;
            }
            .mobile-nav {
                display: none;
            }
        }
        .clickable {
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .rating-stars {
            color: #f59e0b;
            font-size: 1.5rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #1d4ed8;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            z-index: 1000;
        }
        .social-share button {
            margin: 0 0.25rem;
        }
        .comment-item {
            border-bottom: 1px solid #e5e7eb;
            padding: 1rem 0;
        }
        .wiki-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
        }
        .wiki-table th, .wiki-table td {
            border: 1px solid #a2a9b1;
            padding: 0.5rem;
            text-align: left;
        }
        .wiki-table th {
            background-color: #f8f9fa;
            font-weight: bold;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .lazy-load {
            opacity: 0;
            transition: opacity 0.3s;
        }
        .lazy-load.loaded {
            opacity: 1;
        }
