:root {
  --bg: #10120e;
  --panel: rgba(18, 20, 16, 0.86);
  --panel-strong: rgba(20, 23, 18, 0.96);
  --line: rgba(236, 229, 204, 0.16);
  --text: #f5f0df;
  --muted: #b8b19f;
  --accent: #f2b94b;
  --accent-2: #7fb069;
  --danger: #ff8177;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #0e120d url("images/bg.png") center / cover fixed no-repeat;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 16%, rgba(8, 10, 7, 0.08), rgba(8, 10, 7, 0.28) 58%, rgba(8, 10, 7, 0.44)),
    linear-gradient(180deg, rgba(8, 10, 7, 0.16), rgba(8, 10, 7, 0.34));
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 30px;
}

.topbar,
.control-band,
.species-panel,
.details-panel,
.editor-panel,
.validation-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 12px;
  border-radius: 8px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(242, 185, 75, 0.55);
  border-radius: 8px;
  color: #17130a;
  background: var(--accent);
  font-weight: 900;
  font-size: 0.78rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small,
.section-head p,
.meta-row,
#editorHint {
  color: var(--muted);
}

.top-actions,
.admin-actions,
.filter-row,
.meta-row,
.ownership-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.control-band {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
}

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.filter-panel-head h1 {
  font-size: 1.1rem;
}

.filter-panel-head p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.filter-body {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.control-band.collapsed {
  padding: 12px 14px;
}

.control-band.collapsed .filter-body {
  display: none;
}

.control-band.collapsed .filter-panel-head {
  align-items: center;
  flex-direction: row;
}

.control-band.collapsed .collapse-toggle {
  min-width: 110px;
}

.search-wrap {
  display: grid;
  gap: 8px;
}

.search-wrap label {
  color: var(--muted);
  font-size: 0.85rem;
}

input[type="search"],
input[name="username"],
input[name="password"],
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.38);
  outline: none;
}

input[type="search"] {
  height: 48px;
  padding: 0 14px;
}

input[name="username"],
input[name="password"] {
  height: 44px;
  padding: 0 12px;
}

input[type="search"]:focus,
input[name="username"]:focus,
input[name="password"]:focus,
textarea:focus {
  border-color: rgba(242, 185, 75, 0.65);
}

.filter-row {
  margin-top: 14px;
}

.ownership-row {
  margin-top: 12px;
}

.toggle-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.toggle-control input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.mobile-view-tabs {
  display: none;
  gap: 8px;
  margin-top: 14px;
}

.chip,
.ghost-button,
.primary-button,
.text-button,
.tab,
.file-picker {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.chip {
  padding: 0 12px;
}

.chip.active,
.primary-button {
  border-color: rgba(242, 185, 75, 0.7);
  color: #17130a;
  background: var(--accent);
  font-weight: 800;
}

.ghost-button,
.primary-button,
.text-button,
.file-picker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

.text-button {
  border: 0;
  color: var(--accent);
  background: transparent;
}

.meta-row {
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.9rem;
}

.map-strip {
  margin-top: 26px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.section-head h1,
.section-head p,
.landing-status {
  color: #fff6dc;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.75);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h2 {
  font-size: 1rem;
}

.reserve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

.reserve-card {
  position: relative;
  display: grid;
  overflow: visible;
  min-height: 158px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(10, 12, 9, 0.94);
  cursor: pointer;
}

.reserve-card:hover,
.reserve-card:focus-within {
  z-index: 20;
}

.reserve-card img {
  width: 100%;
  height: 148px;
  object-fit: contain;
  padding: 8px;
  border-radius: 7px 7px 0 0;
  background: #050705;
}

.reserve-copy {
  display: grid;
  gap: 10px;
  padding: 10px;
  text-align: left;
}

.reserve-copy strong {
  min-height: 2.35em;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.reserve-copy small {
  color: var(--muted);
}

.reserve-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.reserve-stats span {
  display: grid;
  gap: 1px;
  min-height: 46px;
  padding: 7px 8px;
  border: 1px solid rgba(242, 185, 75, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
}

.reserve-stats b {
  color: var(--accent);
  font-size: 1.28rem;
  line-height: 1;
}

.reserve-stats small {
  overflow: hidden;
  color: var(--text);
  font-size: 0.72rem;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.great-one-stat {
  position: relative;
}

.great-one-stat.has-great-ones {
  cursor: help;
}

.great-one-stat.has-great-ones:focus-visible {
  border-color: var(--accent);
  outline: 2px solid rgba(242, 185, 75, 0.32);
  outline-offset: 2px;
}

.reserve-stats .great-one-popover {
  position: absolute;
  right: -9px;
  bottom: calc(100% + 10px);
  z-index: 30;
  display: none;
  width: max-content;
  min-width: 180px;
  max-width: min(280px, 80vw);
  max-height: 250px;
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(242, 185, 75, 0.58);
  border-radius: 8px;
  color: var(--text);
  background: rgba(12, 14, 11, 0.98);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.62);
  cursor: default;
  text-align: left;
}

.reserve-stats .great-one-popover > strong {
  display: block;
  min-height: 0;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  line-height: 1.2;
}

.reserve-stats .great-one-list {
  display: grid;
  gap: 5px;
}

.reserve-stats .great-one-list span {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  color: var(--text);
  background: none;
  font-size: 0.8rem;
  line-height: 1.25;
}

.great-one-stat.has-great-ones:hover .great-one-popover,
.great-one-stat.has-great-ones:focus .great-one-popover,
.great-one-stat.has-great-ones.open .great-one-popover {
  display: block;
}

.reserve-card.active {
  border-color: var(--accent);
  outline: 2px solid rgba(242, 185, 75, 0.25);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(280px, 350px) 1fr;
  gap: 14px;
  margin-top: 18px;
  align-items: start;
}

.species-panel,
.details-panel,
.editor-panel,
.validation-panel {
  border-radius: 8px;
}

.species-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: calc(100vh - 210px);
  min-height: 520px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.panel-head span {
  color: var(--muted);
  font-size: 0.85rem;
}

.species-list {
  min-height: 0;
  height: 100%;
  overflow: auto;
  padding: 8px;
}

.species-button {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 64px;
  margin-bottom: 7px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  text-align: left;
}

.species-button.active {
  border-color: rgba(242, 185, 75, 0.62);
  background: rgba(242, 185, 75, 0.14);
}

.class-badge,
.score-badge {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #11140e;
  background: var(--accent-2);
  font-weight: 900;
}

.score-badge {
  min-width: 0;
  width: auto;
  padding: 0 10px;
  background: var(--accent);
}

.species-name {
  display: block;
  font-weight: 800;
}

.great-one-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(242, 185, 75, 0.65);
  border-radius: 8px;
  color: #17130a;
  background: linear-gradient(180deg, #ffe08a, var(--accent));
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.species-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.species-meta > span:not(.great-one-badge) {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.details-panel {
  min-height: 560px;
  background: var(--panel-strong);
}

.animal-hero {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.animal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.animal-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.quick-facts,
.trophy-grid,
.loadout-grid,
.lure-grid {
  display: grid;
  gap: 10px;
}

.quick-facts {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.fact,
.trophy-cell,
.loadout-card,
.lure-card,
.empty-state,
.validation-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.fact,
.trophy-cell {
  padding: 12px;
}

.fact small,
.trophy-cell small,
.loadout-card small,
.lure-card small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.fact strong,
.trophy-cell strong {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
}

.detail-section {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.detail-section:last-child {
  border-bottom: 0;
}

.detail-section h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.section-title-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.section-title-line small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
}

.section-title-line small.dlc-label {
  border-color: rgba(127, 176, 105, 0.58);
  color: #bde4aa;
}

.trophy-grid {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.trophy-cell.great-one {
  border-color: rgba(242, 185, 75, 0.62);
}

.score-helper {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(160px, 220px) minmax(220px, 1fr);
  align-items: end;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.score-helper label {
  color: var(--muted);
  font-size: 0.85rem;
}

.score-helper input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.32);
  padding: 0 10px;
}

.score-helper strong {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--accent);
}

.loadout-grid,
.recommendation-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.loadout-card,
.lure-card,
.recommendation-card {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.recommendation-grid {
  display: grid;
  gap: 12px;
}

.recommendation-card {
  border: 1px solid rgba(242, 185, 75, 0.32);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.recommendation-card > small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.recommendation-card .loadout-card {
  padding: 0;
  border: 0;
  background: transparent;
}

.loadout-card.recommended {
  border-color: rgba(242, 185, 75, 0.68);
  background: rgba(242, 185, 75, 0.12);
}

.loadout-card strong,
.lure-card strong {
  font-size: 0.98rem;
}

.pill-row,
.lure-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.weapon-search-wrap {
  margin-bottom: 10px;
}

.weapon-search-wrap input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.32);
  padding: 0 12px;
}

.weapon-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 8px;
  max-height: 270px;
  overflow: auto;
  padding-right: 4px;
}

.weapon-filter-button {
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  text-align: left;
}

.weapon-filter-button.active {
  border-color: rgba(242, 185, 75, 0.72);
  background: rgba(242, 185, 75, 0.15);
}

.weapon-filter-button small {
  color: var(--muted);
}

.empty-inline {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.18);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.82rem;
}

.manual-pill {
  border-color: rgba(242, 185, 75, 0.6);
  color: var(--accent);
}

.dlc-pill {
  border-color: rgba(127, 176, 105, 0.58);
  color: #bde4aa;
}

.empty-state {
  display: grid;
  place-content: center;
  gap: 10px;
  min-height: 560px;
  padding: 30px;
  text-align: center;
}

.admin-layout {
  display: grid;
  gap: 16px;
}

.login-panel {
  width: min(460px, 100%);
  margin-inline: auto;
}

.login-form {
  display: grid;
  gap: 12px;
}

.login-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.login-error {
  margin: 0 0 12px;
  color: var(--danger);
}

.admin-actions {
  margin-top: 14px;
}

.editor-grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 330px;
  gap: 14px;
}

.editor-grid.structured-editor {
  grid-template-columns: 140px minmax(360px, 0.95fr) minmax(420px, 1.1fr) 330px;
}

.editor-tabs {
  display: grid;
  align-content: start;
  gap: 8px;
}

.tab {
  width: 100%;
  padding: 0 12px;
  text-align: left;
}

.tab.active {
  border-color: var(--accent);
  color: #17130a;
  background: var(--accent);
  font-weight: 800;
}

.editor-head {
  min-height: 70px;
}

.file-picker {
  position: relative;
  overflow: hidden;
}

.file-picker input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

textarea {
  display: block;
  min-height: 680px;
  padding: 14px;
  border: 0;
  border-radius: 0 0 8px 8px;
  resize: vertical;
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  line-height: 1.5;
}

.record-table-panel,
.record-form-panel {
  min-height: 720px;
}

.record-table-wrap {
  max-height: 660px;
  overflow: auto;
}

.record-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.record-table th,
.record-table td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.record-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--accent);
  background: rgba(10, 12, 9, 0.96);
}

.record-table tr {
  cursor: pointer;
}

.record-table tr:hover,
.record-table tr.selected {
  background: rgba(242, 185, 75, 0.12);
}

.record-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: 660px;
  overflow: auto;
  padding: 12px;
}

.record-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.record-field.wide {
  grid-column: 1 / -1;
}

.record-field input,
.record-field select,
.record-field textarea,
#recordSearch {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.32);
  outline: none;
}

.record-field input,
.record-field select,
#recordSearch {
  min-height: 40px;
  padding: 0 10px;
}

.record-field textarea {
  min-height: 110px;
  padding: 10px;
  resize: vertical;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px;
  max-height: 240px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.check-grid.compact-checks {
  grid-template-columns: repeat(9, minmax(42px, 1fr));
}

.check-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.check-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.danger-button {
  border-color: rgba(255, 129, 119, 0.45);
  color: #ffc6c1;
}

.validation-list {
  max-height: 690px;
  overflow: auto;
  padding: 10px;
}

.validation-item {
  padding: 10px;
  margin-bottom: 8px;
  color: var(--muted);
}

.validation-item.error {
  color: var(--danger);
  border-color: rgba(255, 129, 119, 0.45);
}

.validation-item.ok {
  color: var(--accent-2);
  border-color: rgba(127, 176, 105, 0.45);
}

.weapon-modal {
  width: min(760px, calc(100% - 24px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.weapon-modal::backdrop {
  background: rgba(0, 0, 0, 0.64);
}

.weapon-modal form {
  display: grid;
  max-height: inherit;
}

.weapon-modal-actions {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.owned-weapon-list {
  display: grid;
  gap: 7px;
  overflow: auto;
  padding: 10px;
}

.owned-weapon-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.owned-weapon-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.owned-weapon-row strong,
.owned-weapon-row small {
  display: block;
}

.owned-weapon-row small {
  color: var(--muted);
}

@media (max-width: 1060px) {
  .workspace,
  .editor-grid,
  .editor-grid.structured-editor {
    grid-template-columns: 1fr;
  }

  .species-panel {
    max-height: none;
    min-height: 0;
  }

  .species-list {
    max-height: min(74vh, 820px);
    height: auto;
  }

  .mobile-view-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .workspace[data-mobile-view="animals"] .details-panel {
    display: none;
  }

  .workspace[data-mobile-view="details"] .species-panel {
    display: none;
  }

  .score-helper {
    grid-template-columns: 1fr;
  }

  .editor-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .trophy-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .app-shell {
    width: min(100% - 18px, 1480px);
    padding-top: 9px;
  }

  .topbar,
  .filter-panel-head,
  .section-head,
  .animal-title {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar {
    position: static;
  }

  .reserve-grid {
    grid-template-columns: repeat(auto-fill, minmax(142px, 1fr));
  }

  .reserve-card {
    min-height: 150px;
  }

  .reserve-card img {
    height: 108px;
  }

  .species-button {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .species-button .score-badge {
    justify-self: end;
  }
}
