:root {
  color-scheme: dark;
}

body {
  margin: 0;
}

.font-inter {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at -20% 0%, rgba(45, 212, 191, 0.25), transparent 55%),
    radial-gradient(circle at 120% 10%, rgba(14, 165, 233, 0.22), transparent 55%),
    #020617;
}

.page__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.96));
  z-index: 1;
}

.floating {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 9999px;
  filter: blur(110px);
  opacity: 0.55;
  z-index: 0;
  animation: float 18s ease-in-out infinite;
}

.floating--cyan {
  top: -12rem;
  left: -10rem;
  background: rgba(6, 182, 212, 0.45);
}

.floating--emerald {
  bottom: -10rem;
  right: -12rem;
  background: rgba(16, 185, 129, 0.4);
  animation-delay: 3s;
}

.floating--violet {
  top: 25%;
  right: 12%;
  background: rgba(124, 58, 237, 0.28);
  animation-delay: 6s;
}

@keyframes float {
  0% {
    transform: translate(-8%, -6%) scale(1);
  }
  50% {
    transform: translate(10%, 12%) scale(1.1);
  }
  100% {
    transform: translate(-8%, -6%) scale(1);
  }
}

.glass-card {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(18px);
}
.trail-view-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 9999px;
  border: 1px solid rgba(71, 85, 105, 0.6);
  background: rgba(15, 23, 42, 0.65);
  padding: 0.55rem 1.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgb(203 213 225);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.trail-view-tab:hover {
  border-color: rgba(45, 212, 191, 0.55);
  color: rgb(110 231 183);
}

.trail-view-tab--active {
  border-color: rgba(56, 189, 248, 0.6);
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.22), rgba(56, 189, 248, 0.22));
  color: rgb(241 245 249);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.12);
}


.token-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1.15rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

@media (max-width: 768px) {
  .floating {
    width: 18rem;
    height: 18rem;
    filter: blur(90px);
  }
}.dimension-row {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.6);
  padding: 1rem;
}

.dimension-row__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgb(148 163 184);
}

.dimension-row__name {
  font-weight: 600;
  color: rgb(248 250 252);
}

.dimension-row__score {
  font-weight: 600;
  color: rgb(125 211 252);
}

.dimension-bar {
  margin-top: 0.75rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: rgba(30, 41, 59, 0.7);
  overflow: hidden;
}

.dimension-bar__fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, #22d3ee 0%, #2dd4bf 50%, #38bdf8 100%);
  transition: width 0.4s ease;
}

.detail-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.65);
  padding: 1.5rem;
}

.detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.detail-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgb(248 250 252);
}

.detail-description {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgb(148 163 184);
}

.detail-score-block {
  text-align: right;
}

.detail-score {
  font-size: 2rem;
  font-weight: 600;
  color: rgb(16 185 129);
}

.detail-score-max {
  font-size: 0.75rem;
  color: rgb(148 163 184);
}

.detail-body {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.detail-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgb(34 197 94);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.detail-subtitle--warning {
  color: rgb(250 204 21);
}

.detail-list {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: rgb(226 232 240);
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.detail-list li::before {
  content: "-";
  margin-top: 0.2rem;
  color: rgb(52 211 153);
}

.detail-list--warning li::before {
  color: rgb(248 113 113);
}

