html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial,
    sans-serif;
  background: #f8fafc;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 16px;
  box-sizing: border-box;
}
h1 {
  font-weight: 700;
  margin: 0 0 12px;
}
.row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.chip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 6px 10px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.chip b {
  font-weight: 600;
}
.chip button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.panel {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0;
}
input,
select {
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 14px;
}
button.primary {
  background: #111827;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
}

button.secondary {
  background: #2353bdff;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
}

button.success {
  background: #239214ff;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
}
.muted {
  color: #475569;
  font-size: 13px;
}
.preview {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: #0b1020;
  color: #d2d7ff;
  padding: 12px;
  border-radius: 10px;
  overflow: auto;
}
.inline {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.hidden {
  display: none;
}
.tag {
  padding: 2px 8px;
  border-radius: 6px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 12px;
  margin-left: 6px;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.social-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.social-help {
  text-align: center;
  margin-bottom: 16px;
}

.help-text {
  color: #475569;
  font-size: 14px;
  margin: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link.project {
  background: #238636;
  color: white;
  border-color: #238636;
}

.social-link.project:hover {
  background: #1f7a2e;
  border-color: #1f7a2e;
}

.social-link.github {
  background: #24292f;
  color: white;
  border-color: #24292f;
}

.social-link.github:hover {
  background: #1c2128;
  border-color: #1c2128;
}

.social-link.linkedin {
  background: #0a66c2;
  color: white;
  border-color: #0a66c2;
}

.social-link.linkedin:hover {
  background: #084c8d;
  border-color: #084c8d;
}

@media (max-width: 600px) {
  body {
    align-items: flex-start;
    padding: 20px 16px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 200px;
    justify-content: center;
  }
}

@media (min-height: 800px) {
  body {
    align-items: center;
  }
}
