/* === BOSS TIMER BOX === */
.boss-box {
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #b8860b;
  border-radius: 10px;
  padding: 15px;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
  width: 450px; /* pode trocar para max-width:100% para responsivo */
}

/* título */
.boss-title {
  margin: 0 0 12px 0;
  padding: 6px 10px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #111;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

/* lista */
.boss-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.boss-box li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

.boss-box li:last-child {
  border-bottom: none;
}

.boss-name {
  font-weight: bold;
  color: #facc15; /* amarelo padrão */
}

.boss-time {
  font-family: monospace;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

/* === STATUS COLORIDO === */

/* IN SPAWN → AZUL */
.boss-time.spawn {
  color: #3b82f6;                   /* azul */
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.15); /* fundo azul suave */
}
.boss-name.spawn  { 
  color: #3b82f6 !important;        /* nome azul */
}

/* DEAD → VERMELHO */
.boss-time.dead {
  color: #ef4444; 
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
}
.boss-name.dead   { 
  color: #ef4444 !important; 
}

/* ALIVE → VERDE */
.boss-name.alive  { 
  color: #22c55e !important; 
}
.boss-time.alive  { 
  color: #22c55e; 
  border-color: #22c55e; 
  background: rgba(34, 197, 94, 0.15);
}
