*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: #000;
}

.screen {
  display: inline-flex;
  padding: 64px 166px 48px 166px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 80px;
  width: 100%;
  min-height: 100vh;
  background: #181818;
  color: #ffffff;
}

.wizard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.wizard__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
}

.wizard-steps {
  display: flex;
  align-items: center;
  gap: 32px;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}

.wizard-step--active {
  opacity: 1;
}

.wizard-step__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855ff;
  font-size: 18px;
}

.wizard-step--active .wizard-step__icon {
  background: #a855ff;
  color: #ffffff;
}

.wizard-step__label {
  font-size: 12px;
  color: #ffffff;
}

.screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cards {
  display: flex;
  gap: 40px;
}

.style-card {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;

  width: 260px;
  border-radius: 32px;
  overflow: hidden;
  background: #101010;
  box-shadow: 0 0 0 2px transparent;
  display: flex;
  flex-direction: column;
}

.style-card--active {
  box-shadow: 0 0 0 3px #a855ff;
}

.style-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
}

.style-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-card__label {
  padding: 16px 24px 20px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}

.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 500;
  background: #ff00ff;
  color: #ffffff;
  cursor: pointer;
}

.btn-primary--wide {
  width: 200px;
  text-align: center;
}

