/* Equipment System — Spectator Styles */

.eq-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.eq-loading {
  text-align: center;
  color: #94a3b8;
  padding: 2rem;
  font-style: italic;
}

/* Agent Equipment Card */
.eq-agent-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}
.eq-agent-card:hover {
  border-color: #60a5fa;
}

.eq-agent-header {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #334155;
}

.eq-empty {
  color: #64748b;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

/* Equipment Slots */
.eq-slots {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eq-slot {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.5rem;
  background: #0f172a;
  border-radius: 8px;
}

.eq-slot-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 90px;
  padding-top: 0.25rem;
}

.eq-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.eq-item-name {
  font-weight: 600;
  color: #f1f5f9;
  text-transform: capitalize;
}

/* Durability Bar */
.eq-durability-bar {
  height: 6px;
  background: #334155;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  max-width: 200px;
}

.eq-durability-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s, background-color 0.5s;
}

.eq-durability-text {
  font-size: 0.7rem;
  font-weight: 500;
}

/* Bonus Tags */
.eq-bonuses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.eq-bonus-tag {
  font-size: 0.65rem;
  background: #1e3a5f;
  color: #93c5fd;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Combined Bonuses Summary */
.eq-summary {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #0f172a;
  border-radius: 8px;
  border: 1px solid #1e3a5f;
}

.eq-summary-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 0.5rem;
}

.eq-bonus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.eq-bonus-combined {
  font-size: 0.75rem;
  background: #172554;
  color: #bfdbfe;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #1e3a5f;
}

/* Equipment Guide */
.eq-guide {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #1e293b;
  border-radius: 12px;
  border: 1px solid #334155;
}

.eq-guide-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}

.eq-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.eq-guide-item {
  background: #0f172a;
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid #334155;
}

.eq-guide-item-name {
  font-weight: 600;
  color: #f1f5f9;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}

.eq-guide-desc {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.eq-guide-stats {
  font-size: 0.7rem;
  color: #64748b;
}

/* Light Mode */
@media (prefers-color-scheme: light) {
  .eq-title { color: #1e293b; }
  .eq-agent-card { background: #f8fafc; border-color: #e2e8f0; }
  .eq-agent-card:hover { border-color: #3b82f6; }
  .eq-agent-header { color: #1e293b; border-color: #e2e8f0; }
  .eq-slot { background: #f1f5f9; }
  .eq-slot-label { color: #64748b; }
  .eq-item-name { color: #1e293b; }
  .eq-durability-bar { background: #e2e8f0; }
  .eq-bonus-tag { background: #dbeafe; color: #1e40af; }
  .eq-summary { background: #f1f5f9; border-color: #dbeafe; }
  .eq-summary-title { color: #1e40af; }
  .eq-bonus-combined { background: #eff6ff; color: #1e3a5f; border-color: #bfdbfe; }
  .eq-guide { background: #f8fafc; border-color: #e2e8f0; }
  .eq-guide-item { background: #f1f5f9; border-color: #e2e8f0; }
  .eq-guide-item-name { color: #1e293b; }
  .eq-guide-desc { color: #64748b; }
  .eq-guide-stats { color: #94a3b8; }
}

/* Dark mode class (manual toggle) */
[data-theme="dark"] .eq-title { color: #f8fafc; }
[data-theme="light"] .eq-title { color: #1e293b; }
[data-theme="light"] .eq-agent-card { background: #f8fafc; border-color: #e2e8f0; }
[data-theme="light"] .eq-slot { background: #f1f5f9; }
[data-theme="light"] .eq-bonus-tag { background: #dbeafe; color: #1e40af; }
[data-theme="light"] .eq-summary { background: #f1f5f9; }
[data-theme="light"] .eq-guide { background: #f8fafc; }
[data-theme="light"] .eq-guide-item { background: #f1f5f9; }

/* Mobile */
@media (max-width: 768px) {
  .eq-slot {
    flex-direction: column;
    gap: 0.25rem;
  }
  .eq-slot-label {
    min-width: auto;
  }
  .eq-guide-grid {
    grid-template-columns: 1fr;
  }
}
