/* Demo Section Styling */
.demo-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
}

.demo-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: white;
}

.demo-output {
  max-width: 800px;
  margin: 0 auto;
  background: #0f172a;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #334155;
}

.demo-output pre {
  margin: 0;
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e2e8f0;
  overflow-x: auto;
}

.demo-output code {
  color: #e2e8f0;
}

/* Pairing Section Styling */
.pairing-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.pairing-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #0c4a6e;
}

.pairing-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pairing-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #0ea5e9;
}

.pairing-step h3 {
  margin: 0 0 1.5rem 0;
  color: #0c4a6e;
  text-align: center;
}

.code-block {
  background: #1e293b;
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
}

.code-block pre {
  margin: 0;
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #e2e8f0;
  white-space: pre-wrap;
  word-break: break-all;
}

.code-block code {
  color: #e2e8f0;
}

/* Commands Section Styling */
.commands-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.commands-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #1e293b;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.command-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.command-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.command-syntax {
  background: #1e293b;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.command-syntax code {
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  color: #e2e8f0;
  font-size: 0.9rem;
}

.command-item p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

/* Getting Started Section */
.getting-started-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.getting-started-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #065f46;
}

.install-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.install-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #10b981;
}

.install-step h3 {
  margin: 0 0 1.5rem 0;
  color: #065f46;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pairing-demo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .commands-grid {
    grid-template-columns: 1fr;
  }
  
  .install-steps {
    grid-template-columns: 1fr;
  }
  
  .demo-output {
    padding: 1rem;
  }
  
  .pairing-step {
    padding: 1.5rem;
  }
  
  .install-step {
    padding: 1.5rem;
  }
}
