/* help-center.css */

/* Root animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

kbd {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.2em 0.4em;
    font-size: 0.9em;
  }
/* Container */
.help-container {
  max-width: 700px;
  margin: 100px auto;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 6px 24px var(--black_10);
  font-family: system-ui, sans-serif;
  animation: fadeInUp 0.6s ease both;
}

/* Header */
.help-header {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeIn 0.5s ease both;
}
.help-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--blue-crayola);
  margin-bottom: 0.5rem;
}
.help-title::after {
  content: '';
  width: 4rem;
  height: 4px;
  background: var(--blue-crayola);
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.help-intro {
  font-size: 1.6rem;
  margin-top: 2rem;
  color: var(--eerie-black-2);
}

/* Steps List */
.help-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.help-step {
  position: relative;
  font-size: 1.5rem;
  color: rgba(51, 51, 51, 0.9);
  padding: 1.5rem 1rem 1.5rem 3.5rem;
  border-left: 3px solid var(--blue-crayola);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease both;
}
.help-step:nth-child(odd) {
  animation-delay: 0.1s;
}
.help-step:nth-child(even) {
  animation-delay: 0.2s;
}
/* Step counter bullet */
.help-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: -1.25rem;
  top: 1.5rem;
  width: 2rem; height: 2rem;
  background: var(--blue-crayola);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
/* Step title */
.step-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--raisin-black);
}

/* Sub-steps */
.help-substeps {
  list-style: disc inside;
  margin-top: 0.5rem;
  color: var(--eerie-black-2);
}
.help-substeps li {
  margin-bottom: 0.5rem;
}

/* Divider */
.help-divider {
  border: none;
  height: 1px;
  background: var(--black_10);
  margin: 2rem 0;
  animation: fadeIn 0.5s ease both;
}

/* Contact */
.help-contact {
  text-align: center;
  animation: fadeIn 0.5s ease both;
}
.help-contact h2 {
  font-size: 1.7rem;
  color: var(--blue-crayola);
  margin-bottom: 0.5rem;
}
.help-contact p {
  font-size: 1.5rem;
  color: var(--eerie-black-2);
}
.help-contact a {
  color: var(--blue-crayola);
  display: inline;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.help-contact a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--blue-crayola);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.help-contact a:hover::after {
  transform: scaleX(1);
}

/* Responsive */
@media (max-width: 600px) {
  .help-container {
    margin: 120px 1rem;
    padding: 2rem 1rem;
  }
  .step-title {
    font-size: 1.3rem;
  }
  .help-intro {
    font-size: 1.3rem;
  }
  .help-step {
    padding-left: 3rem;
    font-size: 1.2rem;
  }
  .help-step::before {
    top: 1.25rem;
    left: -1.5rem;
  }
  .help-contact h2 {
    font-size: 1.5rem;
  }
  .help-contact p {
    font-size: 1.3rem;
  }
}