.game-card {
  display: flex;
  flex-direction: row;

  background: rgba(0,0,0,0.4);
  border: 2px solid #000;

  margin-bottom: 15px;

  max-height: 220px;
  max-width: 1000px;

  overflow: hidden;
}

.game-image {
  position: relative;
  width: 300px;
  flex-shrink: 0;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.05) 40%,
    rgba(0,0,0,0.3) 100%
  );

  pointer-events: none;
}

.game-info {
  padding: 10px;
  flex: 1;

  min-width: 0;
  overflow: hidden;
}

.game-info h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
}

.game-info p {
  font-size: 13px;
  margin-bottom: 10px;

  overflow-wrap: break-word;
  word-break: break-word;
}

.game-price {
  padding: 3px 8px;
  margin: 0 0 10px 0;

  font-size: 20px;
  color: #f2c94c;
  font-weight: bold;
}

.game-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  gap: 5px;

  padding: 6px 10px;

  border: 2px solid #000;
  text-decoration: none;
  font-size: 12px;

  background: linear-gradient(
    to bottom,
    #5fbfff,
    #1c6ea4
  );

  flex-shrink: 1;
  max-width: 100%;
  white-space: nowrap;
}

.btn:hover {
  filter: brightness(1.2);
}

.btn:hover {
  filter: brightness(1.2);
}

.btn img {
    width: 24px;
    height: 24px;
}
