        :root {
            --wiki-blue: #3366cc;
            --wiki-light-blue: #eaf3ff;
            --wiki-border: #a7d7f9;
            --text-primary: #202122;
            --text-secondary: #54595d;
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --accent: #2a4b8d;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Lato', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            max-width: 100%;
            overflow-x: hidden;
        }
        .site-header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--wiki-border);
            padding: 0.75rem 1rem;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--wiki-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 0.5rem;
            font-size: 2rem;
        }
        .nav-desktop {
            display: flex;
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            padding: 0.5rem;
            border-radius: 3px;
            transition: background-color 0.2s;
            font-size: 0.95rem;
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-link:hover {
            background-color: var(--wiki-light-blue);
        }
        .nav-link.active {
            background-color: var(--wiki-blue);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--wiki-blue);
            cursor: pointer;
            min-height: 44px;
            min-width: 44px;
            align-items: center;
            justify-content: center;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        }
        .mobile-nav {
            display: none;
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--wiki-border);
            flex-direction: column;
            padding: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 1rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .content-wrapper {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                flex-direction: column;
            }
        }
        .main-content {
            flex: 1;
            min-width: 0; 
        }
        .sidebar {
            width: 300px;
            flex-shrink: 0;
        }
        @media (max-width: 1024px) {
            .sidebar {
                width: 100%;
            }
        }
        h1, h2, h3, h4 {
            color: var(--text-primary);
            font-weight: 400;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
            padding-bottom: 0.3em;
            border-bottom: 1px solid #a2a9b1;
        }
        h1 {
            font-size: 1.8rem;
            border-bottom: 1px solid var(--wiki-blue);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.5rem;
        }
        h3 {
            font-size: 1.2rem;
        }
        h4 {
            font-size: 1.1rem;
        }
        p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        .infobox {
            background-color: var(--bg-secondary);
            border: 1px solid var(--wiki-border);
            border-radius: 3px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            float: right;
            width: 300px;
            margin-left: 1.5rem;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .infobox {
                float: none;
                width: 100%;
                margin-left: 0;
            }
        }
        .infobox-title {
            background-color: var(--wiki-blue);
            color: white;
            padding: 0.5rem;
            margin: -1rem -1rem 1rem -1rem;
            text-align: center;
            font-weight: bold;
        }
        .infobox-row {
            display: flex;
            padding: 0.3rem 0;
            border-bottom: 1px solid #eaecf0;
        }
        .infobox-label {
            font-weight: bold;
            min-width: 120px;
        }
        .wikitable {
            border-collapse: collapse;
            width: 100%;
            margin: 1rem 0;
            background-color: var(--bg-primary);
            border: 1px solid #a2a9b1;
        }
        .wikitable th {
            background-color: var(--bg-secondary);
            border: 1px solid #a2a9b1;
            padding: 0.4rem 0.6rem;
            text-align: center;
            font-weight: bold;
        }
        .wikitable td {
            border: 1px solid #a2a9b1;
            padding: 0.4rem 0.6rem;
        }
        .article-image {
            max-width: 100%;
            height: auto;
            border: 1px solid #c8ccd1;
            background-color: #f8f9fa;
            padding: 0.5rem;
            margin: 1rem 0;
            display: block;
        }
        .image-container {
            text-align: center;
            margin: 1.5rem 0;
        }
        .image-caption {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.3rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem 1.2rem;
            background-color: var(--wiki-blue);
            color: white;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.95rem;
            transition: background-color 0.2s;
            min-height: 44px;
            min-width: 44px;
        }
        .btn:hover {
            background-color: var(--accent);
            color: white;
        }
        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--wiki-blue);
            color: var(--wiki-blue);
        }
        .btn-outline:hover {
            background-color: var(--wiki-light-blue);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        .form-control {
            width: 100%;
            padding: 0.7rem;
            border: 1px solid #a2a9b1;
            border-radius: 3px;
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .feature-section {
            background-color: var(--bg-secondary);
            border: 1px solid var(--wiki-border);
            border-radius: 5px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .feature-title {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: var(--wiki-blue);
        }
        .feature-title i {
            margin-right: 0.7rem;
            font-size: 1.3rem;
        }
        .tabs {
            display: flex;
            border-bottom: 1px solid #a2a9b1;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .tab {
            padding: 0.8rem 1.2rem;
            cursor: pointer;
            border: 1px solid transparent;
            border-bottom: none;
            margin-bottom: -1px;
            background: none;
            font-size: 0.95rem;
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tab.active {
            background-color: white;
            border-color: #a2a9b1;
            border-radius: 3px 3px 0 0;
            font-weight: bold;
        }
        .tab-content {
            display: none;
            padding: 1rem 0;
        }
        .tab-content.active {
            display: block;
        }
        .site-footer {
            background-color: var(--bg-secondary);
            border-top: 1px solid var(--wiki-border);
            padding: 2rem 1rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        .footer-column h4 {
            border-bottom: none;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-links-list {
            list-style: none;
        }
        .footer-links-list li {
            margin-bottom: 0.5rem;
        }
        .footer-links-list a {
            color: var(--text-secondary);
            text-decoration: none;
        }
        .footer-links-list a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #a2a9b1;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background-color: var(--wiki-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .social-share {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            min-height: 44px;
            min-width: 44px;
        }
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .reddit { background-color: #ff4500; }
        .whatsapp { background-color: #25d366; }
        .text-center { text-align: center; }
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .d-flex { display: flex; }
        .align-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .flex-wrap { flex-wrap: wrap; }
        .gap-1 { gap: 0.5rem; }
        .gap-2 { gap: 1rem; }
        .tag {
            display: inline-block;
            background-color: var(--wiki-light-blue);
            border: 1px solid var(--wiki-border);
            border-radius: 3px;
            padding: 0.2rem 0.6rem;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .update-highlight {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 5px;
            padding: 1rem;
            margin: 1.5rem 0;
        }
        .update-date {
            font-weight: bold;
            color: #856404;
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        .rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .rating input {
            display: none;
        }
        .rating label {
            cursor: pointer;
            width: 30px;
            height: 30px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24"><path fill="%23ddd" d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
            background-repeat: no-repeat;
            background-position: center;
            min-height: 44px;
            min-width: 44px;
        }
        .rating input:checked ~ label,
        .rating input:hover ~ label {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24"><path fill="%23f39c12" d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
        }
        @media (max-width: 768px) {
            .main-container {
                padding: 1rem 0.8rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .btn {
                padding: 0.6rem 1rem;
            }
            .back-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 44px;
                height: 44px;
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                flex-direction: column;
                gap: 1.5rem;
            }
            .tabs {
                flex-direction: column;
            }
            .tab {
                border-bottom: 1px solid #a2a9b1;
                border-radius: 0;
                margin-bottom: 0;
            }
            .tab.active {
                border-radius: 0;
            }
        }
