* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #2e7d32;
            --secondary: #ff9800;
            --accent: #2196f3;
            --dark: #1a1a2e;
            --light: #f5f7fa;
            --text: #333;
            --text-light: #666;
            --white: #fff;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --radius: 12px;
        }
        body { font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif; color: var(--text); background: var(--light); line-height: 1.7; }
        a { color: var(--primary); text-decoration: none; transition: all 0.3s; }
        a:hover { color: var(--secondary); }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { background: var(--dark); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .my-logo { font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
        .my-logo span { color: var(--secondary); }
        .my-logo small { display: block; font-size: 12px; color: #aaa; font-weight: 400; letter-spacing: 1px; }
        nav ul { list-style: none; display: flex; gap: 24px; }
        nav a { color: #ddd; font-size: 15px; font-weight: 500; padding: 8px 0; border-bottom: 2px solid transparent; }
        nav a:hover { color: var(--secondary); border-bottom-color: var(--secondary); }
        .hamburger { display: none; background: none; border: none; color: white; font-size: 26px; cursor: pointer; }
        .mobile-nav { display: none; width: 100%; padding: 10px 0; }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { flex-direction: column; gap: 0; }
        .mobile-nav li { border-bottom: 1px solid #333; }
        .mobile-nav a { display: block; padding: 12px 0; }
        .breadcrumb { background: #f8f9fa; padding: 10px 0; font-size: 14px; border-bottom: 1px solid #e9ecef; }
        .breadcrumb a { color: var(--text-light); }
        .breadcrumb a:hover { color: var(--primary); }
        .breadcrumb .separator { margin: 0 8px; color: #aaa; }
        .breadcrumb .current { color: var(--primary); font-weight: 600; }
        .hero { background: linear-gradient(135deg, #1a1a2e 0%, #2e7d32 50%, #2196f3 100%); color: white; padding: 80px 0 60px; text-align: center; }
        .hero h1 { font-size: 52px; font-weight: 800; margin-bottom: 16px; text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
        .hero p { font-size: 18px; max-width: 700px; margin: 0 auto; opacity: 0.95; }
        .hero-badge { display: inline-block; background: var(--secondary); color: var(--dark); padding: 6px 18px; border-radius: 30px; font-weight: 700; font-size: 14px; margin-bottom: 20px; letter-spacing: 1px; }
        main { padding: 50px 0; }
        .content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
        @media (max-width: 992px) { .content-grid { grid-template-columns: 1fr; } }
        .article-body { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
        .sidebar { position: sticky; top: 90px; align-self: start; }
        @media (max-width: 992px) { .sidebar { position: static; } }
        h1 { font-size: 42px; line-height: 1.2; }
        h2 { font-size: 32px; margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 3px solid var(--secondary); color: var(--dark); }
        h3 { font-size: 24px; margin: 30px 0 15px; color: var(--primary); }
        h4 { font-size: 18px; margin: 20px 0 10px; color: var(--dark); }
        p { margin-bottom: 16px; }
        .highlight { background: #fff8e1; padding: 2px 8px; border-radius: 4px; }
        .emoji { font-style: normal; }
        .info-box { background: #e3f2fd; border-left: 4px solid var(--accent); padding: 20px; border-radius: 8px; margin: 24px 0; }
        .tip-box { background: #e8f5e9; border-left: 4px solid var(--primary); padding: 20px; border-radius: 8px; margin: 24px 0; }
        .warning-box { background: #fff3e0; border-left: 4px solid var(--secondary); padding: 20px; border-radius: 8px; margin: 24px 0; }
        .game-img { width: 100%; max-width: 800px; height: auto; border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow); }
        .img-caption { text-align: center; font-size: 14px; color: var(--text-light); margin-top: -16px; margin-bottom: 24px; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 30px 0; }
        @media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
        .stat-card { background: var(--light); border-radius: 8px; padding: 20px; text-align: center; border-top: 3px solid var(--primary); }
        .stat-card .number { font-size: 32px; font-weight: 800; color: var(--primary); display: block; }
        .stat-card .label { font-size: 14px; color: var(--text-light); }
        ul, ol { padding-left: 24px; margin-bottom: 16px; }
        li { margin-bottom: 8px; }
        .search-box { background: var(--white); border-radius: 50px; padding: 8px 20px; display: flex; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin-bottom: 30px; }
        .search-box input { border: none; outline: none; flex: 1; font-size: 16px; padding: 8px 0; }
        .search-box button { background: var(--primary); color: white; border: none; border-radius: 50px; padding: 10px 24px; font-size: 15px; cursor: pointer; transition: all 0.3s; }
        .search-box button:hover { background: var(--secondary); }
        .comments-section { margin-top: 40px; }
        .comment-form, .rating-form { background: var(--light); padding: 24px; border-radius: var(--radius); margin-bottom: 24px; }
        .comment-form textarea { width: 100%; min-height: 100px; padding: 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; font-family: inherit; resize: vertical; }
        .comment-form input[type="text"], .rating-form select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; margin-bottom: 12px; }
        .comment-form button, .rating-form button { background: var(--primary); color: white; border: none; padding: 12px 30px; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .comment-form button:hover, .rating-form button:hover { background: var(--dark); }
        .rating-stars { font-size: 28px; color: #ddd; cursor: pointer; margin-bottom: 10px; }
        .rating-stars .star:hover, .rating-stars .star.active { color: var(--secondary); }
        .sidebar-card { background: white; border-radius: var(--radius); padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow); }
        .sidebar-card h3 { font-size: 18px; margin-top: 0; border-bottom: 2px solid var(--secondary); padding-bottom: 8px; }
        .sidebar-links li { margin-bottom: 10px; }
        .sidebar-links a { display: flex; align-items: center; gap: 10px; font-size: 14px; }
        .sidebar-links i { color: var(--primary); }
        .game-comparison { width: 100%; border-collapse: collapse; margin: 24px 0; }
        .game-comparison th { background: var(--dark); color: white; padding: 12px 16px; text-align: left; }
        .game-comparison td { padding: 12px 16px; border-bottom: 1px solid #eee; }
        .game-comparison tr:nth-child(even) { background: #f8f9fa; }
        footer { background: var(--dark); color: #aaa; padding: 50px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }
        @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
        .footer-links h4 { color: white; margin-bottom: 14px; }
        .footer-links a { color: #aaa; display: block; margin-bottom: 8px; }
        .footer-links a:hover { color: var(--secondary); }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid #333; font-size: 14px; }
        friend-link { display: block; background: rgba(255,255,255,0.05); padding: 20px; border-radius: 8px; margin-top: 20px; }
        friend-link a { color: #aaa; margin: 0 10px; }
        friend-link a:hover { color: var(--secondary); }
        .toc { background: #f8f9fa; border-radius: 8px; padding: 20px; margin-bottom: 30px; }
        .toc h3 { margin-top: 0; }
        .toc ul { list-style: none; padding-left: 0; }
        .toc li { margin-bottom: 6px; }
        .toc li a { color: var(--text); font-size: 15px; }
        .toc li a:hover { color: var(--primary); }
        @media (max-width: 768px) {
            .header-inner { flex-wrap: wrap; }
            nav.desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 32px; }
            .article-body { padding: 20px; }
            h2 { font-size: 24px; }
            h3 { font-size: 20px; }
        }
        @media (min-width: 769px) { .desktop-nav { display: block !important; } .mobile-nav { display: none !important; } }
        .social-share { display: flex; gap: 12px; margin-top: 20px; }
        .social-share a { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--light); color: var(--text); transition: all 0.3s; }
        .social-share a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 16px; }
        .faq-item h4 { font-size: 16px; }
