:root {
            --primary: #1a73e8;
            --secondary: #34a853;
            --accent: #ea4335;
            --dark: #202124;
            --light: #f8f9fa;
            --gray: #5f6368;
            --border: #dadce0;
            --wiki-blue: #3367d6;
            --wiki-light: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--wiki-light);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--wiki-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            color: var(--accent);
        }
        
        .search-box {
            display: flex;
            max-width: 400px;
            flex-grow: 1;
            margin: 0 20px;
        }
        
        .search-box input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid var(--border);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        
        .search-box button {
            background-color: var(--wiki-blue);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        /* Navigation */
        nav {
            display: flex;
            width: 100%;
            margin-top: 1rem;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            width: 100%;
            flex-wrap: wrap;
            gap: 5px;
        }
        
        .nav-menu li {
            flex: 1;
            min-width: 120px;
        }
        
        .nav-menu a {
            display: block;
            padding: 12px 15px;
            text-decoration: none;
            color: var(--dark);
            background-color: #f1f3f4;
            border-radius: 4px;
            text-align: center;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .nav-menu a:hover, .nav-menu a.active {
            background-color: var(--wiki-blue);
            color: white;
        }
        
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--wiki-blue);
        }
        
        /* Main Content */
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2rem;
            margin: 2rem 0;
        }
        
        article {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        aside {
            background-color: var(--wiki-light);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
        }
        
        /* Typography */
        h1 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--wiki-blue);
        }
        
        h2 {
            font-size: 1.8rem;
            color: var(--dark);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }
        
        h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 1.5rem 0 0.8rem;
        }
        
        p {
            margin-bottom: 1.2rem;
            line-height: 1.7;
        }
        
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        /* Content Sections */
        .game-info-box {
            background-color: var(--wiki-light);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .info-item {
            display: flex;
            flex-direction: column;
        }
        
        .info-label {
            font-weight: 600;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .info-value {
            font-size: 1rem;
            color: var(--dark);
        }
        
        /* Images */
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            border: 1px solid var(--border);
        }
        
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        
        /* Tables */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background-color: white;
        }
        
        th, td {
            border: 1px solid var(--border);
            padding: 12px 15px;
            text-align: left;
        }
        
        th {
            background-color: var(--wiki-light);
            font-weight: 600;
        }
        
        tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        /* Forms */
        .form-section {
            background-color: var(--wiki-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid var(--border);
        }
        
        .form-group {
            margin-bottom: 1.2rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        button, .btn {
            background-color: var(--wiki-blue);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            transition: background-color 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            min-width: 44px;
            min-height: 44px;
        }
        
        button:hover, .btn:hover {
            background-color: #2a56c6;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: #2e8b57;
        }
        
        /* Rating */
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        
        .rating-stars i {
            color: #ffc107;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Social Share */
        .social-share {
            display: flex;
            gap: 10px;
            margin: 2rem 0;
        }
        
        .social-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
        }
        
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .reddit { background-color: #ff4500; }
        .whatsapp { background-color: #25d366; }
        
        /* Back to Top */
        #backToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--wiki-blue);
            color: white;
            border: none;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        footer {
            background-color: var(--wiki-light);
            border-top: 1px solid var(--border);
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .footer-links {
            list-style: none;
            margin-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--wiki-blue);
            text-decoration: underline;
        }
        
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            
            .game-info-box {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .search-box {
                width: 100%;
                margin: 1rem 0;
            }
            
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 15px;
            }
            
            nav {
                display: none;
                margin-top: 1rem;
            }
            
            .nav-menu {
                flex-direction: column;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .game-info-box {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            h3 {
                font-size: 1.2rem;
            }
        }
        
        /* Utility Classes */
        .text-center { text-align: center; }
        .text-bold { font-weight: 600; }
        .text-primary { color: var(--primary); }
        .text-secondary { color: var(--secondary); }
        .text-accent { color: var(--accent); }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .p-1 { padding: 1rem; }
        .rounded { border-radius: 8px; }
        .shadow { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
        
        /* Interactive Elements */
        .expandable {
            background-color: var(--wiki-light);
            border-left: 4px solid var(--wiki-blue);
            padding: 1rem;
            margin: 1.5rem 0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .expandable:hover {
            background-color: #e8f0fe;
        }
        
        .expandable-content {
            display: none;
            padding-top: 1rem;
        }
        
        .accordion {
            margin: 1.5rem 0;
        }
        
        .accordion-header {
            background-color: var(--wiki-light);
            padding: 1rem 1.5rem;
            border: 1px solid var(--border);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }
        
        .accordion-content {
            padding: 1rem 1.5rem;
            border: 1px solid var(--border);
            border-top: none;
            display: none;
        }
        
        .accordion.active .accordion-content {
            display: block;
        }
        
        /* Internal Links */
        .internal-link {
            color: var(--wiki-blue);
            text-decoration: none;
            border-bottom: 1px dotted var(--wiki-blue);
        }
        
        .internal-link:hover {
            border-bottom: 1px solid var(--wiki-blue);
        }
        
        /* Update Log */
        .update-log {
            background-color: #e8f5e9;
            border-left: 4px solid var(--secondary);
            padding: 1.5rem;
            margin: 2rem 0;
        }
        
        .update-date {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }
        
        /* Download Box */
        .download-box {
            background: linear-gradient(135deg, #1a73e8, #34a853);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            margin: 2rem 0;
        }
        
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        
        .download-btn {
            background-color: white;
            color: var(--dark);
            padding: 12px 25px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 180px;
            justify-content: center;
            transition: transform 0.3s;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Tips Box */
        .tips-box {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .tip-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
            color: #856404;
        }
        
        /* Mobile TOC */
        .mobile-toc {
            display: none;
            background-color: var(--wiki-light);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border);
        }
        
        @media (max-width: 768px) {
            .mobile-toc {
                display: block;
            }
        }

