.game-detail {
    padding: 60px 0;
}

.game-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.game-cover {
    flex: 0 0 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-info {
    flex: 1;
}

.game-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.game-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.game-meta {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.meta-item i {
    margin-right: 5px;
    color: var(--primary-color);
}

.game-description {
    margin-bottom: 40px;
}

.game-features {
    margin-bottom: 40px;
}

.game-features h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-item h4 i {
    margin-right: 10px;
}

.game-story {
    margin-bottom: 40px;
}

.game-story h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.game-story p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.scene-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.scene-item {
    text-align: center;
}

.scene-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.scene-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.screenshots {
    margin-bottom: 40px;
}

.screenshots h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.screenshot-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: scale(1.02);
}

.download-section, .play-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 40px;
}

.download-section h3, .play-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.download-buttons, .play-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn, .play-btn {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
}

.download-btn i, .play-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.download-btn:hover, .play-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.qrcode-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 150px;
    height: 150px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qrcode-item p {
    margin-top: 10px;
    font-weight: 500;
}

/* 截图预览模态框样式 */
.screenshot-modal {
    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;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .game-header {
        flex-direction: column;
    }
    
    .game-cover {
        flex: 0 0 auto;
        max-width: 100%;
    }
}