.game-promo-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-promo-card__image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px; /* 默认高度 */
    transition: height 0.3s ease; /* 高度过渡动画 */
}

.game-promo-card__background {
    position: absolute; /* 背景图绝对定位 */
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    object-fit: cover;
    transition: transform 0.3s ease;
    z-index: 1; /* 背景图在下层 */
}

.game-promo-card__text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    z-index: 2; /* 遮罩在背景上层 */
}

.game-promo-card__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.game-promo-card__subtitle {
    font-size: 16px;
    margin-bottom: 10px;
}

.game-promo-card__description {
    font-size: 14px;
    line-height: 1.5;
}

.game-promo-card__mask {
    padding: 15px 20px;
    position: relative;
}

.game-promo-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-promo-card__icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 2px solid white;
}

.game-promo-card__game-info {
    flex: 1;
    margin: 0 15px;
}

.game-promo-card__game-name {
    font-weight: bold;
    font-size: 16px;
}

.game-promo-card__game-subname {
    font-size: 12px;
    opacity: 0.9;
}

.game-promo-card__button {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: brightness 0.2s ease;
    text-decoration: none;
    border: none;
    display: inline-block;
}

.game-promo-card__button:hover {
    filter: brightness(0.9);
}