body {
  margin: 0;
  background: #0d0d0d;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #1a1a1a;
  border-bottom: 2px solid #a855f7;
}

.header-logo {
  height: 60px;
  width: auto;
}

.header-title {
  font-size: 26px;
  font-weight: bold;
  color: #a855f7;
  text-align: center;
}

/* SUBTITLE */
.subtitle {
  text-align: center;
  margin-top: 10px;
  color: #ccc;
}

/* DONATION BLOCK */
.donation-block {
  background: #111;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  border: 1px solid #a855f7;
  text-align: center;
}

.donate-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  background: #a855f7;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

/* SEARCH BAR */
.search-container {
  text-align: center;
  margin: 20px;
}

.search-bar {
  width: 90%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #a855f7;
  background: #1a1a1a;
  color: #fff;
}

/* CATEGORY GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
}

.category-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #a855f7;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* FOOTER */
.footer-nav {
  background: #1a1a1a;
  padding: 15px;
  text-align: center;
  border-top: 2px solid #a855f7;
}

.footer-link {
  color: #a855f7;
  margin: 0 10px;
  text-decoration: none;
}
/* Ensure header spacing is perfect */
.header {
  height: 110px;
}

/* Center the title vertically */
.header-title {
  line-height: 110px;
  margin: 0;
}
/* Bigger corner boxes */
.header-left, .header-right {
  width: 120px;
  height: 120px;
  background: #111;
  border: 3px solid #a855f7;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bigger logos inside the boxes */
.header-logo {
  width: 105px;
  height: auto;
}
/* Bigger corner boxes */
.header-left, .header-right {
  width: 120px;
  height: 120px;
  background: #111;
  border: 3px solid #a855f7;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bigger logos inside the boxes */
.header-logo {
  width: 105px;
  height: auto;
}
/* Strong glowing pulse for search bar */
@keyframes pulseGlow {
  0%   { box-shadow: 0 0 10px #a855f7; }
  50%  { box-shadow: 0 0 26px #a855f7; }
  100% { box-shadow: 0 0 10px #a855f7; }
}

.search-bar {
  animation: pulseGlow 2.2s infinite ease-in-out;
  border: 2px solid #a855f7;
  background: #1a1a1a;
  color: #fff;
}
/* Subtitle font upgrade (Option A) */
.subtitle {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #d1c8e8;
  text-align: center;
  margin-top: 10px;
}
<a href="https://www.paypal.com/donate/?hosted_button_id=U5Y923FVNEFRC" 
   class="donate-btn">
   Support Our Mission
</a>

/* --- FINAL REALITY CHECK SEARCH BAR PULSE --- */
@keyframes rcPulseFinal {
  0% {
    box-shadow: 0 0 14px #a855f7, 0 0 28px #a855f7;
  }
  50% {
    box-shadow: 0 0 34px #a855f7, 0 0 58px #a855f7;
  }
  100% {
    box-shadow: 0 0 14px #a855f7, 0 0 28px #a855f7;
  }
}

.search-bar {
  animation: rcPulseFinal 2.4s infinite ease-in-out !important;
  border: 2px solid #a855f7 !important;
  background: #1a1a1a !important;
  color: #fff !important;
  padding: 14px !important;
  border-radius: 10px !important;
}
/* REALITY CHECK — FORCED PULSE + BRIGHT GLOW */
@keyframes rcPulseOverride {
  0% {
    box-shadow: 0 0 18px #a855f7, 0 0 32px #a855f7;
  }
  50% {
    box-shadow: 0 0 42px #a855f7, 0 0 72px #a855f7;
  }
  100% {
    box-shadow: 0 0 18px #a855f7, 0 0 32px #a855f7;
  }
}

.search-bar {
  animation: rcPulseOverride 2.2s infinite ease-in-out !important;
  border: 3px solid #a855f7 !important;
  background: #1a1a1a !important;
  color: #ffffff !important;
  padding: 14px !important;
  border-radius: 10px !important;
  outline: none !important;
}
.category-bar {
  padding: 1.5rem 1rem 0.5rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-btn {
  border: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #111827;
  color: #e5e7eb;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.category-btn.active {
  background: #22c55e;
  color: #020617;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.category-btn:hover {
  background: #1f2937;
}

.listing-grid {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.listing-card {
  background: #020617;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  border: 1px solid #111827;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.listing-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.listing-card p {
  font-size: 0.85rem;
  color: #d1d5db;
  margin-bottom: 0.15rem;
}

.listing-meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

.listing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
  border-color: #22c55e;
}

.listing-card.hidden {
  display: none;
}

/* 2‑column grid on larger screens */
@media (min-width: 640px) {
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
