/* === HELP CENTER PAGE STYLING === */

body.page-template-page-help {
  background-color: #0f172a;
}

/* Hero Section */
.help-hero {
  padding: 80px 20px 40px;
  text-align: center;
  color: white;
  background-color: #0f172a;
}

.help-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 10px;
}

.help-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
}

/* Action Buttons Row */
.help-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.help-button {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 28px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.help-button:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px #3b82f6, 0 0 20px rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

/* Wrapper for Grid & Search */
.help-wrapper {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Title + Search Side-by-Side */
.help-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  color: white;
  margin: 0;
}

/* Inline Search Bar */
.help-inline-search {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  width: 100%;
  max-width: 300px;
  background-color: #1e2633;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.help-inline-search:hover,
.help-inline-search:focus {
  outline: none;
  box-shadow: 0 0 10px #3b82f6, 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Subtitle under grid header */
.section-subtitle {
  color: #bbb;
  margin-bottom: 30px;
}

/* Grid Layout */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Game Cards */
.help-card {
  background: #1b1f2c;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.help-card:hover {
  background: #252c3a;
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 0 12px #3b82f6;
}

.help-game {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.help-count {
  margin: 0;
  color: #aaa;
  font-size: 14px;
}

.help-empty {
  color: #ccc;
  text-align: center;
  padding: 40px 0;
}

/* Bottom Discord CTA Bar */
.help-discord-strip {
  background: #3182f6;
  padding: 12px 20px;
  color: white;
  margin-top: 60px;
}

.help-discord-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.help-discord-content p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.discord-button {
  background: white;
  color: #3182f6;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.discord-button:hover {
  background: #f0f4ff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.help-hero {
  background-color: #0f172a;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.help-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.help-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.help-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.help-button {
  background-color: #1d4ed8;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.help-button:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

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

.help-grid-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.help-inline-search {
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 240px;
}

.section-title {
  font-size: 1.8rem;
  color: white;
}

.section-subtitle {
  color: #ccc;
  margin-top: 10px;
  margin-bottom: 30px;
}

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

.help-card {
  background-color: #1e293b;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.help-card:hover {
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  transform: scale(1.03);
}

.help-game {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.help-count {
  font-size: 0.9rem;
  color: #94a3b8;
}

.help-empty {
  text-align: center;
  color: #ccc;
}

.help-discord-strip {
  background-color: #3b82f6;
  padding: 20px;
  color: white;
  margin-top: 60px;
}

.help-discord-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

.discord-button {
  background-color: white;
  color: #2563eb;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.discord-button:hover {
  background-color: #e0e7ff;
}
