#token .token-patch-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  #token .token-patch-grid {
    grid-template-columns: 1fr 1fr;
  }
}

#token .token-patch-uses-box {
  padding: 2rem;
  background: rgba(20, 24, 51, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}

#token .token-patch-uses-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(to right, #c084fc, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#token .token-patch-uses-intro {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

#token .token-patch-use-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

#token .token-patch-use-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

#token .token-patch-use-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#token .token-patch-use-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #c084fc;
}

#token .token-patch-use-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

#token .token-patch-use-desc {
  color: #9ca3af;
  font-size: 0.75rem;
  line-height: 1.5;
}

#token .token-patch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

#token .token-patch-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}

#token .token-patch-stat-value.purple {
  color: #c084fc;
}

#token .token-patch-stat-value.emerald {
  color: #34d399;
}

#token .token-patch-stat-value.cyan {
  color: #22d3ee;
}

#token .token-patch-stat-label {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
