* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #2d2413;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #b35c1e;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffdd57;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffdd57;
            transition: width 0.3s ease;
        }
        nav ul li a:hover {
            color: #ffdd57;
        }
        nav ul li a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #b35c1e;
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
            position: relative;
            padding-bottom: 15px;
        }
        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background-color: #ff9800;
        }
        h2 {
            color: #b35c1e;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #ffcc80;
            position: relative;
            font-family: 'Georgia', serif;
        }
        h2::before {
            content: '🌶️';
            margin-right: 10px;
        }
        h3 {
            color: #b35c1e;
            font-size: 1.6rem;
            margin: 35px 0 18px;
            position: relative;
            padding-left: 15px;
        }
        h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #e65100;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.12rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b35c1e;
            text-decoration: underline;
            text-decoration-style: dotted;
            text-underline-offset: 4px;
        }
        .image-container {
            margin: 40px 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);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 15px;
            background-color: #b35c1e;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.25rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #8d4514;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #388e3c;
        }
        .download-btn:hover {
            background-color: #2e7d32;
        }
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 50px 0;
            gap: 25px;
        }
        .stat-box {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            flex: 1;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .stat-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff9800, #ff5722);
        }
        .stat-box:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #b35c1e;
            margin-bottom: 12px;
            font-family: 'Arial Black', sans-serif;
        }
        .stat-text {
            font-size: 1.1rem;
            color: #5d4037;
        }
        .review-container {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        .review-container::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: #ffecb3;
            font-family: Georgia, serif;
            line-height: 1;
            opacity: 0.5;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-left: 10px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            background-color: #ffcc80;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #b35c1e;
            font-size: 1.3rem;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .reviewer-name {
            font-weight: bold;
            font-size: 1.15rem;
            color: #5d4037;
        }
        .stars {
            color: #ffc107;
            margin: 12px 0;
            font-size: 1.2rem;
        }
        .tag-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ffe0b2;
            color: #5d4037;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .tag:hover {
            background-color: #b35c1e;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 35px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 25px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #b35c1e;
            font-weight: bold;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        .game-type::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #e65100;
            transition: width 0.3s ease;
        }
        .game-type:hover {
            color: #e65100;
        }
        .game-type:hover::after {
            width: 100%;
        }
        footer {
            background-color: #2d2413;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ffdd57;
            font-family: 'Georgia', serif;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ffdd57;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #5d4037;
            margin-top: 40px;
            font-size: 0.95rem;
            color: #b0b0b0;
        }
        .tips-box {
            background-color: #fff3e0;
            border-left: 4px solid #ff9800;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .tips-box h4 {
            color: #e65100;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }
        .tips-box h4::before {
            content: '💡';
            margin-right: 10px;
        }
        .region-badge {
            display: inline-block;
            background-color: #ffecb3;
            color: #b35c1e;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #b35c1e;
                padding: 25px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 14px 20px;
            }
            .stat-box {
                padding: 20px;
                min-width: 100%;
            }
            .review-container {
                padding: 25px 20px;
            }
            .image-container {
                margin: 30px 0;
            }
        }
