        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        .wiki-content {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        .nav-container {
            background: linear-gradient(135deg, #1e3a8a 0%, #0f766e 100%);
        }
        .section-anchor {
            scroll-margin-top: 100px;
        }
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .mobile-menu.active {
            max-height: 500px;
        }
        .wiki-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        .wiki-table th, .wiki-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .wiki-table th {
            background-color: #f2f2f2;
            font-weight: 600;
        }
        .wiki-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: none;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #1e3a8a;
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        #backToTop:hover {
            background-color: #0f766e;
            transform: translateY(-3px);
        }
        .social-share button {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            border: none;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .social-share button:hover {
            transform: scale(1.1);
        }
        .comment-item {
            border-left: 4px solid #d4af37;
            padding-left: 15px;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .section-anchor {
                scroll-margin-top: 140px;
            }
            h1 {
                font-size: 1.8rem !important;
            }
            h2 {
                font-size: 1.5rem !important;
            }
            .wiki-table {
                font-size: 0.9rem;
            }
            .wiki-table th, .wiki-table td {
                padding: 8px;
            }
        }
        button, .clickable, .nav-link, input[type="submit"] {
            min-height: 44px;
            min-width: 44px;
        }
        p, li {
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        .pirate-theme {
            border-color: #d4af37;
        }
        .update-highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid #d4af37;
            padding: 15px;
            margin: 20px 0;
        }
        .img-skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
