/* Quickstart Template CSS - Professional styling with maximum specificity */

/* Hero section styling */
html body .quickstart-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

html body .quickstart-hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

html body .quickstart-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Step counter styling */
html body .step-counter {
  background: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

/* Step card styling */
html body .step-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

html body .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Step connector lines */
html body .step-card::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 2rem);
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  z-index: 1;
}

html body .step-card:last-child::after {
  display: none;
}

/* Step content styling */
html body .step-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

html body .step-description {
  color: var(--muted-text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

html body .step-content {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}

/* Feature highlight sections */
html body .feature-highlight {
  background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

/* Placeholder for screenshots/content */
html body .screenshot-placeholder {
  background: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  margin: 1rem 0;
  color: #666;
}

/* Information boxes */
html body .tip-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
}

html body .warning-box {
  background: #f8d7da;
  border-left: 4px solid #dc3545;
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
}

html body .success-box {
  background: #d4edda;
  border-left: 4px solid #28a745;
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
}

/* Quick links grid */
html body .quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

html body .quick-link {
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

html body .quick-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-color: var(--primary-color);
}

html body .quick-link .icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Time estimate badge */
html body .time-estimate {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}
