:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #061a15;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: start center;
  background:
    radial-gradient(circle at 28% 18%, rgba(69, 188, 54, 0.30), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(246, 205, 82, 0.18), transparent 26rem),
    #061a15;
  color: #ffffff;
  overflow-x: hidden;
}

.help-page {
  width: min(100vw, 860px);
  max-width: 100vw;
  min-width: 0;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(14px, 2.5vw, 24px) clamp(8px, 2vw, 16px) 34px;
  background:
    radial-gradient(circle at 34% 12%, rgba(74, 198, 57, 0.22), transparent 18rem),
    linear-gradient(180deg, #0c351e 0%, #061a15 100%);
}

.help-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}

.page-actions {
  display: grid;
  gap: 8px;
}

.back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 42px;
  border: 2px solid #f5d46f;
  border-radius: 999px;
  padding: 9px 18px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  background: rgba(12, 49, 25, 0.78);
  touch-action: manipulation;
}

.back:hover,
.back:focus-visible {
  box-shadow: 0 0 0 3px rgba(245, 212, 111, 0.38);
}

.eyebrow {
  margin: 0 0 4px;
  color: #87dd3f;
  font-size: 19px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 52px);
  line-height: 0.95;
  font-style: italic;
}

.intro {
  margin: 0 0 14px;
  border: 1px solid rgba(245, 212, 111, 0.42);
  border-radius: 8px;
  padding: 13px;
  color: #eaf6e7;
  background: rgba(5, 24, 15, 0.70);
  font-size: 16px;
  line-height: 1.35;
}

.help-section {
  margin-top: 12px;
  border: 1px solid rgba(245, 212, 111, 0.38);
  border-radius: 8px;
  padding: 14px;
  background: rgba(5, 24, 15, 0.74);
}

.help-section h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-style: italic;
  line-height: 1;
}

.field-list {
  display: grid;
  gap: 9px;
  margin: 0;
}

.field-list div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  padding: 10px;
  background: rgba(16, 66, 31, 0.58);
}

.field-list dt {
  color: #f5d46f;
  font-weight: 800;
}

.field-list dd {
  margin: 0;
  color: #eaf6e7;
  font-size: 15px;
  line-height: 1.3;
}

@media (max-width: 520px) {
  .help-page {
    padding: 18px 8px 28px;
  }

  .help-header {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .page-actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .help-section {
    padding: 12px 10px;
  }

  .help-section h2 {
    font-size: 21px;
  }

  .intro,
  .field-list dd {
    font-size: 14px;
  }
}
