        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #0078D7;
            --secondary-color: #FF4500;
            --accent-color: #00B4D8;
            --dark-bg: #1A1A1A;
            --light-bg: #F5F5F5;
            --text-color: #333;
            --text-light: #666;
            --border-color: #E0E0E0;
            --wiki-blue: #3366CC;
            --wiki-gray: #F6F6F6;
            --shadow: 0 2px 8px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-bg);
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            margin-bottom: 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: var(--secondary-color);
        }
        .my-logo i {
            color: var(--secondary-color);
        }
        .search-box {
            display: flex;
            flex: 0 1 400px;
            margin: 0 1rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--secondary-color);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            padding: 0.5rem;
        }
        nav {
            flex: 1;
        }
        .nav-links {
            display: flex;
            justify-content: flex-end;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--primary-color);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        article {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: var(--shadow);
        }
        aside {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--dark-bg);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--wiki-blue);
            line-height: 1.2;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--dark-bg);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--text-color);
            margin: 1.5rem 0 1rem;
        }
        h4 {
            font-size: 1.1rem;
            color: var(--text-light);
            margin: 1rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
            line-height: 1.7;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text-light);
            font-weight: 300;
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--wiki-gray);
            border-left: 4px solid var(--wiki-blue);
            border-radius: 4px;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: white;
            box-shadow: var(--shadow);
            border-radius: 6px;
            overflow: hidden;
        }
        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        th {
            background: var(--wiki-gray);
            font-weight: 600;
            color: var(--dark-bg);
        }
        tr:hover {
            background: #F9F9F9;
        }
        .card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary-color);
        }
        .info-box {
            background: #E8F4FD;
            border: 1px solid var(--primary-color);
            border-radius: 6px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .gameplay-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .step {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .step-number {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        .article-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--border-color);
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0,120,215,0.1);
        }
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
            min-height: 44px;
            min-width: 44px;
        }
        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: var(--text-light);
        }
        .btn-secondary:hover {
            background: var(--text-color);
        }
        .interactive-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #FFD700;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .social-share {
            display: flex;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .social-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--wiki-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
        }
        .social-icon:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        .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;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
            border-radius: 8px 8px 0 0;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
        }
        .friend-link {
            color: var(--accent-color);
            text-decoration: none;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            transition: var(--transition);
        }
        .friend-link:hover {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        .eeat-badge {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--wiki-gray);
            border-radius: 6px;
            margin: 2rem 0;
        }
        .eeat-badge img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        .update-log {
            background: var(--wiki-gray);
            border-left: 4px solid var(--secondary-color);
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .update-item {
            padding: 1rem;
            background: white;
            margin: 1rem 0;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: stretch;
            }
            .my-logo {
                margin-bottom: 1rem;
            }
            .search-box {
                order: 3;
                width: 100%;
                margin: 1rem 0 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            nav.active {
                max-height: 500px;
            }
            .nav-links {
                flex-direction: column;
                gap: 0;
                padding-top: 1rem;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 0.75rem 0;
                border-bottom: 1px solid var(--border-color);
            }
            .gameplay-steps {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .social-share {
                justify-content: center;
                flex-wrap: wrap;
            }
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 10px;
            }
            article, aside {
                padding: 1rem;
            }
            .card, .info-box {
                padding: 1rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .btn {
                padding: 0.75rem 1rem;
                width: 100%;
            }
        }
        @media print {
            header, footer, .social-share, .back-to-top, .interactive-section {
                display: none;
            }
            body {
                background: white;
                color: black;
                max-width: none;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
