/* Escolhas visuais do painel, sem os checkboxes nativos do navegador. */
.admin-card .platform-picker {
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)) !important;
  align-items: stretch !important;
  column-gap: 12px !important;
  row-gap: 14px !important;
  margin-top: 6px;
}

.admin-card .platform-picker label.choice {
  position: relative;
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 48px;
  padding: 12px 13px !important;
  margin: 0 0 14px !important;
  gap: 10px !important;
  color: #dbeaff;
  border: 1px solid rgba(151, 190, 247, .22);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(11, 30, 57, .95), rgba(9, 23, 46, .95));
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.admin-card .platform-picker label.choice:last-child {
  margin-bottom: 0 !important;
}

.admin-card .platform-picker label.choice:hover {
  border-color: rgba(57, 230, 255, .62);
  background: #102747;
  transform: translateY(-1px);
}

.admin-card .platform-picker label.choice input[type="checkbox"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.choice-check {
  display: grid !important;
  grid-column: 1;
  grid-row: 1;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(163, 199, 247, .56);
  border-radius: 6px;
  color: transparent;
  background: #07172d;
  transition: all .18s ease;
}

.choice-check::after { content: '✓'; font-size: 13px; font-weight: 900; }
.admin-card .platform-picker label.choice > span:last-child { grid-column: 2; grid-row: 1; line-height: 1.25 !important; }
.admin-card .platform-picker label.choice:has(input:checked) { border-color: var(--profile-accent, #39e6ff); background: linear-gradient(135deg, rgba(23, 72, 111, .82), rgba(10, 31, 61, .98)); box-shadow: inset 3px 0 0 var(--profile-accent, #39e6ff); }
.admin-card .platform-picker label.choice:has(input:checked) .choice-check { border-color: var(--profile-accent, #39e6ff); color: #061225; background: var(--profile-accent, #39e6ff); box-shadow: 0 0 14px color-mix(in srgb, var(--profile-accent, #39e6ff) 38%, transparent); }
.admin-card .platform-picker label.choice:has(input:focus-visible) { outline: 3px solid rgba(108, 168, 255, .42); outline-offset: 2px; }

/* O seletor de cor usa o mesmo campo moderno da tela de adicionar jogo. */
.admin-card select {
  width: 100%;
  appearance: none;
  min-height: 45px;
  padding: 11px 42px 11px 13px;
  color: #eaf2ff;
  border: 1px solid rgba(161, 193, 241, .32);
  border-radius: 10px;
  background: #0b1c36 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='m5 7 5 5 5-5' fill='none' stroke='%239cc5ff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 13px center/16px;
  font: 600 14px Manrope, sans-serif;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.admin-card select:focus { border-color: #6ca8ff; box-shadow: 0 0 0 3px rgba(76,143,255,.16); }
.admin-card select option { color: #eaf2ff; background: #0b1c36; }

@media (max-width: 650px) {
  .admin-card .platform-picker { grid-template-columns: 1fr !important; }
}
