* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.game-header {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.game-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.game-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
}

.game-icon {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    margin-right: 30px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.game-icon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.game-info {
    flex: 1;
    color: #333;
}

.game-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
}

.game-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.game-title:hover::after {
    transform: scaleX(1);
}

.game-suffix {
    font-size: 18px;
    color: #ff6b6b;
    margin-left: 10px;
    font-weight: 600;
    background-color: rgba(255, 107, 107, 0.1);
    padding: 2px 10px;
    border-radius: 15px;
}

/* 美化标签样式 */
.tag-display {
    margin: 8px 0;
}

.beautified-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.beautified-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.beautified-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    z-index: 10;
}

.beautified-tag:hover::before {
    left: 100%;
}

/* 不同类型标签的渐变背景 */
.beautified-tag[type="category"] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.beautified-tag[type="feature"] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.beautified-tag[type="quality"] {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #4a5568;
}

.beautified-tag[type="platform"] {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #4a5568;
}

/* 标签图标装饰 */
.beautified-tag::after {
    content: '🎮';
    margin-left: 5px;
    font-size: 14px;
    opacity: 0.8;
}

.game-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
}

.game-details div {
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.game-details div:hover {
    color: #ff6b6b;
}

.game-details span {
    color: #5a6c7d;
}

.game-details strong {
    color: #2c3e50;
    margin-left: 5px;
    font-weight: 600;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: #ffffff;
    color: #333;
    border: 1px solid #e0e0e0;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tag:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
    transform: translateY(-1px);
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: white !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    z-index: 1 !important;
    border: none !important;
    min-width: auto !important;
    max-width: 200px !important;
    width: auto !important;
    height: auto !important;
    transition: none !important;
    transform: none !important;
    min-height: auto !important;
    overflow: visible !important;
    line-height: 1.5 !important;
}

.download-btn::before,
.download-btn::after {
    display: none;
}

.download-btn:hover,
.download-btn:active,
.download-btn:focus {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    outline: none !important;
    width: auto !important;
    height: auto !important;
    min-height: auto !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    max-width: 200px !important;
}

.ios-btn {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%) !important;
    color: white !important;
    transition: none !important;
}

.ios-btn:hover,
.ios-btn:active,
.ios-btn:focus {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transform: none !important;
    outline: none !important;
    width: auto !important;
    height: auto !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
}

.android-btn {
    background: linear-gradient(135deg, #4cd964 0%, #34c759 100%) !important;
    color: white !important;
    transition: none !important;
}

.android-btn:hover,
.android-btn:active,
.android-btn:focus {
    background: linear-gradient(135deg, #4cd964 0%, #34c759 100%) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transform: none !important;
    outline: none !important;
    width: auto !important;
    height: auto !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
}

.download-btn i {
    margin-right: 8px !important;
    font-size: 18px !important;
    position: relative !important;
    z-index: 1 !important;
}

.download-btn span {
    position: relative;
    z-index: 1;
}

.section {
    background-color: #fff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 12px 20px;
    color: #4a90e2;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: inline-block;
    border-bottom: none;
}

.content {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-word;
    border-left: 4px solid #4a90e2;
    position: relative;
}

.content::before {
    content: '📖';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 30px;
    background: #4a90e2;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.content:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.content p {
    margin-bottom: 15px;
    text-align: justify;
    text-indent: 2em;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.content p:last-child {
    margin-bottom: 0;
}

/* 优化的文本段落样式 */
.text-paragraph {
    margin-bottom: 10px;
    /* 取消首行缩进 */
    text-indent: 0;
}

.text-paragraph:last-child {
    margin-bottom: 0;
}

.welfare-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-radius: 12px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15);
    border-left: 5px solid #ffc107;
    position: relative;
    overflow: hidden;
}

.welfare-box::before {
    content: '🎁';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 80px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.welfare-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e67e22;
    display: flex;
    align-items: center;
}

.welfare-header::before {
    content: '💎';
    margin-right: 8px;
    font-size: 20px;
}

.welfare-content {
    font-size: 15px;
    line-height: 1.8;
    color: #6d4c41;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 15px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    white-space: pre-wrap;
    word-break: break-word;
}

.welfare-content ul {
    margin: 0;
    padding-left: 25px;
}

.welfare-content li {
    margin-bottom: 10px;
    position: relative;
}

.welfare-content li::before {
    content: '✨';
    position: absolute;
    left: -20px;
    top: 2px;
}

/* 优化的福利列表样式 */
.welfare-list {
    width: 100%;
}

.welfare-item {
    position: relative;
    padding-left: 25px;
    padding-bottom: 12px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.welfare-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.welfare-item::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 2px;
    color: #ffc107;
}

.gift-code {
    margin-bottom: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    border: 1px solid #f5f5f5;
}

.gift-code::after {
    content: '🎯';
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 40px;
    opacity: 0.2;
}

.gift-code:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.25);
}

.gift-code strong {
    color: #1976d2;
    font-weight: 700;
    font-size: 16px;
    margin-right: 10px;
}

.screenshot-slider {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 35px;
    border: 1px solid #eaeaea;
}

.screenshot-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #ddd #f8f9fa;
    gap: 15px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-container::-webkit-scrollbar {
    height: 6px;
}

.screenshot-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.screenshot-container::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.screenshot-container::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.screenshot-item {
    flex: 0 0 auto;
    width: 340px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background-color: white;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.02);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.slider-btn:active {
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* 页面加载动画 */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 元素进入动画 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 面包屑导航交互 */
.breadcrumb a {
    position: relative;
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #667eea;
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
}

.breadcrumb a:hover::after {
    width: 100%;
}

/* 按钮点击反馈 */
.download-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* 标签点击效果 */
.beautified-tag:active {
    transform: scale(0.98);
}

/* 卡片微动画 */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.related-game-item:nth-child(odd) {
    animation: float 5s ease-in-out infinite;
}

.related-game-item:nth-child(even) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

/* 数字计数器动画 */
.counter {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* 滚动进度指示器 */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* 截图查看器样式 */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-viewer.active {
    opacity: 1;
    visibility: visible;
}

.viewer-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.viewer-content img {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.close-viewer {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-viewer:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* 相关游戏区域 */
.related-games {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 35px;
}

/* 推荐游戏网格布局 */
.related-game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

/* 推荐游戏卡片 */
.related-game-item {
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* 卡片悬停效果 */
.related-game-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* 游戏封面图片 */
.related-game-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-game-item:hover .related-game-image {
    transform: scale(1.03);
}

/* 游戏名称 */
.related-game-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
    margin: 0;
    padding: 12px 8px;
    background-color: #f8f9fa;
}

.related-game-item:hover .related-game-name {
    color: #4a90e2;
}

/* 游戏评分标签 */
.related-game-rating {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: #f59e0b;
    margin-top: 8px;
    background-color: rgba(245, 158, 11, 0.1);
    padding: 3px 8px;
    border-radius: 12px;
    align-self: center;
}

.related-game-rating::before {
    content: '⭐';
    margin-right: 4px;
    font-size: 12px;
}

/* 热门标签 */
.hot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
    z-index: 5;
}

/* 响应式设计 - 小手机 (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 10px;
        width: 100%;
    }
    
    .breadcrumb {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .game-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }
    
    .game-icon {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .game-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .game-details {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }
    
    .detail-item {
        padding: 10px;
        font-size: 13px;
    }
    
    .tags-container {
        margin-top: 15px;
        text-align: center;
    }
    
    .beautified-tag {
        padding: 4px 10px;
        font-size: 12px;
        margin-right: 6px;
        margin-bottom: 6px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .content {
        padding: 15px;
        font-size: 14px;
        word-wrap: break-word;
        white-space: pre-wrap;
        word-break: break-word;
    }
    
    .welfare-box {
        padding: 20px 15px;
    }
    
    .gift-code {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .screenshot-slider {
        padding: 15px;
    }
    
    .screenshot-container {
        gap: 10px;
    }
    
    .screenshot-item {
        width: 80%;
        margin: 0 auto;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .related-games {
        padding: 20px 15px;
    }
    
    .related-game-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .related-game-info {
        padding: 10px;
    }
    
    .related-game-name {
        font-size: 13px;
    }
}

/* 响应式设计 - 平板/大手机 (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .game-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }
    
    .game-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .game-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .screenshot-item {
        width: 60%;
    }
    
    .related-game-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

/* 响应式设计 - 小型笔记本/平板横屏 (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .game-header {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .game-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-game-list {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* 响应式设计 - 中型屏幕 (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
    .related-game-list {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* 响应式设计 - 大屏幕 (1201px+) */
@media (min-width: 1201px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .beautified-tag:hover {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    }
    
    .related-game-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    }
    
    .download-btn:hover {
        transform: translateY(-2px);
    }
}