* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #b35900, #e67e22);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            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: 18px;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #b35900;
            font-size: 36px;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
            padding-bottom: 15px;
            border-bottom: 3px dotted #e67e22;
        }
        h2 {
            color: #b35900;
            font-size: 28px;
            margin: 40px 0 20px;
            border-left: 5px solid #e67e22;
            padding-left: 15px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #e67e22;
            font-size: 22px;
            margin: 30px 0 15px;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b35900;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 20px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
            font-family: 'Arial', sans-serif;
        }
        .btn:hover {
            background-color: #b35900;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 5px solid white;
        }
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 40px 0;
            gap: 20px;
        }
        .stat-box {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-top: 5px solid #e67e22;
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #e67e22;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 18px;
            color: #555;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #f39c12;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            font-weight: bold;
            font-size: 18px;
            color: #b35900;
        }
        .rating {
            color: #f1c40f;
            font-size: 20px;
        }
        .tag-container {
            margin: 40px 0;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #f39c12;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #b35900;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            color: #e67e22;
            text-decoration: none;
            margin: 0 10px 10px 0;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .game-type:hover {
            color: #b35900;
            border-bottom: 2px solid #b35900;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f39c12;
            margin-bottom: 20px;
            font-size: 20px;
            border-bottom: 2px solid #f39c12;
            padding-bottom: 10px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            margin-top: 30px;
            font-size: 16px;
            color: #bbb;
        }
        .recommendation {
            background-color: #fef5e7;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 5px solid #e67e22;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .feature-list {
            margin: 20px 0 30px 40px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #e67e22;
            padding-left: 20px;
            margin: 30px 0;
            color: #555;
        }
        @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: #e67e22;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 17px;
                text-align: left;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 80%;
            }
            .stat-box {
                min-width: 100%;
            }
        }
