/* 첫 로그인 온보딩 시트. 취향(선호 캐릭터·장르·강도)을 한 화면에서 받는다. */
.nox-onboard {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 6, 7, .78);
  backdrop-filter: blur(6px);
}

body.nox-onboard-open { overflow: hidden; }

.nox-onboard-sheet {
  width: min(560px, 100%);
  max-height: min(88vh, 780px);
  overflow-y: auto;
  padding: 26px 24px 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: #171315;
  color: #f2eef2;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .9);
}

.nox-onboard-sheet header strong { display: block; font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
.nox-onboard-sheet header p { margin: 8px 0 0; color: #a29aa4; font-size: 13px; line-height: 1.6; }
.nox-onboard-sheet section { margin-top: 22px; }
.nox-onboard-sheet h3 { margin: 0 0 10px; font-size: 13px; font-weight: 700; color: #cdc6cd; }
.nox-onboard-sheet h3 small { margin-left: 6px; color: #837b85; font-size: 11px; font-weight: 600; }

.nox-onboard-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
@media (max-width: 520px) { .nox-onboard-cards { grid-template-columns: 1fr; } }

.nox-onboard-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  background: #1e1a1d;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.nox-onboard-card strong { font-size: 14px; font-weight: 700; }
.nox-onboard-card small { color: #97909a; font-size: 11px; line-height: 1.5; }
.nox-onboard-card:hover { border-color: rgba(240, 80, 92, .4); }
.nox-onboard-card.is-selected { border-color: #e0505c; background: rgba(224, 80, 92, .14); }

.nox-onboard-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.nox-onboard-chip {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: #1e1a1d;
  color: #ddd6dc;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}
.nox-onboard-chip:hover { border-color: rgba(240, 80, 92, .4); }
.nox-onboard-chip.is-selected { border-color: #e0505c; background: rgba(224, 80, 92, .18); color: #fff; }

.nox-onboard-error:empty { display: none; }
.nox-onboard-error { margin: 16px 0 0; color: #f0a2a8; font-size: 12px; }

.nox-onboard-sheet footer { margin-top: 22px; }
.nox-onboard-sheet footer button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0505c, #b8323f);
  color: #fff;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
}
.nox-onboard-sheet footer button:disabled { opacity: .6; cursor: progress; }
#noxOnboardSkip { margin-top: 8px; background: transparent; color: #b5aeb7; font-size: 13px; }
