main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── 游戏主卡片 ── */
.game {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-color: #1a1a2e;
    box-shadow: 0 4px 24px rgba(0,0,0,.18);
}

.game .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: blur(18px) brightness(.45) saturate(1.4);
    transform: scale(1.08);
}

/* 内容层 */
.game-inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 32px;
    padding: 36px 40px;
    align-items: flex-start;
}

/* 左侧封面 + 按钮 */
.game-cover {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
    width: 200px;
}

.game-cover .img-box {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,.25);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.game-cover .img-box::before {
    padding-top: 100%;
}

.game .play {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
    background: #fff;
    border-radius: 50px;
    border: none;
    transition: background .3s, color .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 4px 16px rgba(255,255,255,.2);
}

.game .play:hover {
    background: #ff18f6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,24,246,.4);
}

/* 右侧信息 */
.game-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
    min-width: 0;
}

.game-info h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* meta 行 */
.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 13px;
    backdrop-filter: blur(4px);
}

.mobile-badge {
    background: rgba(255,24,246,.18);
    border-color: rgba(255,24,246,.4);
    color: #ff9cf9;
}

/* 标签 */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    color: #ddd;
    transition: background .2s;
    cursor: default;
}

.tag:hover {
    background: rgba(255,24,246,.25);
    border-color: rgba(255,24,246,.5);
    color: #fff;
}

/* 描述 */
.game-desc p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.75);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

/* 操作说明 */
.game-instructions {
    background: rgba(255,255,255,.07);
    border-left: 3px solid #ff18f6;
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
}

.game-instructions h4 {
    font-size: 13px;
    font-weight: 700;
    color: #ff9cf9;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.game-instructions p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* ── 推荐区域 ── */
.list h2 {
    font-size: 20px;
    margin-bottom: 14px;
}

/* ── 响应式 ── */
@media screen and (max-width: 769px) {
    main {
        padding: 0 5px;
        gap: 14px;
    }

    .game-inner {
        flex-direction: column;
        padding: 24px 18px;
        gap: 20px;
    }

    .game-cover {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .game-cover .img-box {
        width: 110px;
        flex-shrink: 0;
    }

    .game .play {
        flex: 1;
        padding: 12px 0;
        font-size: 15px;
    }

    .game-info h3 {
        font-size: 20px;
    }

    .game-desc p {
        -webkit-line-clamp: 4;
    }
}
