* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f5f1e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #8b5a2b;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 26px;
            font-weight: bold;
            color: #ffebcd;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #ffebcd;
            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: #ffebcd;
            font-size: 28px;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #8b4513;
            margin-bottom: 35px;
            font-size: 38px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #8b5a2b;
            margin: 45px 0 25px;
            font-size: 30px;
            border-bottom: 3px solid #cd853f;
            padding-bottom: 12px;
            position: relative;
            padding-left: 10px;
        }
        h2::before {
            content: "🌶️";
            position: absolute;
            left: -30px;
            top: 5px;
        }
        h3 {
            color: #8b4513;
            margin: 35px 0 18px;
            font-size: 24px;
            padding-left: 15px;
            border-left: 4px solid #d2691e;
        }
        p {
            margin-bottom: 22px;
            font-size: 19px;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #8b5a2b;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 12px 25px 0;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #6d4c41;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #2e7d32;
        }
        .btn-download:hover {
            background-color: #1b5e20;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 5px solid #fff;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
            text-decoration: underline dotted #cd853f;
            text-underline-offset: 4px;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #d2691e;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fdf6e3;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #8b5a2b;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 17px;
            color: #5d4037;
        }
        .review-container {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        .review-container::before {
            content: "💬";
            font-size: 30px;
            position: absolute;
            top: -15px;
            left: 20px;
            background-color: #fff;
            padding: 0 10px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #e0e0e0;
        }
        .reviewer {
            font-weight: bold;
            font-size: 19px;
            color: #6d4c41;
        }
        .rating {
            color: #ff9800;
            font-weight: bold;
            font-size: 18px;
        }
        .gameplay-tip {
            background-color: #fef8e1;
            border-left: 6px solid #ff9800;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .gameplay-tip::before {
            content: "💡";
            position: absolute;
            left: -15px;
            top: 15px;
            font-size: 24px;
        }
        footer {
            background-color: #2d2d2d;
            color: #f5f5f5;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin-bottom: 40px;
        }
        .game-types h4, .tags h4 {
            font-size: 22px;
            margin-bottom: 20px;
            color: #ffd700;
            padding-bottom: 8px;
            border-bottom: 2px solid #444;
            display: inline-block;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .type-links a, .tag-links a {
            color: #f5f5f5;
            text-decoration: none;
            background-color: #444;
            padding: 8px 20px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #8b5a2b;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 40px 0;
            padding: 25px;
            background-color: #333;
            border-radius: 10px;
            font-size: 18px;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #444;
            font-size: 16px;
            color: #ccc;
        }
        .feature-list {
            margin: 25px 0;
            padding-left: 40px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 19px;
            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: 3px 10px;
            border-radius: 15px;
            font-size: 14px;
            font-weight: bold;
            color: #8b5a2b;
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #8b5a2b;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 32px;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 26px;
                margin: 35px 0 20px;
                padding-left: 0;
            }
            h2::before {
                display: none;
            }
            h3 {
                font-size: 22px;
                margin: 30px 0 15px;
            }
            p {
                font-size: 17px;
                margin-bottom: 20px;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 10px 20px 0;
                font-size: 16px;
                display: inline-block;
                width: calc(50% - 12px);
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .review-container {
                padding: 20px;
                margin: 20px 0;
            }
            .gameplay-tip {
                padding: 15px;
                margin: 20px 0;
            }
            .gameplay-tip::before {
                top: 10px;
            }
        }
