/* ─── Community + Support Sections ─── */
.community {
  border-top: 1px solid var(--phosphor-dark, #0a3d0a);
  border-bottom: 1px solid var(--phosphor-dark, #0a3d0a);
  background: var(--screen-bg, #0a0a0a);
  padding: 2rem 1rem;
  margin-top: 2rem;
}
.community-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.community-header {
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--phosphor-dim, #1a6e1a);
  margin-bottom: 0.5rem;
}
.community h3 {
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-size: 1.5rem;
  color: var(--phosphor, #00ff41);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(0,255,65,0.3);
}
.community-desc {
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-size: 0.95rem;
  color: var(--white-dim, #999);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.community-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.community-form .form-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 520px;
}
.community-form input[type="text"],
.community-form input[type="email"] {
  font-family: monospace;
  font-size: 0.85rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--phosphor-dark, #0a3d0a);
  border-radius: 0;
  background: var(--screen-bg, #0a0a0a);
  color: var(--phosphor, #00ff41);
  outline: none;
  transition: border-color 0.2s;
}
.community-form input[type="text"] {
  flex: 0 0 130px;
  min-width: 0;
}
.community-form input[type="email"] {
  flex: 1;
  min-width: 180px;
}
.community-form input:focus {
  border-color: var(--phosphor, #00ff41);
  box-shadow: 0 0 4px rgba(0,255,65,0.2);
}
.community-form input::placeholder {
  color: var(--phosphor-dark, #0a3d0a);
}
.btn-join {
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--phosphor, #00ff41);
  border: 1px solid var(--phosphor, #00ff41);
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-join:hover {
  background: var(--phosphor, #00ff41);
  color: var(--screen-bg, #0a0a0a);
  box-shadow: 0 0 12px rgba(0,255,65,0.4);
}
.form-note {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--phosphor-dark, #0a3d0a);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}
.community-success {
  display: none;
  padding: 1.5rem 0;
}
.community-success .success-icon {
  color: var(--phosphor, #00ff41);
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0,255,65,0.5);
  margin-bottom: 0.25rem;
}
.community-success h4 {
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-size: 1.2rem;
  color: var(--phosphor, #00ff41);
  margin-bottom: 0.25rem;
}
.community-success p {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--phosphor-dim, #1a6e1a);
}
/* ─── Support Section ─── */
.support-section {
  border-top: 1px solid var(--phosphor-dark, #0a3d0a);
  background: var(--screen-bg, #0a0a0a);
  padding: 2rem 1rem;
}
.support-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.support-header {
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--phosphor-dim, #1a6e1a);
  margin-bottom: 0.5rem;
}
.support-inner h3 {
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-size: 1.5rem;
  color: var(--amber, #ffb000);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(255,176,0,0.3);
}
.support-desc {
  font-family: 'EB Garamond', Garamond, Georgia, serif;
  font-size: 0.95rem;
  color: var(--white-dim, #999);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
  text-align: left;
}
.tier-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,255,65,0.08);
}
.tier-list li:last-child {
  border-bottom: none;
}
.tier-amount {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber, #ffb000);
  min-width: 4.5rem;
  text-align: right;
}
.tier-list a {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--phosphor, #00ff41);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s, text-shadow 0.2s;
}
.tier-list a:hover {
  color: var(--amber, #ffb000);
  text-shadow: 0 0 6px rgba(255,176,0,0.3);
}
.support-note {
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--phosphor-dark, #0a3d0a);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}
/* ─── Responsive ─── */
@media (max-width: 600px) {
  .community-form .form-row {
    flex-direction: column;
    align-items: stretch;
  }
  .community-form input[type="text"] {
    flex: 1 1 auto;
  }
  .btn-join {
    width: 100%;
  }
}
