#pf-wizard {
  max-width: 480px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(174, 76, 209, 0.08), 0 4px 6px -2px rgba(174, 76, 209, 0.05);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  padding-bottom: 2rem;
}
.pf-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e573c7;
  line-height: 1.3;
}
.pf-step {
  display: none;
  padding: 2rem 1.5rem;
  text-align: center;
}
.pf-step.active {
  display: block;
}
.pf-btn {
  background: linear-gradient(90deg, #e573c7 0%, #ae4cd1 100%);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 60px;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(174, 76, 209, 0.08);
  opacity: 0.85;
}
.pf-btn:hover, .pf-btn:focus {
  opacity: 1;
  background: linear-gradient(90deg, #ae4cd1 0%, #e573c7 100%);
  box-shadow: 0 4px 16px rgba(174, 76, 209, 0.12);
}
.pf-progress-container {
  width: 100%;
  height: 6px;
  background: #f3e8f7;
  border-radius: 6px;
  margin: 0 0 1.5rem 0;
  overflow: hidden;
}
.pf-progress {
  height: 100%;
  background: linear-gradient(90deg, #e573c7 0%, #ae4cd1 100%);
  width: 0;
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
}
.pf-upload-area {
  border: 2px dashed #e573c7;
  border-radius: 12px;
  padding: 1.5rem;
  background: #fdf6fa;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: border 0.2s;
}
.pf-upload-area:hover {
  border-color: #ae4cd1;
}
#pf-photo-preview {
  max-width: 220px;
  max-height: 220px;
  border-radius: 12px;
  margin: 0 auto 1rem auto;
  box-shadow: 0 2px 8px rgba(174, 76, 209, 0.08);
}
@media (max-width: 600px) {
  #pf-wizard {
    max-width: 98vw;
    padding: 0.5rem;
  }
  .pf-btn {
    min-width: 120px;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
} 