.quick-start-page {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 2rem;
}

.hero-section {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-section h1 {
  font-size: 3rem;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto;
}

.path-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.path-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.path-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(41, 171, 226, 0.05), rgba(103, 58, 183, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.path-card:hover::after {
  opacity: 1;
}

.path-card h2 {
  font-size: 1.8rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.code-preview {
  background: var(--dark-gray);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  position: relative;
}

.code-preview::before {
  content: '// DeepSeek.diy SDK';
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem;
  font-size: 0.8rem;
  color: var(--medium-gray);
  font-family: 'Fira Code', monospace;
}

.code-preview code {
  color: var(--white);
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
}

.preview-image {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.path-features {
  list-style: none;
  margin: 2rem 0;
}

.path-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.path-features li svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300%;
  height: 300%;
}

.quick-links {
  margin-top: 4rem;
}

.quick-links h2 {
  font-size: 2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  text-align: center;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark-gray);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.quick-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(41, 171, 226, 0.1), rgba(103, 58, 183, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.quick-link:hover::after {
  opacity: 1;
}

.quick-link svg {
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.quick-link:hover svg {
  transform: scale(1.1);
}

/* Code highlighting */
.code-preview .keyword {
  color: #569cd6;
}

.code-preview .string {
  color: #ce9178;
}

.code-preview .comment {
  color: #6a9955;
}

/* Animation for code blocks */
@keyframes codeFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.code-preview {
  animation: codeFadeIn 0.6s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quick-start-page {
    padding: 1rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .path-card {
    padding: 1.5rem;
  }
  
  .code-preview {
    padding: 1rem;
  }
  
  .quick-link {
    padding: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .path-card,
  .quick-link {
    transition: none;
  }
  
  .code-preview {
    animation: none;
  }
}

/* High Contrast Mode */
@media (forced-colors: active) {
  .path-card,
  .quick-link {
    border: 2px solid CanvasText;
  }
}