/**
 * Help page — featured CheatPulse Checker block.
 */

.help-checker {
  width: min(1200px, 92%);
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0;
  text-align: left;
}

.help-checker__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 36px 40px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: #0a0a0c;
  box-shadow: none;
}

.help-checker__card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background-image:
    radial-gradient(ellipse 80% 60% at 12% 8%, rgba(255, 255, 255, 0.08) 0%, transparent 52%),
    radial-gradient(ellipse 70% 50% at 88% 92%, rgba(255, 255, 255, 0.04) 0%, transparent 48%),
    linear-gradient(128deg, rgba(0, 0, 0, 0.35) 0%, transparent 40%, rgba(255, 255, 255, 0.04) 100%);
}

.help-checker__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 40px;
  align-items: center;
}

.help-checker__copy {
  min-width: 0;
}

.help-checker__badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 0;
  font-family: 'Onder', var(--font-main);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
}

.help-checker__lead {
  margin: 0 0 18px;
  max-width: 42rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.help-checker__points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-checker__points li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  color: #e7e7ee;
}

.help-checker__aside {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.help-checker__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000000;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.help-checker__btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.help-checker__btn:hover,
.help-checker__btn:focus-visible {
  opacity: 0.92;
  outline: none;
}

@media (max-width: 768px) {
  .help-checker {
    width: calc(100% - 20px);
    margin-bottom: 72px;
  }

  .help-checker__card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .help-checker__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .help-checker__aside {
    align-items: stretch;
  }

  .help-checker__btn {
    width: 100%;
  }
}
