        /* 新增：隐藏新增的h1和p元素 */
        header h1:first-child,
        header p#ns45info {
            display: none;
        }
        
        /* 修改：将原来的h1样式应用到h2上 */
        .logo {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 10px;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        /* 确保品牌样式不变 */
        .logo .brand {
            position: relative;
            background: #fff;
            color: #e60012;
            padding: 0px 15px;
            border-radius: 12px;
            margin-right: 10px;
            display: inline-block;
            transform: rotate(-4deg);
            font-size: 2.2rem;
            font-weight: 900;
        }
        
        .logo .brand::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            background: #fff;
            border-radius: 8px;
            z-index: 1;
        }
        
        .logo .brand::after {
            content: 'NS';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #fff;
            color: #e60012;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            font-size: 2.2rem;
            font-weight: 900;
            transform: rotate(-4deg);
        }
        
        .logo .brand {
            box-shadow: 0 4px 12px rgba(230, 0, 18, 0.4);
        }
        
        /* 所有原始样式保持不变，只添加以下新样式 */
        .special-btn[data-count="0"] .special-count {
            background-color: rgba(153, 153, 153, 0.1);
            color: #999;
        }
        
        .special-btn[data-count="0"] {
            opacity: 0.8;
            border-color: #cccccc;
        }
        
        .special-btn[data-count="0"]:hover {
            opacity: 1;
            border-color: #999999;
        }
        
        /* 分页提示信息样式 */
        .page-info-message {
            text-align: center;
            padding: 15px;
            background-color: #f0f7ff;
            color: #3366aa;
            font-size: 0.95rem;
        }
        
        .page-info-message i {
            margin-right: 8px;
            color: #0066cc;
        }
        
        /* 新增：最火游戏样式 */
        .hot-game {
            color: #e60012 !important; /* 红色标题 */
            position: relative;
            padding-left: 26px; /* 为图标留出空间 */
        }
        
        .hot-icon {
            position: absolute;
            left: 0;
            top: 2px;
            color: #ff6b35; /* 橙色图标 */
            font-size: 1.1rem;
        }
        
        /* 链接有误按钮样式 */
        .error-report-btn {
            background-color: #ff4757 !important;
            color: white !important;
        }
        
        .error-report-btn:hover {
            background-color: #ff2e43 !important;
        }
        
        .error-report-btn.processing {
            background-color: #ffa502 !important;
            cursor: not-allowed;
        }
        
        .error-report-btn.success {
            background-color: #2ed573 !important;
        }
        
        .error-report-btn.failed {
            background-color: #535c68 !important;
        }
        
        .error-report-btn.disabled {
            background-color: #cccccc !important;
            cursor: not-allowed !important;
        }
        
        /* 修改确认提示样式，去掉原来的文字提示，改为表单 */
        .confirm-prompt {
            background-color: #fff8e1;
            border: 1px solid #ffc107;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .confirm-title {
            font-size: 1.2rem;
            color: #856404;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .confirm-content {
            font-size: 1rem;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.5;
            text-align: left;
        }
        
        /* 去掉原来的微信联系样式 */
        .wechat-contact {
            display: none;
        }
        
        /* 新增反馈表单样式 */
        .feedback-form {
            text-align: left;
        }
        
        .feedback-textarea {
            width: 100%;
            min-height: 120px;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 0.95rem;
            resize: vertical;
            margin-bottom: 15px;
            font-family: inherit;
        }
        
        .feedback-textarea:focus {
            outline: none;
            border-color: #0066cc;
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }
        
        .feedback-counter {
            text-align: right;
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 15px;
        }
        
        .feedback-counter.warning {
            color: #ff4757;
        }
        
        .feedback-tip {
            background-color: #e6f7ff;
            border: 1px solid #91d5ff;
            border-radius: 4px;
            padding: 8px 12px;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #0050b3;
        }
        
        .feedback-tip i {
            margin-right: 5px;
            color: #1890ff;
        }
        
        .confirm-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .confirm-submit-btn {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        
        .confirm-submit-btn:hover:not(:disabled) {
            background-color: #218838;
        }
        
        .confirm-submit-btn:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
        
        .confirm-cancel-btn {
            background-color: #6c757d;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        
        .confirm-cancel-btn:hover {
            background-color: #5a6268;
        }
        
        /* 新增：已有反馈提示样式 */
        .existing-feedback-prompt {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .existing-feedback-title {
            font-size: 1.1rem;
            color: #495057;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .existing-feedback-content {
            font-size: 1rem;
            color: #6c757d;
            line-height: 1.5;
        }
        
        /* 其他原始样式保持不变 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .container {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e0e0e0;
        }
        
        header {
            background: linear-gradient(to right, #e60012, #ff4d4d);
            padding: 30px 20px;
            text-align: center;
            border-bottom: 3px solid #e60012;
        }
        
        .tagline {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }
        
        .search-section {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-box {
            width: 100%;
            padding: 14px 60px 14px 20px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .search-box:focus {
            outline: none;
            box-shadow: 0 6px 20px rgba(230, 0, 18, 0.2);
        }
        
        .search-button {
            position: absolute;
            right: 6px;
            top: 50%;
            transform: translateY(-90%);
            background-color: #e60012;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .search-button:hover {
            background-color: #ff3333;
        }
        
        .search-info {
            margin-top: 10px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .search-keyword {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 2px 8px;
            border-radius: 4px;
            margin: 0 2px;
        }
        
        .category-filter {
            padding: 25px 20px;
            background-color: #fafafa;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .filter-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #e60012;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .filter-title i ,.special-title i{
            margin-right: 10px;
        }
        
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .category-btn {
            padding: 8px 16px;
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            color: #666666;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .category-btn:hover {
            background-color: #ffefef;
            border-color: #e60012;
            color: #e60012;
        }
        
        .category-btn.active {
            background-color: #e60012;
            border-color: #e60012;
            color: white;
        }
        
        .category-btn i {
            margin-right: 5px;
            font-size: 0.8rem;
        }
        
        .toggle-special-btn {
            width: 100%;
            margin-top: 20px;
            padding: 12px;
            background-color: #f0f7ff;
            border: 2px dashed #a0c8ff;
            border-radius: 8px;
            color: #3366aa;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .toggle-special-btn:hover {
            background-color: #e6f0ff;
            border-color: #0066cc;
            color: #004488;
        }
        
        .toggle-special-btn i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }
        
        .toggle-special-btn.collapsed i {
            transform: rotate(-90deg);
        }
        
        .special-category {
            padding: 20px;
            background-color: #f0f7ff;
            border-bottom: 1px solid #d0e3ff;
            display: none;
        }
        
        .special-category.visible {
            display: block;
        }
        
        .special-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0066cc;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .special-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .special-btn {
            padding: 8px 20px;
            background-color: #ffffff;
            border: 1px solid #a0c8ff;
            border-radius: 6px;
            color: #3366aa;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
        }
        
        .special-btn:hover {
            background-color: #e6f0ff;
            border-color: #0066cc;
            color: #004488;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 102, 204, 0.1);
        }
        
        .special-btn.active {
            background-color: #0066cc;
            border-color: #0066cc;
            color: white;
        }
        
        .special-count {
            background-color: rgba(0, 102, 204, 0.1);
            color: #0066cc;
            border-radius: 12px;
            padding: 2px 10px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 8px;
        }
        
        .special-btn.active .special-count {
            background-color: rgba(255, 255, 255, 0.3);
            color: white;
        }
        
        .game-list {
            padding: 20px;
        }
        
        .game-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px dashed #e0e0e0;
            margin-bottom: 0;
            transition: background-color 0.2s ease;
        }
        
        .game-item:hover {
            background-color: #f9f9f9;
        }
        
        .game-item:last-child {
            border-bottom: none;
        }
        
        .game-cover {
            position: relative;
            width: 176px;
            height: 100px;
            min-width: 160px;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .game-cover-img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            object-fit: cover;
            border: 1px solid #e0e0e0;
            display: block;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .game-cover-img.loaded {
            opacity: 1;
        }
        
        .image-placeholder {
            width: 100%;
            height: 100%;
            background-color: #f5f5f5;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid #e0e0e0;
            color: #999999;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .image-placeholder.hidden {
            display: none;
        }
        
        .image-placeholder i {
            font-size: 1.8rem;
            margin-bottom: 5px;
            color: #cccccc;
        }
        
        .image-placeholder span {
            font-size: 0.8rem;
        }
        
        .game-size {
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: rgba(230, 0, 18, 0.9);
            color: white;
            padding: 3px 8px;
            border-radius: 0 8px 0 8px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .game-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .game-name-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 5px;
        }
        
        .game-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #222222;
            line-height: 1.4;
        }
        
        .game-alias {
            font-size: 1rem;
            color: #666666;
            margin-left: 8px;
        }
        
        .game-alias::before {
            content: "| ";
            color: #999999;
        }
        
        .game-english-name {
            font-size: 1rem;
            color: #888888;
            margin-bottom: 8px;
            font-style: italic;
        }
        
        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        
        .chinese-tag {
            background-color: #e60012;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 4px;
        }
        
        /* 新增两个标签样式 */
        .special-tag {
            background-color: #28a745;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 4px;
        }
        
        .platform-tag {
            background-color: #ffc107;
            color: #333;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 4px;
        }
        
        .game-tag {
            background-color: #f0f0f0;
            color: #666666;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
        }
        
        .download-buttons {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-left: 15px;
            min-width: 100px;
        }
        
        .download-btn {
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        
        .baidu-btn {
            background-color: #2932e1;
            color: white;
        }
        
        .baidu-btn:hover {
            background-color: #1a22c9;
        }
        
        .quark-btn {
            background-color: #ff6b35;
            color: white;
        }
        
        .quark-btn:hover {
            background-color: #e55a2b;
        }
        
        .empty-download-space {
            height: 37px;
            visibility: hidden;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            padding: 25px 20px;
            border-top: 1px solid #f0f0f0;
            background-color: #fafafa;
        }
        
        .page-numbers {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .page-number {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid #e0e0e0;
            color: #666666;
        }
        
        .page-number:hover {
            background-color: #ffefef;
            border-color: #e60012;
            color: #e60012;
        }
        
        .page-number.active {
            background-color: #e60012;
            color: white;
            border-color: #e60012;
        }
        
        /* 修改清空按钮样式 */
        .clear-all-btn {
            display: block;
            width: 280px;
            margin: 30px auto;
            padding: 16px 30px;
            background: linear-gradient(to right, #e60012, #ff3333);
            color: white;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 10px;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(230, 0, 18, 0.2);
            border: none;
            cursor: pointer;
        }
        
        .clear-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 0, 18, 0.3);
            background: linear-gradient(to right, #ff3333, #ff6666);
        }
        
        .footer {
            text-align: center;
            padding: 20px;
            color: #999999;
            font-size: 0.9rem;
            border-top: 1px solid #f0f0f0;
            background-color: #fafafa;
        }
        
        .loading-indicator {
            text-align: center;
            padding: 40px;
            color: #666;
            font-size: 1.1rem;
        }
        
        .loading-indicator i {
            margin-right: 10px;
            color: #e60012;
        }
        
        .search-results-info {
            padding: 15px 20px;
            background-color: #f0f7ff;
            border-bottom: 1px solid #d0e3ff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .results-count {
            font-size: 1rem;
            color: #0066cc;
            font-weight: 600;
        }
        
        .current-filter {
            font-size: 0.9rem;
            color: #666;
        }
        
        .clear-filter-btn {
            background-color: #ff6b35;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        
        .clear-filter-btn:hover {
            background-color: #e55a2b;
        }
        
        /* 二维码模态框样式 */
        .qr-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .qr-modal-content {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            max-width: 450px;
            width: 90%;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .qr-modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e60012;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qr-modal-title i {
            margin-right: 10px;
        }
        
        .qr-modal-subtitle {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
        }
        
        .qr-container {
            margin: 20px auto;
            display: flex;
            justify-content: center;
        }
        
        .qr-code-canvas {
            width: 200px;
            height: 200px;
            background-color: white;
            padding: 10px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
        }
        
        /* 小程序二维码图片样式 */
        .mini-program-qrcode {
            width: 200px;
            height: 200px;
            object-fit: contain;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 5px;
        }
        
        /* 公众号二维码图片样式 */
        .official-account-qrcode {
            width: 200px;
            height: 200px;
            object-fit: contain;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 5px;
        }
        
        .qr-mode-switch {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .mode-switch-btn {
            background-color: #f0f0f0;
            color: #666;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .mode-switch-btn.active {
            background-color: #e60012;
            color: white;
        }
        
        .mode-switch-btn:hover:not(.active) {
            background-color: #e0e0e0;
        }
        
        .qr-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }
        
        .qr-copy-btn {
            background-color: #2932e1;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
            flex: 1;
        }
        
        .qr-copy-btn:hover {
            background-color: #1a22c9;
        }
        
        .qr-close-btn {
            background-color: #666;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
            flex: 1;
        }
        
        .qr-close-btn:hover {
            background-color: #555;
        }
        
        .copy-success {
            color: #28a745;
            font-size: 0.9rem;
            margin-top: 10px;
            display: none;
        }
        
        .copy-success.show {
            display: block;
        }
        
        /* 新增：链接有误按钮样式 */
        .qr-error-btn {
            background-color: #ff4757;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
            flex: 1;
        }
        
        .qr-error-btn:hover {
            background-color: #ff2e43;
        }
        
        .qr-error-btn.processing {
            background-color: #ffa502;
            cursor: not-allowed;
        }
        
        .qr-error-btn.success {
            background-color: #2ed573;
        }
        
        .qr-error-btn.failed {
            background-color: #535c68;
        }
        
        .qr-error-btn.disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
        
        .error-report-success {
            color: #2ed573;
            font-size: 0.9rem;
            margin-top: 10px;
            display: none;
        }
        
        .error-report-success.show {
            display: block;
        }
        
        @media (max-width: 1200px) {
            body {
                padding: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .game-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 15px 0;
            }
            
            .game-cover {
                width: 100%;
                height: 180px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .download-buttons {
                flex-direction: row;
                margin-left: 0;
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }
            
            .categories, .special-categories {
                gap: 8px;
            }
            
            .category-btn, .special-btn {
                padding: 6px 12px;
                font-size: 0.85rem;
            }
            
            .logo {
                font-size: 2.2rem;
            }
            
            .tagline {
                font-size: 1rem;
            }
            
            .clear-all-btn {
                width: 90%;
            }
            
            .search-box {
                padding: 12px 60px 12px 16px;
                font-size: 1rem;
            }
            
            .search-button {
                padding: 8px 16px;
                font-size: 0.9rem;
                right: 6px;
                top: 50%;
                transform: translateY(-50%);
            }
            
            /* 移动端隐藏搜索提示信息 */
            .search-info {
                display: none;
            }
            
            .search-results-info {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
            
            /* 移动端调整二维码模态框 */
            .qr-modal-content {
                width: 95%;
                padding: 20px;
            }
            
            .qr-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .page-number {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }
            
            .page-info-message {
                font-size: 0.85rem;
                padding: 10px;
            }
            
            /* 移动端调整模式切换按钮 */
            .qr-mode-switch {
                flex-direction: column;
                gap: 5px;
            }
            
            .mode-switch-btn {
                padding: 8px 12px;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 576px) {
            body {
                padding: 10px;
            }
            
            .game-item {
                padding: 12px 0;
            }
            
            .page-number {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }
            
            .download-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .search-button {
                position: absolute;
                right: 6px;
                top: 50%;
                transform: translateY(-50%);
                margin-top: 0;
                width: auto;
            }
            
            .page-info-message {
                font-size: 0.8rem;
                padding: 8px;
            }
        }
        
        
.after-feedback-panel {
    text-align: center;
    padding: 20px 10px;
}
.after-feedback-title {
    font-size: 20px;
    font-weight: bold;
    color: #2ed573;
    margin-bottom: 15px;
}
.after-feedback-message {
    background-color: #f8f9fa;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #333;
}
.after-feedback-link {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
    word-break: break-all;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
    border: 1px dashed #aaa;
}
.after-feedback-copy-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}
.after-feedback-copy-btn:hover {
    background-color: #218838;
}