        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-blue: #1e88e5;
            --secondary-blue: #1565c0;
            --accent-orange: #ff9800;
            --light-bg: #f5f7fa;
            --dark-text: #2c3e50;
            --medium-gray: #7f8c8d;
            --border-color: #e0e0e0;
            --wiki-blue: #3366cc;
            --shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: var(--light-bg);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: white;
            padding: 1.5rem 0;
            border-bottom: 3px solid var(--wiki-blue);
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--wiki-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: var(--secondary-blue);
        }
        .logo-bubble {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
            border-radius: 50%;
            display: inline-block;
        }
        nav {
            position: relative;
        }
        .nav-menu {
            display: flex;
            gap: 1.8rem;
            list-style: none;
        }
        .nav-menu li a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .nav-menu li a:hover {
            color: var(--primary-blue);
        }
        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-blue);
            transition: width 0.3s;
        }
        .nav-menu li a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--dark-text);
            cursor: pointer;
            padding: 5px;
            min-width: 44px;
            min-height: 44px;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .content-area {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        aside {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 20px;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--wiki-blue);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h2 {
            font-size: 1.8rem;
            color: var(--dark-text);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--secondary-blue);
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--medium-gray);
            margin: 1rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        strong {
            color: var(--secondary-blue);
            font-weight: 700;
        }
        ul, ol {
            margin: 1rem 0 1rem 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        a {
            color: var(--wiki-blue);
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
            color: var(--secondary-blue);
        }
        .game-info-box {
            background: #f8f9fa;
            border: 1px solid #a2a9b1;
            border-radius: 3px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            float: right;
            width: 300px;
            margin-left: 1.5rem;
        }
        .game-info-box h3 {
            margin-top: 0;
            border-bottom: 1px solid #a2a9b1;
            padding-bottom: 0.5rem;
        }
        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #e0e0e0;
        }
        .article-image {
            width: 100%;
            height: auto;
            border-radius: 6px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--medium-gray);
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
        }
        .search-box, .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 6px;
            margin: 2rem 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
            font-family: inherit;
        }
        button {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            min-height: 44px;
            min-width: 44px;
        }
        button:hover {
            background: var(--secondary-blue);
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover, .star.active {
            color: var(--accent-orange);
        }
        .update-log {
            background: #e3f2fd;
            border-left: 4px solid var(--primary-blue);
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .update-item {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #90caf9;
        }
        .update-date {
            color: var(--secondary-blue);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        .faq-item {
            margin-bottom: 1.2rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
        }
        .faq-question {
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
        }
        .social-share {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        .social-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.2rem;
            border-radius: 4px;
            font-weight: 600;
            min-height: 44px;
            min-width: 44px;
        }
        .facebook { background: #3b5998; }
        .twitter { background: #1da1f2; }
        .whatsapp { background: #25d366; }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-blue);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1000;
        }
        .back-to-top.visible {
            opacity: 1;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
            border-radius: 8px 8px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            border-bottom: 2px solid var(--primary-blue);
            padding-bottom: 0.5rem;
            margin-bottom: 1.2rem;
        }
        .friend-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 0.8rem;
        }
        .friend-links a {
            color: #ddd;
            display: block;
            padding: 0.3rem 0;
        }
        .friend-links a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #3a506b;
            color: #95a5a6;
        }
        .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #f0f7ff;
            border-radius: 6px;
            margin: 2rem 0;
        }
        .author-avatar {
            width: 80px;
            height: 80px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 700;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .game-info-box {
                float: none;
                width: 100%;
                margin-left: 0;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                margin-top: 1rem;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu li {
                border-bottom: 1px solid var(--border-color);
            }
            .nav-menu li a {
                display: block;
                padding: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 0;
                top: -60px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .social-share {
                justify-content: center;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .content-area, aside {
                padding: 1.2rem;
            }
            button, .social-btn {
                width: 100%;
                justify-content: center;
            }
        }
