* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f8f3e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 17px;
        }
        header {
            background-color: #8B4513;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FFE4B5;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            letter-spacing: 0.3px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #FFE4B5;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #FFF;
            border-bottom: 2px solid #FFD700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #FFE4B5;
            font-size: 28px;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
        }
        h1 {
            color: #8B4513;
            margin: 0 0 30px;
            font-size: 36px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            line-height: 1.4;
        }
        h2 {
            color: #8B5A2B;
            margin: 40px 0 20px;
            font-size: 28px;
            border-bottom: 3px solid #CD853F;
            padding-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        h2::before {
            content: "🌿";
            position: absolute;
            left: -30px;
            top: 5px;
        }
        h3 {
            color: #8B4513;
            margin: 30px 0 15px;
            font-size: 22px;
            padding-left: 15px;
            border-left: 4px solid #D2691E;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            padding: 0 5px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #8B5A2B;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 3px 5px rgba(0,0,0,0.15);
            text-align: center;
        }
        .btn:hover {
            background-color: #6D4C41;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #2E7D32;
        }
        .btn-download:hover {
            background-color: #1B5E20;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
            border: 4px solid #fff;
        }
        strong {
            color: #8B4513;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 4px solid #D2691E;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 15px;
            background-color: #fdf6e3;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.02);
        }
        .stat-number {
            font-size: 30px;
            font-weight: bold;
            color: #8B5A2B;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 16px;
            color: #5D4037;
        }
        .review-container {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: relative;
        }
        .review-container::before {
            content: "🗣️";
            font-size: 28px;
            position: absolute;
            top: -12px;
            left: 15px;
            background-color: #fff;
            padding: 0 8px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #e0e0e0;
        }
        .reviewer {
            font-weight: bold;
            font-size: 18px;
            color: #6D4C41;
        }
        .rating {
            color: #FF9800;
            font-weight: bold;
            font-size: 17px;
        }
        .gameplay-tip {
            background-color: #fef8e1;
            border-left: 5px solid #FF9800;
            padding: 18px;
            margin: 20px 0;
            border-radius: 0 6px 6px 0;
            position: relative;
        }
        .gameplay-tip::before {
            content: "💡";
            position: absolute;
            left: -12px;
            top: 12px;
            font-size: 22px;
        }
        footer {
            background-color: #2D2D2D;
            color: #f5f5f5;
            padding: 40px 15px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 30px;
        }
        .game-types h4, .tags h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #FFD700;
            padding-bottom: 5px;
            border-bottom: 2px solid #444;
            display: inline-block;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .type-links a, .tag-links a {
            color: #f5f5f5;
            text-decoration: none;
            background-color: #444;
            padding: 6px 18px;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 15px;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #8B5A2B;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: #333;
            border-radius: 8px;
            font-size: 17px;
            line-height: 1.7;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 15px;
            color: #ccc;
        }
        .feature-list {
            margin: 20px 0;
            padding-left: 35px;
        }
        .feature-list li {
            margin-bottom: 12px;
            position: relative;
        }
        .feature-list li::before {
            content: "✔️";
            color: #2E7D32;
            font-weight: bold;
            position: absolute;
            left: -30px;
        }
        .region-badge {
            display: inline-block;
            background-color: #f0e6d2;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: bold;
            color: #8B5A2B;
            margin-right: 6px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #8B5A2B;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 8px 12px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
                margin-bottom: 20px;
            }
            h2 {
                font-size: 24px;
                margin: 30px 0 15px;
                padding-left: 0;
            }
            h2::before {
                display: none;
            }
            h3 {
                font-size: 20px;
                margin: 25px 0 12px;
            }
            p {
                font-size: 16px;
                margin-bottom: 18px;
            }
            .btn {
                padding: 10px 20px;
                margin: 8px 8px 15px 0;
                font-size: 15px;
                display: inline-block;
                width: calc(50% - 10px);
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .review-container {
                padding: 18px;
                margin: 15px 0;
            }
            .gameplay-tip {
                padding: 12px;
                margin: 15px 0;
            }
            .gameplay-tip::before {
                top: 8px;
            }
        }
