
/* ===========================================================================
   FACTION REP METER STRIP  (faction_campaign.js)
   Added: Phase 1 Multi-Faction Progression & Boss Campaign
   =========================================================================== */

#fw-rep-meter {
  position: relative; z-index: 999;
  display: flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(4, 8, 16, 0.92);
  border-bottom: 1px solid rgba(0, 240, 255, 0.18);
  backdrop-filter: blur(12px);
  height: 28px; min-height: 28px;
  cursor: pointer; user-select: none; transition: background 0.2s;
}
#fw-rep-meter:active { background: rgba(0, 240, 255, 0.06); }

.fw-rep-info {
  font-family: 'Space Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.12em; color: rgba(212, 228, 247, 0.7);
  white-space: nowrap; flex-shrink: 0;
}
.fw-rep-track {
  flex: 1; height: 5px; background: rgba(0, 240, 255, 0.1);
  border-radius: 4px; overflow: hidden; min-width: 60px;
}
.fw-rep-fill {
  height: 100%; width: 0%; border-radius: 4px;
  background: linear-gradient(90deg, rgba(0,240,255,0.6), #00f0ff);
  transition: width 0.5s cubic-bezier(.4,0,.2,1), background 0.3s;
}
[data-bounties-muted="true"] .fw-rep-fill {
  animation: fw-rep-pulse 1s ease-in-out infinite alternate;
}
@keyframes fw-rep-pulse {
  from { opacity: 0.7; box-shadow: 0 0 4px #ffb700; }
  to   { opacity: 1;   box-shadow: 0 0 12px #ffb700, 0 0 24px #ff6600; }
}
.fw-rep-label {
  font-family: 'Space Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.08em; color: rgba(212, 228, 247, 0.6);
  white-space: nowrap; flex-shrink: 0;
}
.fw-rep-locked-pill {
  display: inline-block; color: #ffb700; font-weight: 700;
  letter-spacing: 0.1em; font-size: 0.58rem;
  animation: fw-locked-blink 0.8s step-end infinite;
}
@keyframes fw-locked-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.fw-mult-badge {
  display: inline-block; color: #00ff9d; font-weight: 700; font-size: 0.55rem;
  background: rgba(0,255,157,0.12); border: 1px solid rgba(0,255,157,0.35);
  border-radius: 4px; padding: 0 5px;
}

/* Bounty Muted Overlay - applied when boss lockout is active */
[data-bounties-muted="true"] .gig-card,
[data-bounties-muted="true"] .bounty-card,
[data-bounties-muted="true"] .contract-card,
[data-bounties-muted="true"] .dispatch-ticket-card,
[data-bounties-muted="true"] .procedural-manifest {
  position: relative; pointer-events: none;
}
[data-bounties-muted="true"] .gig-card::after,
[data-bounties-muted="true"] .bounty-card::after,
[data-bounties-muted="true"] .contract-card::after,
[data-bounties-muted="true"] .dispatch-ticket-card::after,
[data-bounties-muted="true"] .procedural-manifest::after {
  content: 'SUSPENDED — BOSS ACTIVE';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 8, 16, 0.88); color: #ff1744;
  font-family: 'Space Mono', monospace; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.14em;
  border-radius: inherit; z-index: 10;
  border: 1px dashed rgba(255, 23, 68, 0.6);
  backdrop-filter: blur(2px);
}
