/* NEW TOYS — WS-P (Sprint 6): PR crisis panel + clip desk. */

/* ---- PR crisis panel: docked left, urgent ---- */
#crisisSlot .crisis {
  position: fixed; left: 14px; bottom: 14px; z-index: 60;
  width: min(360px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid var(--bad); border-radius: 14px;
  background: linear-gradient(150deg, #241414 0%, #120d0d 70%);
  box-shadow: 0 18px 60px #000c, 0 0 0 1px #ff4d4d22 inset;
  animation: crisis-in .25s cubic-bezier(.2, .9, .3, 1.15);
}
@keyframes crisis-in { from { opacity: 0; transform: translateY(14px); } }
.crisis__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.crisis__badge {
  font: 800 11px/1 var(--mono); letter-spacing: .12em; color: #fff;
  background: var(--bad); padding: 5px 8px; border-radius: 6px;
  animation: crisis-blink 1.1s ease-in-out infinite;
}
@keyframes crisis-blink { 50% { opacity: .55; } }
.crisis__timer { font: 800 13px/1 var(--mono); color: var(--bad); }
.crisis__who { font-size: 13px; margin-bottom: 8px; color: #e8d9d4; }
.crisis__countdown {
  height: 6px; border-radius: 999px; background: #ffffff14; overflow: hidden; margin-bottom: 10px;
}
.crisis__countdown i {
  display: block; height: 100%; background: var(--bad);
  transition: width .9s linear;
}
.crisis__opts { display: flex; flex-direction: column; gap: 6px; }
.crisis-opt {
  text-align: left; display: flex; flex-direction: column; gap: 2px;
  padding: 8px 10px; border-radius: 10px;
}
.crisis-opt b { font-size: 13px; }
.crisis-opt small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.crisis-opt.is-dark { border-color: #6b2a2a; }
.crisis-opt.is-dark:hover { border-color: var(--bad); background: #2a1616; }
.crisis__foot { margin-top: 8px; color: var(--muted); font-size: 10.5px; font-style: italic; }

/* ---- clip desk ---- */
#clipSlot .clip-pill {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 55;
  padding: 10px 18px; border-radius: 999px; font-size: 13px;
  border: 1px solid var(--jackpot); color: var(--jackpot);
  background: linear-gradient(150deg, #2a2410, #14110a);
  box-shadow: 0 10px 40px #000b, 0 0 18px #ffd23d33;
  animation: clip-pulse 1.3s ease-in-out infinite;
}
@keyframes clip-pulse { 50% { box-shadow: 0 10px 40px #000b, 0 0 30px #ffd23d66; } }
.clip-pill:hover { background: #2a2410; }

#clipSlot .clip-game {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 55;
  width: min(440px, calc(100vw - 28px)); padding: 14px;
  border: 1px solid var(--jackpot); border-radius: 14px;
  background: linear-gradient(150deg, #221d0e 0%, #110e08 70%);
  box-shadow: 0 18px 60px #000c;
}
.clip-game__title {
  font-size: 13px; font-weight: 700; margin-bottom: 10px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.clip-bar {
  position: relative; height: 26px; border-radius: 8px; overflow: hidden;
  background: #ffffff10; margin-bottom: 10px;
}
.clip-bar__hot {
  position: absolute; top: 0; bottom: 0; left: 35%; width: 30%;
  background: linear-gradient(90deg, transparent, #ffd23d44 30%, #ffd23d66 50%, #ffd23d44 70%, transparent);
  border-left: 1px dashed #ffd23d88; border-right: 1px dashed #ffd23d88;
}
.clip-bar__marker {
  position: absolute; top: -2px; bottom: -2px; width: 4px; margin-left: -2px;
  background: #fff; box-shadow: 0 0 10px #ffd23daa; border-radius: 2px;
}
.clip-game__actions { display: flex; gap: 8px; justify-content: center; }
.clip-game__actions .primary { font-weight: 800; padding: 8px 26px; }
.clip-game__hint { margin-top: 8px; text-align: center; color: var(--muted); font-size: 10.5px; }

@media (prefers-reduced-motion: reduce) {
  .crisis, .crisis__badge, .clip-pill { animation: none; }
}
