* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #fffbf5;
            color: #3a2e1f;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #8b4513, #cd853f);
            padding: 18px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            font-family: 'Georgia', 'Times New Roman', serif;
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 35px;
        }
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 45px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 38px;
            margin-bottom: 35px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
            padding-bottom: 20px;
            border-bottom: 3px dotted #cd853f;
        }
        h2 {
            color: #8b4513;
            font-size: 30px;
            margin: 50px 0 25px;
            border-left: 6px solid #cd853f;
            padding-left: 18px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #cd853f;
            font-size: 24px;
            margin: 35px 0 20px;
            font-family: 'Georgia', serif;
            padding-bottom: 5px;
            border-bottom: 1px solid #f0e6d6;
        }
        p {
            margin-bottom: 25px;
            font-size: 18px;
            text-align: justify;
            color: #4a3c2b;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px;
            background-color: #cd853f;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-size: 21px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
            font-family: 'Arial', sans-serif;
        }
        .btn:hover {
            background-color: #8b4513;
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            border: 6px solid white;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 50px 0;
            gap: 25px;
        }
        .stat-box {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            flex: 1;
            min-width: 280px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
            border-top: 6px solid #cd853f;
            transition: transform 0.3s ease;
        }
        .stat-box:hover {
            transform: translateY(-8px);
        }
        .stat-number {
            font-size: 42px;
            font-weight: bold;
            color: #cd853f;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 19px;
            color: #5d4b36;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border-left: 6px solid #d2691e;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }
        .reviewer {
            font-weight: bold;
            font-size: 19px;
            color: #8b4513;
        }
        .rating {
            color: #ffd700;
            font-size: 22px;
        }
        .tag-container {
            margin: 50px 0;
            padding: 25px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
        }
        .tag {
            display: inline-block;
            background-color: #d2691e;
            color: white;
            padding: 10px 18px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #8b4513;
            transform: scale(1.08);
        }
        .game-type {
            display: inline-block;
            color: #cd853f;
            text-decoration: none;
            margin: 0 12px 12px 0;
            font-size: 19px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .game-type:hover {
            color: #8b4513;
            border-bottom: 2px solid #8b4513;
        }
        footer {
            background-color: #3a2e1f;
            color: white;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #f4a460;
            margin-bottom: 25px;
            font-size: 22px;
            border-bottom: 2px solid #f4a460;
            padding-bottom: 12px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #5d4b36;
            margin-top: 40px;
            font-size: 17px;
            color: #d2c8b8;
        }
        .recommendation {
            background-color: #fff5e6;
            padding: 30px;
            border-radius: 12px;
            margin: 50px 0;
            border-left: 6px solid #cd853f;
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
        }
        .feature-list {
            margin: 25px 0 35px 50px;
        }
        .feature-list li {
            margin-bottom: 20px;
            font-size: 18px;
            color: #4a3c2b;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #cd853f;
            padding-left: 22px;
            margin: 35px 0;
            color: #5d4b36;
            font-size: 19px;
        }
        .tips-box {
            background-color: #f9f4ea;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 1px dashed #d2b48c;
        }
        .tips-box h4 {
            color: #8b4513;
            margin-bottom: 15px;
            font-size: 20px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #cd853f;
                padding: 25px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 17px;
                text-align: left;
            }
            .btn {
                display: block;
                margin: 20px auto;
                width: 85%;
            }
            .stat-box {
                min-width: 100%;
            }
            .review-container {
                padding: 25px;
            }
        }
