.how-guide {
  position: relative;
}

.how-guide::before {
  content: "";
  position: absolute;
  inset: 70px auto auto 50%;
  width: min(520px, 42vw);
  height: 520px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.12), transparent 68%);
  filter: blur(4px);
}

.how-copy {
  max-width: 420px;
  margin: 22px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.how-discord {
  width: max-content;
}

.how-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.how-video-link {
  width: max-content;
}

.how-video-card {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 16 / 9;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 112, 71, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 23, 34, 0.82), rgba(9, 13, 20, 0.9));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), 0 0 42px rgba(255, 106, 61, 0.08);
}

.how-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 0, rgba(255, 106, 61, 0.18), transparent 34%);
  z-index: 1;
}

.how-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.how-steps {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 112, 71, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 23, 34, 0.82), rgba(9, 13, 20, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 70px rgba(0, 0, 0, 0.28);
}

.how-steps article {
  grid-template-columns: 54px 1fr;
  padding: 20px;
  margin: 0;
  border: 0;
  border-radius: 14px;
}

.how-steps article + article {
  margin-top: 8px;
}

.how-steps article:hover {
  background: rgba(255, 255, 255, 0.025);
}

.how-steps article b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 112, 71, 0.28);
  border-radius: 12px;
  background: rgba(255, 106, 61, 0.09);
  color: var(--orange);
}

.how-steps h3 {
  margin-bottom: 7px;
}

.how-steps strong {
  color: #f5f7fb;
}

@media (max-width: 900px) {
  .how-guide::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .how-steps {
    padding: 10px;
  }

  .how-steps article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 16px 12px;
  }

  .how-discord {
    display: inline-flex;
  }

  .how-actions {
    align-items: stretch;
  }

  .how-actions > a {
    justify-content: center;
    width: 100%;
  }
}
