/* Pro Mode custom plan card — shared by the game server hosting pages.
   Matches the Easy Mode preset plan cards; accent inherits the per-game theme
   via --game-primary, falling back to site blue. */

.pro-custom-card .location-selector label {
  font-weight: 600;
  font-size: 0.9rem;
}

.pro-custom-card .pro-per-mo {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.25rem;
}

.pro-billed {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.pro-save-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.pro-order-btn {
  display: block;
  width: 100%;
  background: var(--game-primary, #2563eb);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.pro-order-btn:hover {
  filter: brightness(1.12);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .pro-order-btn {
    transition: none;
  }
}
