:root {
  --bg: #050505;
  --card: rgba(10, 15, 18, 0.94);
  --accent: rgb(31, 146, 158);
  --accent-light: #37d6e8;
  --text: #ffffff;
  --muted: #b8c4c7;
  --danger: #ff2020;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


.help-section {
  width: min(100%, 68rem);
  margin: 0 auto;
}

.help-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 4.5rem);
  background: var(--card);
  border: 1px solid rgba(55, 214, 232, 0.28);
  border-radius: 28px;
  box-shadow: var(--shadow);
  animation: cardEnter 0.8s ease both;
}

.help-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg, transparent, rgba(55, 214, 232, 0.16), transparent, rgba(255, 32, 32, 0.12), transparent);
  animation: rotateGlow 12s linear infinite;
}

.help-card > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-light);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.help-intro h1 {
  color: var(--danger);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-style: italic;
  line-height: 0.95;
  text-shadow: 0 10px 30px rgba(255, 32, 32, 0.22);
  animation: slideUp 0.8s ease 0.15s both;
}

.help-intro p {
  max-width: 28rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
  animation: slideUp 0.8s ease 0.25s both;
}

.help-form {
  display: grid;
  gap: 1.1rem;
  animation: slideUp 0.8s ease 0.35s both;
}

.field {
  display: grid;
  gap: 0.45rem;
}

label {
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 2px solid rgba(55, 214, 232, 0.55);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  color: #071013;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

textarea {
  resize: vertical;
  min-height: 7rem;
}

input:focus,
textarea:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 4px rgba(55, 214, 232, 0.16);
  transform: translateY(-2px);
}

.button {
  justify-self: end;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #031012;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.9rem 1.5rem;
  box-shadow: 0 12px 28px rgba(31, 146, 158, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(31, 146, 158, 0.45);
}

.button:active {
  transform: translateY(0);
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .help-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 1.5rem;
  }

  .button {
    width: 100%;
    justify-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
