        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #4a1e91;
            --primary-light: #6c3fba;
            --secondary: #ff6b8b;
            --secondary-light: #ffa0b8;
            --accent: #ffcc00;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --border: #dee2e6;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul, ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .top-bar {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            text-align: center;
        }
        .top-bar a {
            color: var(--accent);
            font-weight: bold;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--secondary);
        }
        .my-logo span {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            color: var(--dark);
            position: relative;
            padding: 0.3rem 0;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .search-box {
            display: flex;
            margin-left: 2rem;
        }
        .search-box input {
            padding: 0.6rem 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius) 0 0 var(--radius);
            width: 220px;
        }
        .search-box button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--primary-light);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 2rem;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .separator {
            margin: 0 0.5rem;
            color: var(--gray);
        }
        main {
            flex: 1;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .content-area {
            overflow-wrap: break-word;
        }
        aside {
            align-self: start;
            position: sticky;
            top: 140px;
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid var(--accent);
            padding-left: 1.5rem;
        }
        article h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--border);
        }
        article h3 {
            font-size: 1.6rem;
            color: var(--primary-light);
            margin: 2.5rem 0 1rem;
        }
        article h4 {
            font-size: 1.3rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        article strong {
            color: var(--primary);
            font-weight: 700;
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
            color: var(--gray);
            font-size: 0.95rem;
        }
        .last-updated {
            background-color: #e9f7fe;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .featured-img {
            margin: 2.5rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-img img:hover {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            color: var(--gray);
            background-color: var(--light);
            border-top: 1px solid var(--border);
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdf2ff, #e6f7ff);
            border-left: 5px solid var(--secondary);
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            box-shadow: var(--shadow);
        }
        .quote {
            font-size: 1.3rem;
            color: var(--primary-light);
            border-left: 4px solid var(--accent);
            padding-left: 1.5rem;
            margin: 2.5rem 0;
            font-style: italic;
        }
        .game-versions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .version-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
        }
        .version-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .interactive-module {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .module-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .module-title i {
            color: var(--secondary);
        }
        .rating-box {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .star {
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent);
        }
        .rating-form textarea,
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 1rem;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .rating-form textarea:focus,
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: var(--primary);
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, var(--primary-light), var(--secondary));
            transform: translateY(-2px);
        }
        .sidebar-widget {
            background: white;
            border-radius: var(--radius);
            padding: 1.8rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--accent);
        }
        .quick-links li {
            margin-bottom: 0.8rem;
            list-style: none;
            padding-left: 1rem;
            position: relative;
        }
        .quick-links li:before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-size: 0.8rem;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem;
        }
        .tag {
            background-color: var(--light);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--dark);
            transition: var(--transition);
        }
        .tag:hover {
            background-color: var(--secondary);
            color: white;
        }
        footer {
            background-color: var(--dark);
            color: #ccc;
            margin-top: 4rem;
            padding: 3rem 2rem 1.5rem;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: var(--radius);
            border-left: 4px solid var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                padding: 1rem;
                border-top: 1px solid var(--border);
            }
            .nav-links.active {
                display: flex;
            }
            .search-box {
                margin-left: 0;
                margin-top: 1rem;
                width: 100%;
                order: 3;
            }
            .search-box input {
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .breadcrumb, main, .footer-content {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }
