:root {
  --neon-red: #ff3e3e;
  --bg-dark: #05050a;
  --city-bg: url("https://images.alphacoders.com/131/1318218.jpeg");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--bg-dark);
  background-image: linear-gradient(to bottom, rgba(5, 5, 10, 0.75), rgba(5, 5, 10, 1)), var(--city-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  overflow-x: hidden;
}

.neon-text {
  color: var(--neon-red);
  text-shadow: 0 0 20px rgba(255, 62, 62, 0.8), 0 0 40px rgba(255, 62, 62, 0.4);
  font-family: "Orbitron", sans-serif;
}

.hub-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: rgba(5, 5, 10, 0.92);
  border-bottom: 1px solid rgba(255, 62, 62, 0.25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.hub-bar a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
}

.hub-bar a:hover,
.hub-bar a.active {
  color: #fff;
  border-color: var(--neon-red);
  background: rgba(255, 62, 62, 0.12);
}

.claw-card {
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 62, 62, 0.1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.claw-card:hover {
  background: rgba(255, 62, 62, 0.05);
  border-color: var(--neon-red);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 62, 62, 0.15);
}

.btn-red {
  display: inline-block;
  text-align: center;
  background: linear-gradient(45deg, #ff3e3e, #8b0000);
  border: none;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s;
  font-family: "Orbitron", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.btn-red:hover {
  box-shadow: 0 0 30px rgba(255, 62, 62, 0.6);
  transform: scale(1.05);
}

.btn-red.disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.character-img {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  transition: all 0.6s ease;
}

.claw-card:hover .character-img {
  filter: drop-shadow(0 0 40px rgba(255, 62, 62, 0.6));
  transform: scale(1.1);
}

.mint-pill {
  font-size: 9px;
  letter-spacing: 0.15em;
  opacity: 0.45;
  word-break: break-all;
}

.status-live {
  color: #86efac;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
