/* NewWorlds.css - Modern, clean style for concept and loot cards */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181c20;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}
.nw-header {
  background: #23272b;
  padding: 24px 0 10px 0;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  letter-spacing: 1px;
}
.nw-main {
  max-width: 900px;
  margin: 40px auto;
  background: #23272b;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 32px 24px 24px 24px;
}
.nw-section {
  margin-bottom: 36px;
}
.nw-section h2 {
  color: #8ab4f8;
  font-size: 26px;
  margin-top: 0;
}
.nw-section ul {
  margin: 10px 0 0 20px;
}
#loot-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}
.loot-card {
  background: #1a1d20;
  border-radius: 18px 18px 12px 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  padding: 22px 16px 18px 16px;
  min-width: 200px;
  max-width: 260px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 3px solid #333;
  transition: border 0.2s, box-shadow 0.2s;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.loot-card[data-rarity="Common"] { border-color: #b0b0b0; }
.loot-card[data-rarity="Uncommon"] { border-color: #4fc3a1; }
.loot-card[data-rarity="Rare"] { border-color: #4f7fc3; }
.loot-card[data-rarity="Legendary"] { border-color: #e6b800; }
.loot-card[data-class="Heavy"] { border-color: #e53935 !important; } /* Red */
.loot-card[data-class="Medium"] { border-color: #1976d2 !important; } /* Blue */
.loot-card[data-class="Light"] { border-color: #43a047 !important; } /* Green */
.loot-card[data-class="Sniper"] { border-color: #ff9800 !important; } /* Orange */
.loot-card .loot-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 14px;
  background: #23272b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  overflow: hidden;
}
.loot-card .loot-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loot-card .loot-name {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 6px;
  text-align: center;
}
.loot-card .loot-rarity {
  font-size: 15px;
  margin-bottom: 8px;
  color: #aaa;
}
.loot-card .loot-desc {
  font-size: 14px;
  color: #c0c0c0;
  text-align: center;
}
@media (max-width: 700px) {
  .nw-main { padding: 8px 2px; }
  #loot-cards { gap: 8px; }
  .loot-card { min-width: 120px; max-width: 160px; padding: 8px 4px; }
  .loot-card .loot-icon { width: 60px; height: 60px; font-size: 36px; }
}
