:root {
            --primary-color: #FF6B35;
            --secondary-color: #2A9D8F;
            --accent-color: #E9C46A;
            --dark-color: #264653;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --gray-color: #6C757D;
            --wiki-blue: #3366CC;
            --wiki-light: #F6F6F6;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            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, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-color) 0%, #1a3342 100%);
            color: white;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            font-size: 2rem;
            color: var(--primary-color);
        }
        .domain-link {
            font-size: 0.9rem;
            color: #aaa;
            margin-left: 10px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        nav a:hover, nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent-color);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        main {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 2rem 0;
            overflow: hidden;
        }
        .content-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem;
        }
        .wiki-content {
            max-width: 100%;
        }
        .wiki-header {
            border-bottom: 3px solid var(--wiki-blue);
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .wiki-subtitle {
            color: var(--gray-color);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        .wiki-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-bottom: 1.5rem;
        }
        .last-updated {
            background: var(--wiki-light);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            color: var(--dark-color);
        }
        h2 {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--wiki-light);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--dark-color);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.1rem;
            color: var(--gray-color);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.1rem;
            background: var(--wiki-light);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--wiki-blue);
            margin-bottom: 2rem;
        }
        .info-box {
            background: #f8f9fa;
            border: 1px solid #a2a9b1;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin: 1.5rem 0;
            float: right;
            width: 300px;
            margin-left: 1.5rem;
        }
        .info-box-title {
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        .info-box-row {
            display: flex;
            margin-bottom: 0.5rem;
        }
        .info-box-label {
            font-weight: bold;
            min-width: 120px;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray-color);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        th {
            background: var(--dark-color);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #eee;
        }
        tr:hover {
            background-color: #f9f9f9;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            min-height: 44px;
            min-width: 44px;
        }
        .btn:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
        }
        .btn-secondary {
            background: var(--secondary-color);
        }
        .btn-secondary:hover {
            background: #238277;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }
        aside {
            background: var(--wiki-light);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-section {
            margin-bottom: 2rem;
        }
        .sidebar-title {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--wiki-blue);
        }
        .nav-links {
            list-style: none;
            margin-left: 0;
        }
        .nav-links li {
            margin-bottom: 0.8rem;
        }
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .nav-links a:hover {
            background: rgba(0,0,0,0.05);
            color: var(--primary-color);
        }
        .rating-stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin: 0.5rem 0;
        }
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        friend-link {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 6px;
            margin: 5px;
            color: #ddd;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .social-share {
            display: flex;
            gap: 10px;
            margin: 2rem 0;
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: #f0f0f0;
            border-radius: 50%;
            color: var(--dark-color);
            transition: var(--transition);
        }
        .social-icon:hover {
            transform: translateY(-3px);
        }
        .facebook:hover { background: #3b5998; color: white; }
        .twitter:hover { background: #1da1f2; color: white; }
        .reddit:hover { background: #ff4500; color: white; }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        @media (max-width: 992px) {
            .content-container {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            body {
                padding: 0 15px;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 1rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 20px;
                top: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .info-box {
                float: none;
                width: 100%;
                margin-left: 0;
            }
            .content-container {
                padding: 1.5rem;
            }
            .back-to-top {
                bottom: 20px;
                right: 20px;
            }
        }
        @media (max-width: 480px) {
            .wiki-meta {
                flex-direction: column;
                gap: 0.5rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .social-share {
                justify-content: center;
            }
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: bold; }
        .text-primary { color: var(--primary-color); }
        .highlight { background-color: #fffacd; padding: 2px 5px; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .divider { height: 1px; background: #eee; margin: 2rem 0; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .p-2 { padding: 2rem; }
        .flex { display: flex; }
        .flex-wrap { flex-wrap: wrap; }
        .gap-1 { gap: 1rem; }
        .justify-between { justify-content: space-between; }
        .align-center { align-items: center; }
