/* Location list */
#location-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s;
}

.location-card:hover:not(.locked) {
  border-color: rgba(255,255,255,0.4);
  transform: translateX(4px);
}

.location-card.active {
  border-color: #4CAF50;
  background: rgba(76,175,80,0.15);
}

.location-card.locked {
  opacity: 0.5;
  cursor: not-allowed;
}

.location-card .loc-name {
  font-size: 18px;
  font-weight: bold;
}

.location-card .loc-cost {
  color: #ffd700;
  font-size: 14px;
}

/* Equipment list */
#equipment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.equip-category {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 16px;
}

.equip-category:last-child {
  border-bottom: none;
}

.equip-category h3 {
  margin-bottom: 10px;
  color: #80cbc4;
}

.equip-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  margin: 6px 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.equip-item.current {
  background: rgba(76,175,80,0.15);
  border: 1px solid #4CAF50;
}

.equip-item.locked {
  opacity: 0.6;
}

.equip-name { font-weight: bold; }
.equip-effect { color: #aaa; font-size: 13px; }
.equip-price { color: #ffd700; font-size: 14px; }

.upgrade-btn {
  padding: 6px 14px;
  background: linear-gradient(180deg, #2196F3, #1976D2);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  transition: all 0.2s;
}

.upgrade-btn:hover:not(:disabled) {
  transform: scale(1.05);
}

.upgrade-btn:disabled {
  background: #555;
  cursor: not-allowed;
  transform: none;
}

/* Collection / Pokedex */
#collection-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.collection-tab {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
}

.collection-tab.active {
  background: rgba(33,150,243,0.3);
  border-color: #2196F3;
}

#collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.fish-card {
  padding: 14px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  text-align: center;
  transition: all 0.2s;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fish-card.caught {
  border-color: rgba(76,175,80,0.4);
}

.fish-card.uncaught {
  opacity: 0.4;
  filter: grayscale(1);
}

.fish-card .fish-icon {
  font-size: 32px;
  margin-bottom: 6px;
}

.fish-card .fish-name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

.fish-card .fish-rarity {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
}

.rarity-common { background: #78909c; color: #fff; }
.rarity-rare { background: #1e88e5; color: #fff; }
.rarity-epic { background: #8e24aa; color: #fff; }
.rarity-legendary { background: linear-gradient(180deg, #ffd700, #ff8f00); color: #333; }

.fish-card .fish-stats {
  font-size: 11px;
  color: #aaa;
  margin-top: 6px;
  line-height: 1.4;
}

/* Achievements list */
#achievements-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.achievement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}

.achievement-item.unlocked {
  border-color: rgba(255,215,0,0.5);
  background: rgba(255,215,0,0.05);
}

.achievement-item.locked {
  opacity: 0.4;
}

.ach-info {
  flex: 1;
}

.ach-name {
  font-weight: bold;
  font-size: 15px;
}

.ach-desc {
  font-size: 13px;
  color: #aaa;
  margin-top: 2px;
}

.ach-reward {
  color: #ffd700;
  font-size: 13px;
}
