/* ============================================================
   Écran Salon multijoueur (lobby 2-4 joueurs)
   ============================================================ */
.cs-root{ padding: 26px 18px 28px; }

.cs-title{ font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,6vw,28px); margin: 12px 0 4px; text-align: center; position: relative; z-index: 2; }
.cs-subtitle{ font-size: 13px; color: var(--muted); text-align: center; margin-bottom: 22px; max-width: 360px; position: relative; z-index: 2; }

.cs-slots{ position: relative; z-index: 2; width: 100%; max-width: 460px; display: flex; flex-direction: column; gap: 12px; }

.cs-slot{
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px; padding: 14px; display: flex; flex-direction: column; gap: 10px;
}
.cs-slot.cs-slot--ready{ border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }
.cs-slot.cs-slot--empty{ align-items: center; justify-content: center; min-height: 76px; border-style: dashed; opacity: .8; }

.cs-slot-row1{ display: flex; align-items: center; gap: 10px; }
.cs-slot-dot{ width: 12px; height: 12px; border-radius: 50%; flex: none; box-shadow: 0 0 8px currentColor; }
.cs-slot-name{ flex: 1; }
.cs-slot-remove{ background:none; border:none; color: var(--muted); font-size: 16px; cursor: pointer; padding: 4px 8px; }

.cs-slot-levels{ display: flex; gap: 6px; flex-wrap: wrap; }
.cs-level-pill{
  font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25); color: var(--ink); background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.cs-level-pill.selected.decouverte{ background: linear-gradient(135deg, var(--decouverte-1), var(--decouverte-2)); color: var(--decouverte-ink); border-color: transparent; }
.cs-level-pill.selected.challenge{ background: linear-gradient(135deg, var(--challenge-1), var(--challenge-2)); color: var(--challenge-ink); border-color: transparent; }
.cs-level-pill.selected.maitrise{ background: linear-gradient(135deg, var(--maitrise-1), var(--maitrise-2)); color: var(--maitrise-ink); border-color: transparent; }
.cs-level-pill.selected.legende{ background: linear-gradient(135deg, var(--legende-1), var(--legende-2)); color: var(--legende-ink); border-color: transparent; }

.cs-slot-ready{ align-self: flex-start; font-size: 11.5px; padding: 6px 12px; }

.cs-add-btn{ background:none; border: none; color: var(--gold-soft); font-family: var(--font-display); font-weight: 700; font-size: 14px; cursor: pointer; }

.cs-status{ position: relative; z-index: 2; margin-top: 20px; text-align: center; }
.cs-countdown{ font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--gold); }
.cs-status-label{ font-size: 12.5px; color: var(--muted); margin-top: 4px; }

.cs-launch-row{ position: relative; z-index: 2; width: 100%; max-width: 460px; margin-top: 18px; }
.cs-launch-row .btn-solid{ width: 100%; padding: 16px; font-size: 16px; }

.cs-footer{ position: relative; z-index: 2; margin-top: 16px; font-size: 10.5px; color: var(--muted); text-align: center; max-width: 380px; }
