.games-section{background:var(--bg-primary)}

.games-compact{display:flex;justify-content:center;gap:16px;flex-wrap:wrap}

.game-item{
    flex:1;min-width:140px;max-width:180px;text-align:center;
    padding:24px 12px 18px;
    background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius);
    transition:all var(--transition);box-shadow:var(--shadow)
}
.game-item:hover{transform:translateY(-6px);border-color:var(--border-hover);box-shadow:var(--shadow-glow)}

.game-item-img{
    width:120px;height:120px;
    object-fit:contain;margin:0 auto 12px;
    transition:transform var(--transition)
}
.game-item:hover .game-item-img{transform:scale(1.08)}

.game-item h3{font-size:.95rem;font-weight:600;margin-bottom:4px}
.game-item p{font-size:.78rem;color:var(--text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

@media(max-width:640px){
    .games-compact{gap:8px}
    .game-item{min-width:calc(50% - 8px);max-width:calc(50% - 8px);padding:14px 6px 12px}
    .game-item-img{width:64px;height:64px}
    .game-item h3{font-size:.78rem}
    .game-item p{font-size:.65rem}
}
@media(min-width:1024px){
    .game-item{max-width:170px}
    .game-item-img{width:130px;height:130px}
}
