:root {
            --primary-color: #4361ee;
            --secondary-color: #3a0ca3;
            --accent-color: #f72585;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --gray-text: #6c757d;
            --border-color: #dee2e6;
            --wiki-blue: #3366cc;
            --wiki-light: #e6f2ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            color: var(--dark-text);
            line-height: 1.6;
            background-color: #fff;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
        }
        a {
            color: var(--wiki-blue);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        h1, h2, h3, h4 {
            color: var(--dark-text);
            margin-top: 1.5em;
            margin-bottom: 0.75em;
            line-height: 1.3;
            font-weight: 600;
        }
        h1 {
            font-size: 2.5rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .container {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
        }
        header {
            background-color: white;
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: var(--accent-color);
        }
        .logo-domain {
            font-size: 0.9rem;
            color: var(--gray-text);
            font-weight: normal;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            font-weight: 500;
            color: var(--dark-text);
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--primary-color);
            text-decoration: none;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--dark-text);
        }
        .search-container {
            margin: 2rem 0;
            background-color: var(--wiki-light);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 6px 0 0 6px;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s;
            font-weight: 500;
        }
        .search-btn:hover {
            background-color: var(--secondary-color);
        }
        main {
            padding: 1rem 0;
        }
        section {
            margin-bottom: 3rem;
            padding: 1.5rem;
            background-color: white;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }
        .game-info-box {
            background-color: var(--wiki-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--wiki-blue);
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray-text);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        th {
            background-color: var(--wiki-light);
            font-weight: 600;
        }
        tr:hover {
            background-color: #f8f9fa;
        }
        .sidebar {
            padding-top: 2rem;
        }
        .sidebar-box {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .sidebar-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
            color: var(--primary-color);
        }
        .update-log {
            list-style: none;
            margin-left: 0;
        }
        .update-log li {
            padding: 0.5rem 0;
            border-bottom: 1px dotted var(--border-color);
        }
        .rating-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.5rem;
            color: #ffc107;
            cursor: pointer;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
        }
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: var(--secondary-color);
        }
        .social-share {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
            justify-content: center;
        }
        .share-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        .share-btn:hover {
            transform: translateY(-3px);
            text-decoration: none;
        }
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .reddit { background-color: #ff4500; }
        .whatsapp { background-color: #25d366; }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: background-color 0.3s, transform 0.3s;
            z-index: 99;
        }
        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
            text-decoration: none;
        }
        footer {
            background-color: #f8f9fa;
            border-top: 1px solid var(--border-color);
            padding: 3rem 0 2rem;
            margin-top: 3rem;
            text-align: center;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        friend-link a {
            padding: 0.5rem 1rem;
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            transition: all 0.3s;
        }
        friend-link a:hover {
            background-color: var(--wiki-light);
            border-color: var(--wiki-blue);
            text-decoration: none;
        }
        .copyright {
            color: var(--gray-text);
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 768px) {
            html { font-size: 14px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.2rem; }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 15px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                border-top: 1px solid var(--border-color);
            }
            .nav-links a {
                display: block;
                padding: 1rem 0;
            }
            section, .sidebar-box {
                padding: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                border-radius: 6px;
                margin-bottom: 0.5rem;
            }
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
            }
        }
        @media print {
            .social-share, .back-to-top, .hamburger, .search-container,
            .comment-form, .rating-form {
                display: none;
            }
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .highlight { background-color: #fffacd; padding: 2px 4px; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background-color: var(--accent-color);
            color: white;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 0.5rem;
        }
