/* 劍與魔法 RPG Wiki — 佈景微調 */

:root {
  --md-primary-fg-color:        #5e35b1;
  --md-primary-fg-color--dark:  #4527a0;
  --md-accent-fg-color:         #ffb300;
}

/* 稀有度色票（裝備／怪物圖鑑共用） */
:root {
  --rar-common:    #9e9e9e;  /* 普通 */
  --rar-uncommon:  #4caf50;  /* 罕見 */
  --rar-rare:      #2196f3;  /* 稀有 */
  --rar-epic:      #9c27b0;  /* 史詩 */
  --rar-legendary: #ff9800;  /* 傳說 */
}

.rar-common    { color: var(--rar-common);    font-weight: 600; }
.rar-uncommon  { color: var(--rar-uncommon);  font-weight: 600; }
.rar-rare      { color: var(--rar-rare);      font-weight: 600; }
.rar-epic      { color: var(--rar-epic);      font-weight: 600; }
.rar-legendary { color: var(--rar-legendary); font-weight: 700; }

/* 首頁分區卡片格 */
.grid.cards > ul > li {
  border-radius: .6rem;
  transition: border-color .2s, box-shadow .2s;
}
.grid.cards > ul > li:hover {
  border-color: var(--md-accent-fg-color);
  box-shadow: 0 0 .4rem rgba(255,179,0,.25);
}

/* 讓圖鑑資料表更緊湊易讀 */
.md-typeset table:not([class]) th {
  background: var(--md-primary-fg-color);
  color: #fff;
}

/* 職業流派標籤 */
.tag-tank    { background:#3949ab; color:#fff; padding:.1em .5em; border-radius:.4em; font-size:.75em; }
.tag-dps     { background:#c62828; color:#fff; padding:.1em .5em; border-radius:.4em; font-size:.75em; }
.tag-caster  { background:#6a1b9a; color:#fff; padding:.1em .5em; border-radius:.4em; font-size:.75em; }
.tag-ranged  { background:#2e7d32; color:#fff; padding:.1em .5em; border-radius:.4em; font-size:.75em; }
