.games-block {
    background: #000;
    border-radius: 14px;
    padding: 16px 18px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.games-block__list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #444 #000;
}

.games-block__list::-webkit-scrollbar {
    height: 6px;
}

.games-block__list::-webkit-scrollbar-track {
    background: #000;
}

.games-block__list::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 999px;
}

.games-block__item {
    display: flex;
    flex-direction: column;
    min-width: 180px;
    max-width: 220px;
    text-decoration: none;
    color: inherit;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #282828;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.games-block__item:hover {
    background: #151515;
    border-color: #3a3a3a;
    transform: translateY(-2px);
}

.games-block__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.games-block__meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
    pointer-events: none;
}

.games-block__icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.games-block__title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.games-block__item--placeholder {
    min-width: 220px;
    border-style: dashed;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.03);
}

.games-block__placeholder {
    padding: 14px 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .games-block {
        padding: 12px 12px;
    }

    .games-block__list {
        gap: 10px;
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .games-block__item {
        flex: 0 0 calc(50% - 5px);
        min-width: 0;
        max-width: none;
    }
}

