body {
  background: #f7f8fa;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  margin: 0;
  color: #18181b;
}
.robots-generator-container {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 32px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.brand {
  font-weight: 700;
  font-size: 2rem;
  color: #18181b;
  font-family: 'Poppins', cursive;
}
nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #18181b;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #4f46e5;
}
.main-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 32px;
}
.intro {
  margin-bottom: 24px;
}
.intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.highlight {
  color: #4f46e5;
}
/* Generator Card Styling */
#robotsForm, .output-section {
  background: #f7f8fa;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(79,70,229,0.06);
  padding: 24px 20px 20px 20px;
  margin-bottom: 24px;
}
#robotsForm {
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 18px;
}
label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 4px;
  transition: border 0.2s;
}
input:focus, textarea:focus {
  border: 1.5px solid #4f46e5;
  outline: none;
}
button {
  background: #18181b;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(24,24,27,0.06);
}
button#copyBtn {
  background: #fff;
  color: #18181b;
  border: 2px solid #18181b;
  margin-left: 12px;
}
button:hover, button:focus {
  background: #4f46e5;
  color: #fff;
}
button#copyBtn:hover, button#copyBtn:focus {
  background: #4f46e5;
  color: #fff;
  border-color: #4f46e5;
}
.output-section {
  margin-top: 0;
}
pre {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  font-size: 1rem;
  min-height: 80px;
  margin-bottom: 8px;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
}
.info-content {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 2px solid #f1f1f4;
}
.info-content h3 {
  margin-top: 24px;
  color: #4f46e5;
  font-size: 1.15rem;
}
.info-content ul, .info-content ol {
  margin-left: 20px;
  margin-bottom: 12px;
}
.info-content li {
  margin-bottom: 6px;
}
.robots-hero-card {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 40px 32px;
  color: #fff;
  gap: 32px;
}
.hero-img {
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.hero-content {
  flex: 1;
}
.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.hero-content p {
  font-size: 1.15rem;
  font-weight: 400;
  color: #e0e7ff;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .robots-hero-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 12px;
    gap: 16px;
  }
  .hero-img {
    margin-bottom: 12px;
  }
} 