/* Help Wanted Page Styles - ZamRock Radio */

.help-wanted-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.help-wanted-container h2 {
  font-family: 'Press Start 2P', cursive;
  color: #0f0;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2em;
}

.intro-text {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
  font-size: 0.9em;
  line-height: 1.6;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.help-card {
  background: rgb(10 10 10 / 55%);
  backdrop-filter: blur(12px);
  border: 2px solid #333;
  border-radius: 8px;
  padding: 20px 20px 15px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.help-card:hover {
  border-color: #0f0;
  transform: translateY(-5px);
}

.help-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.help-card h3 {
  font-family: 'Press Start 2P', cursive;
  color: #0f0;
  margin-bottom: 15px;
  font-size: 0.9em;
}

.help-desc {
  color: #aaa;
  font-size: 0.8em;
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.help-pros {
  list-style: none;
  padding: 0;
  margin: 12px 0 15px;
  text-align: left;
  flex-grow: 1;
}

.help-pros li {
  color: #ccc;
  font-size: 0.75em;
  padding: 8px 0;
  border-bottom: 1px solid #333;
}

.help-pros li:last-child {
  border-bottom: none;
}

.help-btn {
  display: inline-block;
  width: 80%;
  margin: auto auto 0;
  background: #090;
  color: #000;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.65em;
  padding: 12px 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
  text-align: center;
  margin-top: auto;
}

.help-btn:hover {
  background: #060;
}

/* Responsive */
@media (width <= 768px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}
