* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', sans-serif;
        }
        body {
            background-color: #f5f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #8B4513;
            color: #fff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            color: #FFE4B5;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-family: 'Noto Serif', serif;
            letter-spacing: 0.5px;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            gap: 22px;
            padding: 12px 0;
        }
        .nav-links li a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            padding: 9px 14px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .nav-links li a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.9rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 25px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #8B4513;
            text-align: center;
            margin: 30px 0 40px;
            font-size: 2.5rem;
            padding-bottom: 15px;
            border-bottom: 3px solid #DAA520;
            font-family: 'Noto Serif', serif;
        }
        h2 {
            color: #8B4513;
            margin: 45px 0 22px;
            font-size: 2rem;
            padding-left: 15px;
            border-left: 4px solid #DAA520;
            font-family: 'Noto Serif', serif;
        }
        h3 {
            color: #5C3311;
            margin: 35px 0 18px;
            font-size: 1.6rem;
            font-family: 'Noto Serif', serif;
            padding-bottom: 5px;
            border-bottom: 1px solid #e0d0b8;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8B4513;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 45px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #228B22;
            color: white;
        }
        .login-btn {
            background-color: #1E90FF;
            color: white;
        }
        .image-container {
            margin: 45px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            border: 1px solid #ddd;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 28px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border-left: 5px solid #DAA520;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin: 35px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-6px);
        }
        .reviewer {
            font-weight: bold;
            color: #8B4513;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .rating {
            color: #DAA520;
            font-size: 1.2rem;
        }
        .tag-container {
            margin: 45px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag {
            background-color: #f0e6d6;
            padding: 9px 20px;
            border-radius: 25px;
            text-decoration: none;
            color: #5C3311;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid #e0d0b8;
        }
        .tag:hover {
            background-color: #8B4513;
            color: white;
            border-color: #8B4513;
        }
        .game-types {
            margin: 45px 0;
        }
        .type-link {
            color: #1E90FF;
            text-decoration: none;
            margin-right: 22px;
            font-weight: 500;
            font-size: 1.1rem;
        }
        .type-link:hover {
            text-decoration: underline;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 55px 20px 35px;
            margin-top: 70px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #FFE4B5;
            margin-bottom: 25px;
            font-size: 1.5rem;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(255,228,181,0.3);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #555;
            font-size: 0.95rem;
            color: #ccc;
        }
        .tips-list {
            margin: 25px 0 35px 45px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .quote-box {
            border-left: 4px solid #DAA520;
            padding: 15px 20px;
            margin: 30px 0;
            background-color: rgba(218, 165, 32, 0.05);
            font-style: italic;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                gap: 18px;
                padding: 25px 0;
                background-color: #8B4513;
                border-radius: 0 0 10px 10px;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                box-shadow: 0 6px 12px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
                margin: 25px 0 35px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 35px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .reviews-container {
                grid-template-columns: 1fr;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 14px 22px;
                font-size: 1.05rem;
            }
            .stat-item {
                flex-direction: column;
                gap: 8px;
            }
            .tips-list {
                margin-left: 30px;
            }
            .quote-box {
                margin: 25px 0;
                padding: 12px 15px;
            }
        }
