        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #202122;
            background-color: #f6f6f6;
            max-width: 100%;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 0.6em;
            border-bottom: 1px solid #a2a9b1;
            padding-bottom: 0.25em;
        }
        h1 {
            font-size: 1.8rem;
            border-bottom: 2px solid #a2a9b1;
        }
        h2 {
            font-size: 1.5rem;
        }
        h3 {
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 1em;
        }
        a {
            color: #3366cc;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        ul, ol {
            margin-left: 1.5em;
            margin-bottom: 1em;
        }
        li {
            margin-bottom: 0.5em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        header {
            background-color: #f8f9fa;
            border-bottom: 1px solid #a2a9b1;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #36c;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            font-size: 2rem;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            color: #202122;
            padding: 0.5rem;
            border-radius: 2px;
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-links a:hover {
            background-color: #e6f2ff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #36c;
            min-height: 44px;
            min-width: 44px;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
            background-color: white;
        }
        .content {
            padding-right: 1rem;
        }
        aside {
            border-left: 1px solid #a2a9b1;
            padding-left: 1.5rem;
        }
        .infobox {
            background-color: #f8f9fa;
            border: 1px solid #a2a9b1;
            padding: 1rem;
            margin-bottom: 2rem;
            border-radius: 2px;
            font-size: 0.9rem;
        }
        .infobox h3 {
            border-bottom: none;
            text-align: center;
            font-size: 1.2rem;
        }
        .infobox-row {
            display: flex;
            padding: 0.3rem 0;
        }
        .infobox-label {
            font-weight: bold;
            min-width: 120px;
        }
        .infobox-data {
            flex: 1;
        }
        .image-container {
            text-align: center;
            margin: 1.5rem 0;
        }
        .wiki-image {
            max-width: 100%;
            height: auto;
            border: 1px solid #a2a9b1;
            border-radius: 2px;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #54595d;
            margin-top: 0.5rem;
        }
        .wiki-table {
            border-collapse: collapse;
            width: 100%;
            margin: 1.5rem 0;
            background-color: #f8f9fa;
        }
        .wiki-table th, .wiki-table td {
            border: 1px solid #a2a9b1;
            padding: 0.6rem 0.8rem;
            text-align: left;
        }
        .wiki-table th {
            background-color: #eaecf0;
            font-weight: bold;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #a2a9b1;
            border-radius: 2px;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            background-color: #3366cc;
            color: white;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            font-size: 1rem;
            min-height: 44px;
            min-width: 44px;
            transition: background-color 0.2s;
        }
        .btn:hover {
            background-color: #2a4b8d;
            text-decoration: none;
        }
        .btn-secondary {
            background-color: #72777d;
        }
        .btn-secondary:hover {
            background-color: #54595d;
        }
        .btn-success {
            background-color: #00af89;
        }
        .btn-success:hover {
            background-color: #008c6d;
        }
        .btn i {
            margin-right: 0.5rem;
        }
        .rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .rating input {
            display: none;
        }
        .rating label {
            cursor: pointer;
            font-size: 1.5rem;
            color: #ccc;
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #ffc107;
        }
        .social-share {
            display: flex;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
        }
        .social-fb { background-color: #3b5998; }
        .social-twitter { background-color: #1da1f2; }
        .social-reddit { background-color: #ff4500; }
        .social-whatsapp { background-color: #25d366; }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 99;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .toc {
            background-color: #f8f9fa;
            border: 1px solid #a2a9b1;
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
            border-radius: 2px;
            font-size: 0.95rem;
        }
        .toc-title {
            font-weight: bold;
            margin-bottom: 0.5rem;
            border-bottom: none;
        }
        .toc ul {
            list-style: none;
            margin-left: 0;
        }
        .toc li {
            margin-bottom: 0.3rem;
        }
        .update-log {
            background-color: #f0f8ff;
            border-left: 4px solid #36c;
            padding: 1rem;
            margin: 1.5rem 0;
        }
        .faq-item {
            border-bottom: 1px solid #a2a9b1;
            padding: 1rem 0;
        }
        .faq-question {
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
            margin-top: 1rem;
        }
        footer {
            background-color: #f8f9fa;
            border-top: 1px solid #a2a9b1;
            padding: 2rem 0;
            margin-top: 3rem;
            font-size: 0.9rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h4 {
            border-bottom: none;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .friend-links {
            list-style: none;
        }
        .friend-links li {
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #a2a9b1;
            color: #54595d;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .highlight { background-color: #fff8e1; padding: 0.2rem 0.4rem; border-radius: 2px; }
        .badge {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            background-color: #36c;
            color: white;
            border-radius: 2px;
            font-size: 0.8rem;
            margin-left: 0.5rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                border-left: none;
                border-top: 1px solid #a2a9b1;
                padding-left: 0;
                padding-top: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                border-top: 1px solid #a2a9b1;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .back-to-top {
                bottom: 1rem;
                right: 1rem;
            }
            html {
                font-size: 15px;
            }
        }
        @media (max-width: 480px) {
            .social-share {
                flex-wrap: wrap;
            }
            .btn {
                width: 100%;
                margin-bottom: 0.5rem;
            }
            .rating label {
                font-size: 1.2rem;
            }
        }
