        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fffbf5;
            color: #2d2416;
            line-height: 1.8;
            padding-bottom: 60px;
            font-size: 17px;
        }
        header {
            background-color: #b85c38;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.7px;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            list-style: none;
        }
        .main-nav li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav li a:hover {
            color: #ffeedd;
            border-bottom: 2px solid #ffeedd;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 28px;
            cursor: pointer;
            margin-left: auto;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 900;
            line-height: 1.5;
            padding-bottom: 15px;
            border-bottom: 3px solid #e67e22;
        }
        h2 {
            color: #8b4513;
            font-size: 28px;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e67e22;
            font-weight: 800;
        }
        h3 {
            color: #8b4513;
            font-size: 22px;
            margin: 35px 0 18px;
            font-weight: 700;
            position: relative;
            padding-left: 10px;
        }
        h3::before {
            content: '🌶️';
            position: absolute;
            left: -30px;
            top: 2px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 800;
            color: #8b4513;
            text-decoration: underline dotted #b85c38;
            text-underline-offset: 4px;
        }
        .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 0 rgba(0,0,0,0.15);
            text-align: center;
            min-width: 200px;
        }
        .download-btn {
            background-color: #27ae60;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 rgba(0,0,0,0.2);
        }
        .login-btn {
            background-color: #2980b9;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #1e6091;
            transform: translateY(-3px);
            box-shadow: 0 6px 0 rgba(0,0,0,0.2);
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 3px solid #fff0e0;
        }
        .stats-card {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #e67e22;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f5f0e5;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-label {
            font-size: 17px;
            font-weight: 600;
        }
        .stat-value {
            font-size: 17px;
            font-weight: 700;
            color: #b85c38;
        }
        .review-card {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 12px rgba(0,0,0,0.06);
            border-top: 5px solid #e67e22;
            position: relative;
        }
        .review-card::before {
            content: '"';
            font-size: 70px;
            color: #e67e22;
            opacity: 0.2;
            position: absolute;
            top: -15px;
            left: 15px;
            font-family: 'Georgia', serif;
        }
        .review-text {
            font-size: 17px;
            margin-bottom: 15px;
            padding-left: 10px;
        }
        .reviewer {
            font-style: italic;
            color: #665233;
            font-size: 16px;
            text-align: right;
        }
        .content-list {
            margin: 20px 0 30px 40px;
        }
        .content-list li {
            margin-bottom: 15px;
            padding-left: 10px;
            position: relative;
        }
        .content-list li::before {
            content: '•';
            color: #b85c38;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        .tips-list {
            margin: 25px 0 30px 45px;
        }
        .tips-list li {
            font-size: 17px;
            margin-bottom: 20px;
            padding-left: 15px;
            position: relative;
        }
        .tips-list li::before {
            content: '🔥';
            position: absolute;
            left: -35px;
            top: 2px;
        }
        .tags-section {
            margin: 50px 0 30px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 20px 0;
        }
        .tag-link {
            background-color: #f3d19E;
            color: #8b4513;
            padding: 8px 18px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #b85c38;
            color: #ffffff;
            transform: translateY(-2px);
        }
        .game-types-section {
            margin: 30px 0 50px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 20px 0;
        }
        .type-link {
            color: #2980b9;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .type-link:hover {
            color: #1e6091;
            border-bottom: 2px solid #1e6091;
        }
        .toc {
            background-color: #fff5ea;
            border-radius: 8px;
            padding: 20px;
            margin: 0 0 40px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .toc h2 {
            margin: 0 0 15px 0;
            padding-bottom: 8px;
            font-size: 22px;
        }
        .toc-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 20px;
            list-style: none;
        }
        .toc-list li a {
            color: #8b4513;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.2s ease;
        }
        .toc-list li a:hover {
            color: #b85c38;
            text-decoration: underline;
        }
        footer {
            background-color: #2d2416;
            color: #f1e8d9;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-column h3 {
            color: #f3d19E;
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f3d19E;
        }
        .footer-column p {
            font-size: 16px;
            margin-bottom: 15px;
            text-align: left;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #f1e8d9;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: #f3d19E;
            padding-left: 5px;
        }
        .recommendation {
            margin: 30px 0 15px;
            font-size: 17px;
            text-align: center;
            font-weight: 600;
            color: #f3d19E;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #4a3d29;
            font-size: 15px;
            color: #b0a48f;
        }
        @media (max-width: 768px) {
            .mobile-nav-container {
                display: flex;
                align-items: center;
            }
            .mobile-menu-btn {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                gap: 15px;
                margin-top: 15px;
                padding-top: 15px;
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            .main-nav.active {
                display: flex;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 24px;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 20px;
                padding-left: 0;
            }
            h3::before {
                left: -25px;
            }
            p, .content-list li, .tips-list li, .stat-label, .stat-value, .review-text, .reviewer {
                font-size: 16px;
            }
            .btn {
                width: 100%;
                max-width: 320px;
            }
            .tips-list {
                margin-left: 30px;
            }
            .tips-list li::before {
                left: -30px;
            }
            .toc-list {
                flex-direction: column;
                gap: 8px;
            }
        }
