        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #FFCC00;
            --secondary-color: #1A1A2E;
            --accent-color: #FF3300;
            --text-color: #333333;
            --light-bg: #F8F9FA;
            --border-color: #E0E0E0;
            --wiki-blue: #3366CC;
            --success-color: #28a745;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --max-width: 1200px;
            --mobile-breakpoint: 768px;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.6;
            color: var(--text-color);
            background-color: #ffffff;
            font-size: 16px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        header {
            background-color: var(--secondary-color);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo:hover {
            color: white;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }
        .my-logo i {
            font-size: 2rem;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav a:hover, nav a:focus {
            background-color: var(--primary-color);
            color: var(--secondary-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            min-width: 44px;
            min-height: 44px;
        }
        main {
            max-width: var(--max-width);
            margin: 2rem auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        article {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        aside {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--primary-color);
        }
        h2 {
            font-size: 1.8rem;
            color: var(--secondary-color);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--wiki-blue);
            margin: 1.5rem 0 0.75rem;
        }
        h4 {
            font-size: 1.1rem;
            color: var(--text-color);
            margin: 1rem 0 0.5rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        strong {
            color: var(--secondary-color);
        }
        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        th {
            background-color: var(--secondary-color);
            color: white;
            padding: 0.75rem;
            text-align: left;
        }
        td {
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-color);
        }
        tr:nth-child(even) {
            background-color: var(--light-bg);
        }
        tr:hover {
            background-color: rgba(255, 204, 0, 0.1);
        }
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 44px;
            min-height: 44px;
        }
        .btn:hover, .btn:focus {
            background-color: #ffdb4d;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn-primary {
            background-color: var(--accent-color);
            color: white;
        }
        .btn-primary:hover {
            background-color: #ff5c33;
        }
        .btn-small {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
        }
        form {
            margin: 1.5rem 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: var(--font-main);
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
        }
        .rating {
            display: flex;
            gap: 0.25rem;
            margin: 0.5rem 0;
        }
        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.2rem;
            transition: color 0.2s;
        }
        .star:hover, .star.active {
            color: #FFCC00;
        }
        .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;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .social-btn:hover {
            transform: translateY(-3px);
        }
        .facebook { background-color: #3b5998; }
        .twitter { background-color: #1da1f2; }
        .pinterest { background-color: #bd081c; }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            z-index: 999;
        }
        .back-to-top:hover {
            opacity: 1;
            transform: translateY(-5px);
            background-color: var(--primary-color);
            color: var(--secondary-color);
        }
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            border: none;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
        }
        .footer-section li {
            margin-bottom: 0.5rem;
        }
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: var(--primary-color);
        }
        .friend-link {
            display: inline-block;
            background-color: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            margin: 0.25rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        .infobox {
            background-color: var(--light-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            float: right;
            width: 300px;
            margin-left: 2rem;
        }
        .infobox h3 {
            text-align: center;
            margin-top: 0;
            color: var(--secondary-color);
        }
        .infobox th {
            background: none;
            color: var(--text-color);
            font-weight: 600;
            padding: 0.5rem 0.75rem 0.5rem 0;
            text-align: left;
            width: 40%;
        }
        .infobox td {
            padding: 0.5rem;
            border: none;
        }
        .update-log {
            background-color: #f0f8ff;
            border-left: 4px solid var(--wiki-blue);
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .update-log h3 {
            margin-top: 0;
            color: var(--wiki-blue);
        }
        .faq-item {
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
        .faq-question {
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        .faq-answer {
            display: none;
            padding-top: 0.5rem;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
                margin-top: 2rem;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--secondary-color);
                padding: 1rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .infobox {
                float: none;
                width: 100%;
                margin: 1.5rem 0;
            }
            .back-to-top {
                bottom: 1rem;
                right: 1rem;
                width: 44px;
                height: 44px;
            }
        }
        @media print {
            .no-print {
                display: none;
            }
            body {
                font-size: 12pt;
                color: black;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            .social-share, .back-to-top, form, .btn {
                display: none;
            }
        }
