.token-result-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.token-main {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.token-count {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.token-number {
  font-size: 48px;
  font-weight: 700;
  color: #10b981;
  line-height: 1;
}

.token-unit {
  font-size: 16px;
  color: #6b7280;
}

.token-desc {
  margin-top: 8px;
  font-size: 14px;
  color: #9ca3af;
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.light-theme .stat-item {
  background: rgba(0, 0, 0, 0.03);
}

.stat-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 24px;
  font-weight: 600;
  color: #374151;
}

.light-theme .stat-value {
  color: #1f2937;
}

.cost-section {
  padding: 20px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.cost-header {
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.cost-item.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(59, 130, 246, 0.3);
}

.cost-label {
  font-size: 14px;
  color: #6b7280;
}

.cost-item.total .cost-label {
  font-weight: 600;
  color: #374151;
}

.light-theme .cost-item.total .cost-label {
  color: #1f2937;
}

.cost-value {
  font-size: 16px;
  font-weight: 600;
  color: #10b981;
}

.cost-item.total .cost-value {
  font-size: 20px;
  color: #3b82f6;
}

.cost-note {
  margin-top: 12px;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
}

@media (max-width: 640px) {
  .token-main {
    padding: 20px;
  }
  
  .token-number {
    font-size: 36px;
  }
  
  .token-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-value {
    font-size: 20px;
  }
  
  .cost-section {
    padding: 16px;
  }
  
  .cost-item.total .cost-value {
    font-size: 18px;
  }
}