/* Хаб мини-игр */
.games-hub {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

@media (min-width: 560px) {
  .games-hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.games-hub__card {
  display: block;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(0, 255, 200, 0.25);
  border-radius: 6px;
  background: linear-gradient(
    165deg,
    rgba(0, 40, 32, 0.35) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.games-hub__card:hover {
  border-color: rgba(0, 255, 200, 0.55);
  box-shadow: 0 0 28px rgba(0, 255, 200, 0.12);
}

.games-hub__card:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

.games-hub__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: #e8e8e8;
  letter-spacing: 0.02em;
}

.games-hub__desc {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #8a8a8a;
  margin: 0;
}

.games-hub__meta {
  margin-top: 0.85rem;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00ffc8;
}
