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

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

  margin-bottom: 15px;

  max-width: 1000px;

  height: auto;
  min-height: 220px;

  overflow: visible;
}

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

.game-image img {
  width: 100%;
  height: 100%;
  min-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: visible;
}

.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;

  width: 100%;

  margin-bottom: 5px;
}

.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;

  flex: 1;
  justify-content: left;
}

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

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

.info-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,
    #ffd64e,
    #b97629
  );

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

  flex: 1;
  justify-content: center;
}

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

.info-btn img {
  width: 100%;
  height: 24px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .game-card {
    flex-direction: column;
    max-width: 100%;
    min-height: unset;
  }

  .game-image {
    width: 100%;
    height: 180px;
  }

  .game-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

.extra-info {
  max-width: 1000px;
  padding: 20px;
  border: none;
  background: transparent;
}

.extra-info h2 {
  margin-top: 0;
}

.extra-info p,
.extra-info li {
  font-size: 14px;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
}

.resource-link {
  display: inline-block;
  padding: 6px 10px;

  background: rgba(255,255,255,0.08);
  border: 1px solid #000;

  color: #c9a227;
  text-decoration: none;

  font-size: 13px;
}

.resource-link:hover {
  filter: brightness(1.2);
}

.game-page-wrapper {
  max-width: 1000px;

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

  overflow: hidden;
}

.game-hero {
  padding: 20px;
}