* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  min-height: 100vh;
  background: #fff;
  font-family: 'Arial', sans-serif;
}

.nav-links {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 30px;
  z-index: 100;
}

.nav-link {
  text-decoration: none;
  color: #bbb;
  font-weight: bold;
  font-size: 14px;
}
.nav-link:hover { text-decoration: underline; }

.nav-logo {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
}
.nav-logo img {
  height: 50px;
  width: auto;
}

/* Rarity colors */
.rarity-common { --rarity-color: #bbb; }
.rarity-uncommon { --rarity-color: #4CAF50; }
.rarity-rare { --rarity-color: #2196F3; }
.rarity-legendary { --rarity-color: #FF9800; }

.rarity-badge {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rarity-color);
}

.rarity-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rarity-color);
  margin-right: 4px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .nav-logo { top: 8px; left: 10px; }
  .nav-logo img { height: 32px; }
  .nav-links { right: 10px; gap: 18px; }
}
