.game-card {
    background: #2B2D31;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.15s ease;
    min-width: 0;
}

.game-card:hover {
    border-color: rgba(88, 101, 242, 0.4);
}

.game-card__image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.game-card__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px 12px;
    flex: 1;
}

.game-card__title {
    font-size: 13px;
    font-weight: 600;
    color: #F2F3F5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    line-height: 1.3;
}

.game-card__genre {
    font-size: 11px;
    color: #80848E;
    margin: 0;
}

.game-card__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.game-card__platforms svg {
    height: 18px;
    width: auto;
}

.game-card__prices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-item__region {
    font-size: 11px;
    font-weight: 600;
    color: #80848E;
    text-transform: uppercase;
}

.price-item__amounts {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-item__current {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #23A55A;
}

.price-item__old {
    font-size: 11px;
    color: #80848E;
    text-decoration: line-through;
}

.game-card__discount {
    background: #5865F2;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
}

.game-card__store {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.game-store__img {
    height: 14px;
    display: block;
    object-fit: contain;
    opacity: 0.7;
}

.game-card__actions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.game-card__button {
    flex: 1;
    padding: 7px 10px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.game-card__button--primary {
    background: #5865F2;
    color: #fff;
}

.game-card__button--primary:hover {
    background: #4752C4;
}

.game-card__button--secondary {
    background: transparent;
    color: #B5BAC1;
    border: 1px solid rgba(255,255,255,0.12);
}

.game-card__button--secondary:hover {
    background: rgba(255,255,255,0.05);
}

.games-section__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #80848E;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .game-card__image { height: 100px; }
}

@media (max-width: 768px) {
    .game-card__image { height: 90px; }
    .game-card__content { padding: 8px 10px 10px; }
}
