.token-card {
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  border: 1px solid rgba(0, 255, 163, 0.3);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #ffffff;
  box-sizing: border-box;
  min-width: 340px;
  max-width: 380px;
  min-height: 180px;
  max-height: 240px;
}

.token-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.token-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 163, 0.15);
  border: 1px solid rgba(0, 255, 163, 0.3);
  padding: 5px;
  flex-shrink: 0;
}

.token-card__icon svg {
  width: 20px;
  height: 20px;
  color: #00ffa3;
}

.token-card__title {
  font-weight: 800;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.token-card__subtitle {
  font-size: 12px;
  color: #00ffa3;
  margin: 0;
  line-height: 1;
  padding: 0;
  font-weight: 600;
}

.token-card__description {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
  padding: 0;
}

.token-card__btn {
  display: inline-block;
  width: 100%;
  padding: 12px 14px;
  background: linear-gradient(135deg, #00ffa3 0%, #00d98a 100%);
  color: #0f0f1e;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.token-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 255, 163, 0.3);
}

/* Responsive adjustments */
@media (max-width: 400px) {
  .token-card {
    min-width: unset;
    max-width: unset;
    min-height: unset;
    max-height: unset;
  }
}

