/* ═══════════════════════════════════════════════════════════════
   daily-recruit.css — Champions Daily Recruit Advisor
   Rides on competitive-hub.css :root tokens.
   Signature: the recommended pick sits under a spotlight; the rest
   line up as a ranked shortlist beneath it.
═══════════════════════════════════════════════════════════════ */

.dr-main { max-width: 960px; margin: 0 auto; padding: 28px 20px 80px; }
.hidden { display: none !important; }

.dr-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-2);
  margin-top: 10px;
  max-width: 640px;
}

.dr-input-section,
.dr-result-section {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 22px;
}

.dr-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dr-section-titles { display: flex; flex-direction: column; gap: 6px; }
.dr-eyebrow {
  font-family: var(--font-pixel); font-size: 8px; letter-spacing: 1px;
  color: var(--yellow); text-transform: uppercase;
}
.dr-section-title {
  font-family: var(--font-cond); font-weight: 900; font-size: 26px;
  line-height: 1; color: var(--text-1);
}
.dr-hint { font-family: var(--font-body); font-size: 13px; color: var(--text-3); }

/* ─── Search + chips ──────────────────────────────────────────── */

.dr-search-wrap { position: relative; margin-bottom: 16px; }

/* dropdown-item is a <button> here (keyboard access) — strip button chrome. */
.dr-search-wrap .dropdown-item {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font: inherit;
  color: inherit;
}
.dr-search-wrap .dropdown-item:last-child { border-bottom: none; }

.dr-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.dr-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 5px 6px 5px 10px;
}
.dr-chip img { width: 30px; height: 30px; object-fit: contain; }
.dr-chip-name {
  font-family: var(--font-cond); font-weight: 700; font-size: 14px;
  color: var(--text-1);
}
.dr-chip-remove {
  width: 20px; height: 20px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--surface-4); color: var(--text-2);
  font-size: 13px; line-height: 1;
  display: grid; place-items: center;
  transition: background 0.12s, color 0.12s;
}
.dr-chip-remove:hover { background: var(--red); color: #fff; }

.dr-chips-empty { color: var(--text-3); font-size: 14px; padding: 6px 2px; }

/* ─── Mode toggle ─────────────────────────────────────────────── */

.dr-mode {
  display: inline-flex; gap: 4px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 9px; padding: 4px;
}
.dr-mode-btn {
  font-family: var(--font-cond); font-weight: 700; font-size: 13px;
  letter-spacing: 0.3px; text-transform: uppercase;
  color: var(--text-2); background: transparent; border: none;
  border-radius: 6px; padding: 7px 14px; cursor: pointer;
  transition: color 0.12s, background 0.12s;
}
.dr-mode-btn:hover:not(:disabled) { color: var(--text-1); }
.dr-mode-btn.is-active { color: var(--black); background: var(--yellow); }
.dr-mode-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.dr-meta-line {
  font-family: var(--font-body); font-size: 12.5px; color: var(--text-3);
  margin-bottom: 16px; min-height: 16px;
}
.dr-meta-line strong { color: var(--text-2); font-weight: 600; }

/* ─── Winner (spotlight) ──────────────────────────────────────── */

.dr-winner {
  position: relative;
  display: flex; gap: 18px; align-items: center;
  padding: 20px;
  border-radius: 14px;
  background:
    radial-gradient(120% 140% at 18% 0%, rgba(242,193,46,0.14), transparent 60%),
    var(--surface-2);
  border: 1px solid rgba(242,193,46,0.35);
  margin-bottom: 20px;
}
.dr-winner-badge {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--font-pixel); font-size: 8px; letter-spacing: 1px;
  color: var(--yellow); text-transform: uppercase;
}
.dr-winner-sprite {
  width: 104px; height: 104px; object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4));
}
.dr-winner-body { min-width: 0; flex: 1; }
.dr-pick-label {
  font-family: var(--font-cond); font-weight: 700; font-size: 12px;
  letter-spacing: 0.6px; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 2px;
}
.dr-winner-name {
  font-family: var(--font-cond); font-weight: 900; font-size: 30px;
  line-height: 1; color: var(--text-1); margin-bottom: 8px;
}
.dr-types { display: flex; gap: 5px; margin-bottom: 10px; }
.dr-type {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.4px; text-transform: uppercase; color: #fff;
  padding: 2px 8px; border-radius: 4px; text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}
.dr-winner-why {
  font-family: var(--font-body); font-size: 13px; line-height: 1.4;
  color: var(--text-2);
}

/* ─── Shortlist ───────────────────────────────────────────────── */

.dr-shortlist-title {
  font-family: var(--font-cond); font-weight: 700; font-size: 13px;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 10px;
}
.dr-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--surface-1);
  margin-bottom: 8px;
}
.dr-rank {
  font-family: var(--font-cond); font-weight: 900; font-size: 18px;
  color: var(--text-3); width: 26px; text-align: center; flex-shrink: 0;
}
.dr-row img { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; }
.dr-row-body { flex: 1; min-width: 0; }
.dr-row-name {
  font-family: var(--font-cond); font-weight: 700; font-size: 16px;
  color: var(--text-1); line-height: 1.1;
}
.dr-row-why {
  font-family: var(--font-body); font-size: 11.5px; line-height: 1.3;
  color: var(--text-2); margin-top: 2px;
}
.dr-usage {
  font-family: var(--font-cond); font-weight: 700; font-size: 13px;
  color: var(--text-2); white-space: nowrap; flex-shrink: 0;
}
.dr-usage span { color: var(--text-3); font-weight: 400; font-size: 10px; display: block; text-transform: uppercase; letter-spacing: 0.4px; }

.dr-add-box {
  font-family: var(--font-cond); font-weight: 700; font-size: 12px;
  letter-spacing: 0.3px; text-transform: uppercase;
  color: var(--text-2); background: transparent;
  border: 1px solid var(--border-2); border-radius: 7px;
  padding: 6px 12px; cursor: pointer; flex-shrink: 0;
  transition: color 0.12s, border-color 0.12s, background 0.12s;
}
.dr-add-box:hover { color: var(--text-1); border-color: var(--text-3); }
.dr-add-box.is-owned {
  color: var(--black); background: var(--yellow); border-color: var(--yellow);
}

/* ─── Empty / guidance ────────────────────────────────────────── */

.dr-empty-state { text-align: center; padding: 40px 20px; color: var(--text-2); }
.dr-empty-title {
  font-family: var(--font-cond); font-weight: 700; font-size: 20px;
  color: var(--text-1); margin-bottom: 6px;
}
.dr-empty-state p { font-size: 14px; }

@media (prefers-reduced-motion: reduce) {
  .dr-chip-remove, .dr-mode-btn, .dr-add-box { transition: none; }
}
@media (max-width: 560px) {
  .dr-winner { flex-direction: column; text-align: center; }
  .dr-winner-badge { position: static; margin-bottom: 4px; }
  .dr-row { flex-wrap: wrap; }
  .dr-row-body { order: 3; flex-basis: 100%; }
}