/* ===== Quick Start Section ===== */
.quickstart {
  background: rgba(5, 7, 12, 0.86);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.step {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 196, 0.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-family: var(--font-mono);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 196, 0.4);
}

.step-header {
  display: flex;
  flex-direction: row;
  /*align-items: center; */
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.step-header h3 {
  text-align: left;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.step-code {
  background: rgba(6, 9, 18, 0.7);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--border);
  font-family: monospace;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  width: 100%;
}

.step-code code {
  color: var(--text-primary);
  font-size: 0.938rem;
  flex: 1;
  word-break: break-all;
}

.code-group {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  flex: 1;
}

.code-or {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
  font-family: var(--font-family);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}
