:root {
  --bg: #000000;
  --text: #efc318;
  --accent: #ff0000;
  --border: #efc318;
  --white: #ffffff;
  --content-width: 1200px;
  --font-main: 'Times New Roman', Times, serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
}
a { color: var(--text); }
.page-shell { min-height: 100vh; }
.top-nav {
  text-align: center;
  padding: 14px 10px 6px;
}
.top-nav a { text-decoration: none; }
.nav-button {
  font-family: var(--font-main);
  font-weight: 900;
  background-color: var(--accent);
  color: var(--text);
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid var(--border);
  padding: 8px 14px;
  margin: 4px;
  cursor: pointer;
}
.site-header {
  text-align: center;
  padding: 10px 16px 6px;
}
.site-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}
.site-title img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.reg {
  font-size: 0.6em;
  line-height: 0;
  position: relative;
  top: -0.5em;
}
.page-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px 40px;
}
.text-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.text-content p,
.page-wrap p {
  font-size: 18px;
  line-height: 1.6;
}
.section-title {
  text-align: center;
  font-size: 38px;
  margin: 18px 0 8px;
}
.section-subtitle {
  text-align: center;
  font-size: 20px;
  margin: 0 0 28px;
}
.cta-wrap {
  text-align: center;
  margin: 20px 0 28px;
}
.cta-button {
  font-family: var(--font-main);
  background-color: var(--accent);
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  border-radius: 5px;
  border: 1px solid var(--border);
  padding: 10px 20px;
  cursor: pointer;
}
.carousel-shell {
  max-width: 420px;
  margin: 0 auto 24px;
  border-radius: 8px;
  overflow: hidden;
}
.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.donation-note {
  text-align: center;
  font-size: 20px;
  margin: 0 0 10px;
}
.paypal-wrap {
  text-align: center;
  margin-bottom: 24px;
}
.paypal-wrap img {
  max-width: 100%;
  height: auto;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.staff-card {
  background: linear-gradient(180deg, #111111 0%, #1b1b1b 100%);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 0 14px rgba(239, 195, 24, 0.18);
  text-align: center;
}
.staff-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 10px;
  background: #d9d9d9;
  margin-bottom: 16px;
}
.staff-meta {
  font-size: 18px;
  line-height: 1.6;
}
.label {
  font-weight: bold;
  color: var(--white);
}
.donor-intro {
  text-align: center;
  font-size: 18px;
  margin: 14px 0 20px;
}
.donor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px 0 0;
}
.donor-grid img {
  height: 100px;
  border-radius: 10px;
  max-width: 100%;
}
.footer-link {
  text-align: center;
  margin: 28px 0 16px;
}
@media (max-width: 640px) {
  .site-title { font-size: 24px; }
  .site-title img { width: 72px; height: 72px; }
  .section-title { font-size: 30px; }
  .text-content p,
  .page-wrap p,
  .staff-meta { font-size: 17px; }
  .donation-note { font-size: 18px; }
}