.make-post-guide-page {
  padding-top: 96px;
  position: relative;
  overflow-x: clip;
  isolation: isolate;
}

.make-post-guide-page::before {
  content: "";
  position: fixed;
  inset: -16% -10%;
  height: 130vh;
  background:
    radial-gradient(ellipse 70% 50% at 20% 10%, rgba(124, 58, 237, 0.34), transparent 62%),
    radial-gradient(ellipse 60% 45% at 84% 20%, rgba(56, 189, 248, 0.2), transparent 65%),
    radial-gradient(ellipse 80% 50% at 50% 95%, rgba(124, 58, 237, 0.15), transparent 70%);
  filter: blur(46px);
  opacity: 0.86;
  pointer-events: none;
  z-index: 0;
}

.make-post-guide-hero,
.make-post-guide-content,
.make-post-guide-page .container {
  position: relative;
  z-index: 1;
}

.make-post-guide-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.make-post-guide-decor--rings {
  right: -130px;
  top: 180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.28);
  box-shadow:
    inset 0 0 0 44px rgba(124, 58, 237, 0.08),
    inset 0 0 0 98px rgba(124, 58, 237, 0.05);
  animation: mpgSpin 24s linear infinite;
}

.make-post-guide-decor--grid {
  left: -80px;
  top: 420px;
  width: 320px;
  height: 320px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at 50% 50%, black 48%, transparent 88%);
  opacity: 0.32;
}

.make-post-guide-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.make-post-guide-particles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 16px rgba(167, 139, 250, 0.95);
  animation: mpgFloat 6s ease-in-out infinite alternate;
}

.make-post-guide-particles span:nth-child(1) { top: 140px; left: 14%; animation-delay: -0.4s; }
.make-post-guide-particles span:nth-child(2) { top: 280px; right: 16%; animation-delay: -1.1s; }
.make-post-guide-particles span:nth-child(3) { bottom: 220px; left: 24%; animation-delay: -1.8s; }
.make-post-guide-particles span:nth-child(4) { bottom: 140px; right: 22%; animation-delay: -0.9s; }

.make-post-guide-hero {
  text-align: center;
  padding: 56px 0 26px;
}

.make-post-guide-lead {
  margin: 16px auto 0;
  max-width: 760px;
}

.make-post-guide-content {
  padding: 24px 0 72px;
}

.make-post-guide-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 28px;
  display: grid;
  gap: 26px;
}

.make-post-guide-step .h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.make-post-guide-presets {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.make-post-guide-presets li {
  color: #d1d5db;
  line-height: 1.5;
}

.make-post-guide-cta {
  padding-top: 6px;
}

.make-post-guide-cta .btn {
  width: fit-content;
}

@keyframes mpgSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes mpgFloat {
  0% { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0.4; }
  100% { transform: translate3d(0, -14px, 0) scale(1.2); opacity: 1; }
}

@media (max-width: 767px) {
  .make-post-guide-page {
    padding-top: 76px;
  }

  .make-post-guide-card {
    padding: 16px;
    gap: 18px;
  }

  .make-post-guide-step .h2 {
    font-size: 24px;
  }

  .make-post-guide-decor--rings,
  .make-post-guide-decor--grid,
  .make-post-guide-particles {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .make-post-guide-decor--rings,
  .make-post-guide-particles span {
    animation: none;
  }
}
