/* Same design as current boss page, with manual action row */
.active-link {
  color: #fff1de !important;
}
.boss-page {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 48px));
  margin: 36px auto 48px;
  display: grid;
  gap: 28px;
}
.boss-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 360px);
  gap: 24px;
  padding: 42px 40px;
  background: linear-gradient(180deg, rgba(31, 21, 15, 0.64), rgba(15, 10, 8, 0.74));
  border-radius: 26px;
  backdrop-filter: blur(6px);
}
.boss-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.04;
  text-transform: uppercase;
  color: #f5e3cd;
}
.boss-hero-side {
  display: grid;
  gap: 16px;
  align-content: center;
}
.hero-stat {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 166, 118, 0.16);
  background: linear-gradient(180deg, rgba(97, 68, 44, 0.14), rgba(18, 13, 10, 0.34));
}
.hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.hero-stat strong {
  color: #f3dfc8;
  font-size: 1.1rem;
}
.boss-grid-section {
  position: relative;
  z-index: 2;
}
.boss-grid-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.boss-grid-head h2 {
  font-size: 2rem;
  color: #f2ddc3;
  margin-bottom: 6px;
}
.boss-grid-head p {
  color: var(--muted);
}
.btn-small {
  min-width: 110px;
}
.boss-status-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(212, 166, 118, 0.15);
  background: rgba(19, 13, 10, 0.56);
  color: var(--text);
}
.boss-status-message.success {
  border-color: rgba(120, 190, 120, 0.24);
  background: rgba(22, 34, 22, 0.48);
}
.boss-status-message.warning {
  border-color: rgba(212, 166, 118, 0.24);
  background: rgba(48, 33, 18, 0.45);
}
.boss-status-message.error {
  border-color: rgba(210, 95, 95, 0.24);
  background: rgba(52, 18, 18, 0.48);
}
.boss-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.boss-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28, 19, 14, 0.68), rgba(13, 9, 7, 0.76));
  backdrop-filter: blur(6px);
}
.boss-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.boss-badge,
.boss-mode {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(212, 166, 118, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #f7ead9;
}
.status-alive {
  border-color: rgba(108, 183, 113, 0.28);
  background: rgba(45, 92, 41, 0.38);
  color: #dff3d8;
}
.status-dead {
  border-color: rgba(212, 166, 118, 0.26);
  background: rgba(95, 55, 26, 0.38);
  color: #f5e3cd;
}
.boss-card h3 {
  font-size: 1.4rem;
  color: #f5e3cd;
  margin-bottom: 16px;
}
.countdown-box {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 166, 118, 0.16);
  background: linear-gradient(180deg, rgba(97, 68, 44, 0.12), rgba(18, 13, 10, 0.30));
}
.countdown-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.countdown-value {
  display: block;
  font-size: 2rem;
  color: #f7ead9;
  letter-spacing: 0.06em;
}
.countdown-alive {
  border-color: rgba(108, 183, 113, 0.22);
  background: linear-gradient(180deg, rgba(44, 87, 44, 0.24), rgba(14, 28, 14, 0.38));
}
.countdown-dead {
  border-color: rgba(212, 166, 118, 0.18);
}
.boss-meta {
  display: grid;
  gap: 10px;
}
.boss-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 166, 118, 0.09);
}
.boss-meta-row span {
  color: var(--muted);
}
.boss-meta-row strong {
  color: #f3dec4;
  text-align: right;
}
.manual-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  .boss-hero {
    grid-template-columns: 1fr;
  }
  .boss-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .boss-page {
    width: min(100% - 24px, 1400px);
  }
  .boss-hero {
    padding: 28px 22px;
  }
  .boss-grid-head {
    flex-direction: column;
    align-items: stretch;
  }
  .boss-grid {
    grid-template-columns: 1fr;
  }
  .countdown-value {
    font-size: 1.6rem;
  }
}
