
/* Remote Game Manager - Game Grid Styling */
.rgm-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.rgm-game-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rgm-game-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.rgm-game-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.rgm-game-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 8px;
}

.rgm-game-item a {
  text-decoration: none;
  color: inherit;
}
