* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2563eb;
            --secondary: #1e40af;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
            --border: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            font-size: 16px;
        }
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: var(--accent);
        }
        .my-logo:hover {
            color: var(--secondary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark);
        }
        .search-container {
            display: flex;
            align-items: center;
            background: #f1f5f9;
            border-radius: 50px;
            padding: 0.5rem 1rem;
            width: 300px;
        }
        .search-container input {
            border: none;
            background: transparent;
            width: 100%;
            padding: 0.5rem;
            outline: none;
        }
        .search-container button {
            background: var(--primary);
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: background 0.3s;
            min-width: 44px;
            min-height: 44px;
        }
        .search-container button:hover {
            background: var(--secondary);
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        article {
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
        }
        aside {
            background: white;
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent);
        }
        h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 1.5rem 0 0.8rem;
        }
        h4 {
            font-size: 1.1rem;
            color: var(--gray);
            margin: 1.2rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--gray);
            font-weight: 500;
            margin-bottom: 2rem;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            margin: 1.5rem 0;
            box-shadow: var(--shadow);
            display: block;
        }
        .img-container {
            text-align: center;
            margin: 2rem 0;
        }
        .img-caption {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 0.5rem;
            font-style: italic;
        }
        .highlight {
            background: #fef3c7;
            padding: 1.5rem;
            border-left: 4px solid var(--accent);
            border-radius: var(--radius);
            margin: 1.5rem 0;
        }
        .info-box {
            background: #eff6ff;
            border: 1px solid var(--primary);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .game-feature {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: var(--radius);
            border-top: 4px solid var(--primary);
            transition: transform 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .feature-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .download-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }
        .download-btn {
            background: var(--primary);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: var(--radius);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 600;
            transition: all 0.3s;
            min-width: 44px;
            min-height: 44px;
        }
        .download-btn:hover {
            background: var(--secondary);
            transform: scale(1.05);
        }
        .download-btn.secondary {
            background: var(--gray);
        }
        .update-log {
            background: #f1f5f9;
            border-radius: var(--radius);
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .update-item {
            padding: 1rem 0;
            border-bottom: 1px dashed var(--border);
        }
        .update-item:last-child {
            border-bottom: none;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background: var(--primary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background: #f8fafc;
        }
        .faq-container {
            margin: 2rem 0;
        }
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 1.5rem 0;
        }
        .faq-question {
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding-top: 1rem;
            display: none;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: var(--radius);
        }
        .stars {
            color: var(--accent);
            font-size: 1.5rem;
        }
        .share-buttons {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }
        .share-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s;
        }
        .share-btn:hover {
            transform: scale(1.1);
        }
        .share-facebook { background: #3b5998; }
        .share-twitter { background: #1da1f2; }
        .share-reddit { background: #ff4500; }
        .share-whatsapp { background: #25d366; }
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary);
            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;
            transition: all 0.3s;
            z-index: 99;
        }
        .back-to-top.visible {
            opacity: 1;
        }
        .back-to-top:hover {
            background: var(--secondary);
        }
        .sidebar-section {
            margin-bottom: 2rem;
        }
        .sidebar-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 0.8rem;
        }
        .sidebar-links a {
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem;
            border-radius: var(--radius);
            transition: all 0.3s;
        }
        .sidebar-links a:hover {
            background: #eff6ff;
            color: var(--primary);
        }
        .contact-info {
            background: #f0f9ff;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-top: 2rem;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: white;
        }
        friend-link {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        friend-link a {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #475569;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }
            .search-container {
                width: 100%;
                max-width: 500px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                gap: 0.5rem;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1rem;
            }
            .header-container {
                position: relative;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .game-feature {
                grid-template-columns: 1fr;
            }
            .download-links {
                flex-direction: column;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .comment-form, .rating-form {
            background: #f8fafc;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--radius);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            min-width: 44px;
            min-height: 44px;
        }
        .submit-btn:hover {
            background: var(--secondary);
        }
        .comments-section {
            margin: 2rem 0;
        }
        .comment {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .comment-author {
            font-weight: 600;
            color: var(--dark);
        }
        .author-bio {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: #f0f9ff;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .author-bio img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0;
        }
        .last-updated {
            background: #fef3c7;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            display: inline-block;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }
        .internal-links {
            margin: 1.5rem 0;
            padding: 1rem;
            background: #f1f5f9;
            border-radius: var(--radius);
        }
        .internal-links ul {
            columns: 2;
            list-style: none;
        }
        @media (max-width: 768px) {
            .internal-links ul {
                columns: 1;
            }
        }
