:root {
            --primary-color: #4a6fa5;
            --secondary-color: #ff9800;
            --accent-color: #2ecc71;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --border-color: #dee2e6;
            --wiki-blue: #3366cc;
            --header-height: 70px;
            --max-width: 1200px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            padding-top: var(--header-height);
        }
        a {
            color: var(--wiki-blue);
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s;
            min-height: 44px;
            min-width: 44px;
        }
        .btn:hover {
            background: #3a5a8c;
            text-decoration: none;
        }
        .btn-secondary {
            background: var(--secondary-color);
        }
        .btn-secondary:hover {
            background: #e68900;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            height: var(--header-height);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary-color);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s;
        }
        nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--primary-color);
            min-width: 44px;
            min-height: 44px;
        }
        .search-box {
            display: flex;
            max-width: 300px;
            width: 100%;
        }
        .search-box input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--light-bg);
            border: 1px solid var(--border-color);
            border-left: none;
            border-radius: 0 4px 4px 0;
            padding: 0 15px;
            cursor: pointer;
            min-width: 44px;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        article {
            background: white;
            border-radius: 8px;
        }
        aside {
            background: var(--light-bg);
            padding: 25px;
            border-radius: 8px;
            align-self: start;
            position: sticky;
            top: 90px;
        }
        section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
        }
        section:last-of-type {
            border-bottom: none;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--text-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.4rem;
            margin: 25px 0 10px;
            color: #555;
        }
        h4 {
            font-size: 1.1rem;
            margin: 20px 0 10px;
            color: #666;
        }
        p {
            margin-bottom: 16px;
        }
        ul, ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 8px;
        }
        .highlight {
            background: #fff8e1;
            padding: 20px;
            border-left: 4px solid var(--secondary-color);
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        .info-box {
            background: #e8f4fd;
            border: 1px solid #a6c8e4;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .game-image {
            width: 100%;
            margin: 20px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 8px;
            font-size: 0.9rem;
        }
        .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            border: 1px solid var(--border-color);
            padding: 12px 15px;
            text-align: left;
        }
        th {
            background: var(--light-bg);
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f9f9f9;
        }
        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
        }
        .stars {
            color: #ffc107;
            font-size: 1.2rem;
        }
        .share-buttons {
            display: flex;
            gap: 10px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .share-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            background: var(--light-bg);
            border-radius: 4px;
            color: var(--text-color);
            min-height: 44px;
            min-width: 44px;
        }
        .share-btn:hover {
            background: #e9ecef;
            text-decoration: none;
        }
        .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;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 999;
            font-size: 1.2rem;
        }
        .back-to-top.visible {
            opacity: 1;
        }
        .comments-section {
            background: white;
            padding: 25px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        .comment-form {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment {
            padding: 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 20px;
            background: white;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #666;
        }
        footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ddd;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: block;
            margin: 10px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
                order: -1;
            }
            .header-container {
                padding: 0 15px;
            }
            nav ul {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
            .hamburger {
                display: block;
            }
            nav {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s;
            }
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 0;
            }
            nav li {
                width: 100%;
            }
            nav a {
                display: block;
                padding: 15px 0;
                border-bottom: 1px solid var(--border-color);
            }
            nav a:after {
                display: none;
            }
            .search-box {
                max-width: 100%;
                margin: 15px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .share-buttons {
                justify-content: center;
            }
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .btn {
                padding: 10px 20px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media print {
            header, footer, .share-buttons, .back-to-top, .comment-form, .rating-form {
                display: none;
            }
            body {
                padding-top: 0;
                font-size: 12pt;
            }
            a {
                color: black;
                text-decoration: underline;
            }
            .container {
                max-width: 100%;
            }
        }
