* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #e65100;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #ffecb3;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        .mobile-menu {
            display: none;
            flex-direction: column;
            gap: 15px;
            margin-top: 15px;
        }
        .mobile-menu.active {
            display: flex;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #e65100;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            padding: 15px;
            background-color: #ffe0b2;
            border-radius: 8px;
            border-bottom: 3px solid #ef6c00;
        }
        h2 {
            color: #ef6c00;
            font-size: 2rem;
            margin: 35px 0 15px;
            border-left: 4px solid #ef6c00;
            padding-left: 15px;
        }
        h3 {
            color: #f57c00;
            font-size: 1.5rem;
            margin: 25px 0 10px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🍛 ";
            margin-right: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #e65100;
            text-decoration: underline dotted;
            text-underline-offset: 3px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #f57c00;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 10px 0;
            transition: 0.3s;
            text-align: center;
            box-shadow: 0 3px 5px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #e65100;
            transform: translateY(-2px);
            box-shadow: 0 5px 8px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: #43a047;
        }
        .btn-download:hover {
            background-color: #2e7d32;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            margin: 0 auto;
            border: 5px solid white;
        }
        .stats-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fff3e0;
            border-radius: 8px;
            border-top: 4px solid #f57c00;
        }
        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e65100;
            margin-bottom: 5px;
        }
        .review-box {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #f57c00;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .reviewer {
            font-weight: bold;
            color: #e65100;
            margin-top: 10px;
            display: block;
        }
        .tips-list {
            margin: 20px 0 20px 30px;
        }
        .tips-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }
        .tips-list li::before {
            content: "🌶️";
            position: absolute;
            left: 0;
            top: 2px;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 25px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffcc80;
            padding-bottom: 5px;
            border-bottom: 1px solid #ffcc80;
            display: inline-block;
        }
        .type-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .type-links a, .tag-links a {
            color: white;
            text-decoration: none;
            background-color: #555;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .type-links a:hover, .tag-links a:hover {
            background-color: #f57c00;
            transform: scale(1.05);
        }
        .recommendation {
            margin: 35px 0;
            padding: 20px;
            background-color: #444;
            border-radius: 8px;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 0.9rem;
            color: #ddd;
        }
        .emoji-highlight {
            display: inline-block;
            margin: 0 5px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                padding: 12px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 12px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
        }
