/**
 * Forge Calculator CSS v2.0
 * Clean, compact, Orange-themed dark UI.
 */

:root {
  --fc-primary: #ff9f43;
  --fc-primary-dark: #e08b30;
  --fc-primary-glow: rgba(255, 159, 67, 0.4);
  --fc-bg: #0d0d0f;
  --fc-bg-panel: #16161a;
  --fc-bg-card: #1e1e24;
  --fc-border: rgba(255, 255, 255, 0.08);
  --fc-text: #f0f0f0;
  --fc-text-muted: #888;
  --fc-font: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --fc-radius: 10px;
  --fc-transition: 0.2s ease;
}

/* ===== BASE ===== */
#forge-calculator {
  font-family: var(--fc-font);
  background: var(--fc-bg);
  color: var(--fc-text);
  line-height: 1.5;
}

#forge-calculator * {
  box-sizing: border-box;
}

.fc-container {
  margin: 0 auto;
  padding: 16px;
}

/* ===== GRID LAYOUT ===== */
.fc-grid {
  display: grid;
  grid-template-columns: 300px 1fr 320px;
  gap: 16px;
  min-height: 600px;
}

/* ===== PANELS ===== */
.fc-panel {
  background: var(--fc-bg-panel);
  border-radius: var(--fc-radius);
  border: 1px solid var(--fc-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.fc-panel-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--fc-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.3);
}

.fc-panel-header h1,
.fc-panel-header h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fc-text);
}

.fc-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}



/* ===== TOGGLE BUTTONS ===== */
.fc-toggle-group {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  padding: 2px;
}

.fc-toggle {
  background: none;
  border: none;
  color: var(--fc-text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--fc-transition);
}

.fc-toggle:hover {
  color: var(--fc-text);
}

.fc-toggle.active {
  background: var(--fc-primary);
  color: #000;
}

/* ===== SLOTS ===== */
.fc-slots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.fc-slot {
  width: 72px;
  height: 72px;
  background: var(--fc-bg-card);
  border: 2px dashed var(--fc-border);
  border-radius: var(--fc-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--fc-transition);
  position: relative;
}

.fc-slot:hover {
  border-color: var(--fc-primary);
  background: rgba(255, 159, 67, 0.05);
}

.fc-slot.filled {
  border-style: solid;
  border-color: var(--fc-primary);
}

.fc-slot-empty {
  font-size: 24px;
  color: var(--fc-text-muted);
}

.fc-slot-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.fc-slot-label {
  font-size: 9px;
  color: var(--fc-text-muted);
  margin-top: 2px;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-slot-qty {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: var(--fc-primary);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
}

.fc-hint {
  text-align: center;
  font-size: 11px;
  color: var(--fc-text-muted);
  margin-bottom: 16px;
}

/* ===== STATS ===== */
.fc-stats {
  background: var(--fc-bg-card);
  border-radius: var(--fc-radius);
  padding: 16px;
  margin-bottom: 16px;
}

.fc-stat {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--fc-border);
}

.fc-stat:last-child {
  border-bottom: none;
}

.fc-stat-label {
  color: var(--fc-text-muted);
  font-size: 12px;
}

.fc-stat-value {
  font-weight: 700;
  font-size: 14px;
}

.fc-accent {
  color: var(--fc-primary);
}

/* ===== COMPOSITION & TRAITS ===== */
.fc-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fc-detail-col h4 {
  margin: 0 0 8px 0;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--fc-text-muted);
  letter-spacing: 0.5px;
}

.fc-comp-item,
.fc-trait-item {
  font-size: 12px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.fc-comp-name {
  color: var(--fc-primary);
}

.fc-trait-ore {
  color: var(--fc-primary);
  font-weight: 600;
}

.fc-trait-desc {
  color: var(--fc-text-muted);
}

/* ===== ORE LIST ===== */
.fc-filter-bar {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--fc-border);
}

.fc-search,
.fc-select {
  background: var(--fc-bg-card);
  border: 1px solid var(--fc-border);
  color: var(--fc-text);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.fc-search {
  flex: 1;
}

.fc-search:focus,
.fc-select:focus {
  outline: none;
  border-color: var(--fc-primary);
}

#fc-ore-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 8px;
  align-content: start;
}

.fc-ore-card {
  background: var(--fc-bg-card);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--fc-transition);
  position: relative;
}

.fc-ore-card:hover {
  border-color: var(--fc-primary);
  background: rgba(255, 159, 67, 0.05);
  transform: translateY(-2px);
}

.fc-ore-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--fc-primary);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-ore-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.fc-ore-name {
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
  color: var(--fc-text);
}

.fc-ore-mult {
  font-size: 10px;
  font-weight: 700;
  color: var(--fc-primary);
}

/* ===== CHANCES ===== */
.fc-empty {
  text-align: center;
  color: var(--fc-text-muted);
  font-size: 13px;
  padding: 20px;
}

.fc-chance-card {
  background: var(--fc-bg-card);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.fc-chance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--fc-border);
}

.fc-chance-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fc-chance-name {
  font-weight: 700;
  font-size: 14px;
}

.fc-chance-mult {
  font-size: 11px;
  color: var(--fc-text-muted);
}

.fc-chance-pct {
  color: var(--fc-primary);
  font-weight: 700;
  font-size: 16px;
}

.fc-chance-variants {
  padding: 8px 12px;
}

.fc-variant {
  font-size: 12px;
  padding: 6px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto auto;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.fc-variant:last-child {
  border-bottom: none;
}

.fc-variant-name {
  font-weight: 600;
  line-height: 1.2;
  min-width: 0;
}

.fc-variant-price {
  color: var(--fc-text-muted);
  font-size: 10px;
  white-space: nowrap;
}

.fc-variant-label {
  color: var(--fc-text-muted);
  font-size: 11px;
  min-width: 30px;
  text-align: center;
}

.fc-variant-dmg {
  color: var(--fc-text);
  font-size: 11px;
  min-width: 60px;
  text-align: right;
  white-space: nowrap;
}

.fc-variant-dps {
  color: var(--fc-primary);
  font-size: 11px;
  min-width: 70px;
  text-align: right;
}

/* Info button with DPS tooltip */
.fc-variant-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 12px;
  color: var(--fc-primary);
  cursor: help;
  opacity: 0.7;
  transition: var(--fc-transition);
}

.fc-variant-info:hover {
  opacity: 1;
}

.fc-variant-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid var(--fc-primary);
  border-radius: 4px;
  color: var(--fc-primary);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  pointer-events: none;
}

.fc-variant-info:hover .fc-variant-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Arrow for tooltip */
.fc-variant-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--fc-primary);
}


/* ===== BUTTONS ===== */
.fc-btn-clear,
.fc-ore-counter {
  font-size: 11px;
  color: var(--fc-text-muted);
}

.fc-btn-clear {
  background: none;
  border: 1px solid var(--fc-border);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: auto;
}

.fc-btn-clear:hover {
  border-color: #e74c3c;
  color: #e74c3c;
}

/* ===== MOBILE NAV ===== */
.fc-mobile-nav {
  display: none;
}

/* ===== SCROLLBAR ===== */
.fc-panel-body::-webkit-scrollbar {
  width: 6px;
}

.fc-panel-body::-webkit-scrollbar-track {
  background: transparent;
}

.fc-panel-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.fc-panel-body::-webkit-scrollbar-thumb:hover {
  background: var(--fc-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .fc-grid {
    grid-template-columns: 260px 1fr 280px;
  }
}

@media (max-width: 850px) {
  .fc-container {
    padding: 0;
    padding-bottom: 70px;
  }

  .fc-grid {
    display: block;
  }

  .fc-panel {
    display: none;
    border-radius: 0;
    border: none;
    min-height: calc(100vh - 70px);
  }

  .fc-panel.active {
    display: flex;
  }

  .fc-mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-top: 1px solid var(--fc-border);
    z-index: 100;
    justify-content: space-around;
    padding: 10px 0;
  }

  .fc-nav-btn {
    background: none;
    border: none;
    color: var(--fc-text-muted);
    font-size: 12px;
    padding: 8px 16px;
    cursor: pointer;
  }

  .fc-nav-btn.active {
    color: var(--fc-primary);
  }

  .fc-details {
    grid-template-columns: 1fr;
  }
}

/* ===== SCROLLABLE PANELS ===== */
.fc-scrollable {
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--fc-primary) rgba(0, 0, 0, 0.3);
}

.fc-scrollable::-webkit-scrollbar {
  width: 6px;
}

.fc-scrollable::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

.fc-scrollable::-webkit-scrollbar-thumb {
  background: var(--fc-primary);
  border-radius: 3px;
}

/* ===== RARITY FILTER CHIPS ===== */
.fc-rarity-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--fc-border);
}

.fc-rarity-chip {
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid var(--fc-border);
  background: transparent;
  color: var(--fc-text-muted);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--fc-transition);
}

.fc-rarity-chip:hover {
  border-color: var(--fc-text-muted);
}

.fc-rarity-chip.active {
  background: var(--fc-primary);
  border-color: var(--fc-primary);
  color: #000;
}

/* Rarity Colors */
.fc-rarity-common {
  border-color: #94a3b8;
  color: #94a3b8;
}

.fc-rarity-common.active {
  background: #94a3b8;
  border-color: #94a3b8;
  color: #000;
}

.fc-rarity-uncommon {
  border-color: #4ade80;
  color: #4ade80;
}

.fc-rarity-uncommon.active {
  background: #4ade80;
  border-color: #4ade80;
  color: #000;
}

.fc-rarity-rare {
  border-color: #60a5fa;
  color: #60a5fa;
}

.fc-rarity-rare.active {
  background: #60a5fa;
  border-color: #60a5fa;
  color: #000;
}

.fc-rarity-epic {
  border-color: #c084fc;
  color: #c084fc;
}

.fc-rarity-epic.active {
  background: #c084fc;
  border-color: #c084fc;
  color: #000;
}

.fc-rarity-legendary {
  border-color: #facc15;
  color: #facc15;
}

.fc-rarity-legendary.active {
  background: #facc15;
  border-color: #facc15;
  color: #000;
}

.fc-rarity-mythical {
  border-color: #f472b6;
  color: #f472b6;
}

.fc-rarity-mythical.active {
  background: #f472b6;
  border-color: #f472b6;
  color: #000;
}

.fc-rarity-divine {
  border-color: #f97316;
  color: #f97316;
}

.fc-rarity-divine.active {
  background: #f97316;
  border-color: #f97316;
  color: #000;
}

/* ===== OUTPUT RARITY DISPLAY ===== */
.fc-output-rarity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  margin: 8px 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  border: 1px solid var(--fc-border);
}

.fc-rarity-label {
  font-size: 12px;
  color: var(--fc-text-muted);
}

.fc-rarity-value {
  font-size: 13px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.fc-rarity-value.common {
  background: #94a3b8;
  color: #000;
}

.fc-rarity-value.uncommon {
  background: #4ade80;
  color: #000;
}

.fc-rarity-value.rare {
  background: #60a5fa;
  color: #000;
}

.fc-rarity-value.epic {
  background: #c084fc;
  color: #000;
}

.fc-rarity-value.legendary {
  background: #facc15;
  color: #000;
}

.fc-rarity-value.mythical {
  background: #f472b6;
  color: #000;
}

.fc-rarity-value.divine {
  background: #f97316;
  color: #000;
}

/* ===== ORE CARD RARITY BORDERS ===== */
.fc-ore.rarity-common {
  border-left: 3px solid #94a3b8;
}

.fc-ore.rarity-uncommon {
  border-left: 3px solid #4ade80;
}

.fc-ore.rarity-rare {
  border-left: 3px solid #60a5fa;
}

.fc-ore.rarity-epic {
  border-left: 3px solid #c084fc;
}

.fc-ore.rarity-legendary {
  border-left: 3px solid #facc15;
}

.fc-ore.rarity-mythical {
  border-left: 3px solid #f472b6;
}

.fc-ore.rarity-divine {
  border-left: 3px solid #f97316;
}

/* ===== RUNE SLOTS ===== */
.fc-rune-slots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 10px 0;
}

.fc-rune-slot {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16161a 100%);
  border: 2px dashed #60a5fa;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--fc-transition);
  position: relative;
}

.fc-rune-slot:hover:not(.locked) {
  border-color: var(--fc-primary);
  box-shadow: 0 0 12px var(--fc-primary-glow);
}

.fc-rune-slot.locked {
  opacity: 0.4;
  cursor: not-allowed;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
}

.fc-rune-slot.filled {
  border-style: solid;
  border-color: #60a5fa;
  background: linear-gradient(135deg, #1e3a5f 0%, #16161a 100%);
}

.fc-rune-slot .fc-slot-empty {
  font-size: 18px;
  opacity: 0.5;
}

.fc-rune-slot .fc-slot-lock {
  font-size: 10px;
  color: var(--fc-text-muted);
  position: absolute;
  bottom: 4px;
}

.fc-rune-slot .fc-rune-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.fc-rune-slot .fc-slot-qty {
  position: absolute;
  bottom: 2px;
  right: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--fc-primary);
}

/* ===== QUALITY & ENHANCEMENT SLIDERS ===== */
.fc-quality-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid var(--fc-border);
}

.fc-slider-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fc-slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fc-text-muted);
}

.fc-slider-value {
  color: var(--fc-primary);
  font-weight: 700;
}

.fc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
}

.fc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: var(--fc-primary);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--fc-transition);
}

.fc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 8px var(--fc-primary-glow);
}

.fc-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--fc-primary);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.fc-enhancement-slider::-webkit-slider-thumb {
  background: #60a5fa;
}

.fc-enhancement-slider::-moz-range-thumb {
  background: #60a5fa;
}

/* Slider Row with +/- Buttons */
.fc-slider-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-slider-row .fc-slider {
  flex: 1;
}

.fc-slider-btn {
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  color: var(--fc-text-muted);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--fc-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fc-slider-btn:hover {
  color: var(--fc-primary);
}

/* ===== RUNE SELECTOR ===== */
.fc-rune-selector {
  border-top: 1px solid var(--fc-border);
  margin-top: 8px;
}

.fc-rune-selector .fc-panel-header {
  padding: 10px 16px;
}

.fc-rune-selector .fc-panel-header h2 {
  font-size: 12px;
}

.fc-rune-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  background: var(--fc-bg-card);
  border-radius: 6px;
  border: 1px solid var(--fc-border);
  cursor: pointer;
  transition: var(--fc-transition);
  text-align: center;
  aspect-ratio: 1;
}

.fc-rune-card-img-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-rune-placeholder {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--fc-text-muted);
}

.fc-rune-card:hover {
  border-color: var(--fc-primary);
  background: rgba(255, 159, 67, 0.05);
}

.fc-rune-card.selected {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
}

.fc-rune-card-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.fc-rune-card-info {
  flex: 1;
  min-width: 0;
}

.fc-rune-card-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--fc-text);
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fc-rune-card-tier {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
}

.fc-rune-card-tier.tier1 {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
}

.fc-rune-card-tier.tier2 {
  background: rgba(192, 132, 252, 0.2);
  color: #c084fc;
}

#fc-rune-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding: 8px;
}

#fc-rune-list .fc-empty {
  grid-column: 1 / -1;
  text-align: center;
}

/* ===== SELECTED RUNES DISPLAY ===== */
.fc-selected-runes {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--fc-border);
}

#fc-selected-runes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-selected-runes h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--fc-text-muted);
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.fc-selected-rune-item {
  background: var(--fc-bg-card);
  border-radius: 6px;
  padding: 8px 12px;
  border-left: 3px solid #60a5fa;
  flex: 0 0 auto;
}

.fc-selected-rune-item.tier2 {
  border-left-color: #c084fc;
}

.fc-selected-rune-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.fc-selected-rune-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--fc-text);
}

.fc-selected-rune-type {
  font-size: 10px;
  color: #60a5fa;
  text-transform: uppercase;
}

.fc-selected-rune-type.tier2 {
  color: #c084fc;
}

.fc-selected-rune-desc {
  font-size: 11px;
  color: var(--fc-text-muted);
  line-height: 1.5;
}

.fc-selected-rune-desc strong {
  color: var(--fc-primary);
}

/* Rune slot unlocked indicator */
.fc-rune-slot.unlocked {
  animation: runeGlow 2s ease-in-out infinite;
}

@keyframes runeGlow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(96, 165, 250, 0.3);
  }

  50% {
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.6);
  }
}