.featured-section {
    padding: 0;
}
.game-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.game-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #fff;
    display: flex;
    gap: 4rem;
    padding-bottom: 200px;
}

.game-title-section {
    flex: 1;
    max-width: 500px;
    padding-left: 60px;
}

.game-description-section {
    flex: 1;
}

.game-title {
    font-size: 3.5rem;
    color: #222c37;
    margin-bottom: 0.5rem;
    text-align: left;
}

.game-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.game-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 3rem;
    text-align: left;
}

.store-buttons {
    display: flex;
    gap: 1rem;
}

.store-button {
    position: relative;
    display: inline-block;
    width: 177px; /* 固定按钮宽度（匹配图片尺寸） */
    height: 60px; /* 固定按钮高度（匹配图片尺寸） */
    text-decoration: none;
    -webkit-tap-highlight-color: transparent; /* 移除Safari点击高亮 */
}

.store-button img {
    height: 100%;
    transition: opacity 0.3s ease;
}

.store-button:hover img {
    opacity: 0.8;
}

.store-button-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 75px; /* 精准避开图标，对齐文字区域 */
    color: #ffffff;
    font-size: 15px; /* 适配177x60px按钮的最佳字号 */
    font-weight: 500;
    box-sizing: border-box;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .game-banner {
        height: 300px;
    }

    .game-content {
        padding: 2rem 1rem;
        flex-direction: column;
    }

    .game-title-section {
        max-width: none;
    }

    .game-title {
        font-size: 2.5rem;
    }

    .store-buttons {
        flex-direction: column;
    }
}