:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  background: #f5f7fb;
  color: #0f172a;
  line-height: 1.6;
}

.fs-hero .container,
.fs-main .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.fs-hero {
  background: linear-gradient(120deg, #ec4899, #6366f1);
  color: #fff;
  padding: 48px 0;
}

.fs-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.fs-eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.fs-hero-text h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.fs-subtitle {
  margin: 0 0 14px;
  max-width: 720px;
}

.fs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fs-meta span {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.fs-main {
  padding: 34px 0 54px;
}

.fs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.fs-card,
.fs-info {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.fs-card-header p {
  margin-top: 6px;
}

.fs-form {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.fs-upload {
  border: 2px dashed #fbcfe8;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  background: #fff6fb;
  cursor: pointer;
}

.fs-upload input[type='file'] {
  display: none;
}

.fs-preview {
  text-align: center;
}

.fs-preview img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 14px;
  display: none;
  border: 1px solid #e2e8f0;
}

.fs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: #6366f1;
  color: #fff;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
  background: #8b5cf6;
  color: #fff;
}

.btn-ghost {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.fs-note {
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
}

.fs-status {
  margin-top: 10px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #0f172a;
}

.fs-info ul {
  padding-left: 18px;
  margin: 0;
}

@media (max-width: 720px) {
  .fs-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
