

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #e3e4e6;
  background: #1e1f22;
  line-height: 1.6;
}

a { color: #b6bac2; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }

.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

.nav {
  background: #27282b;
  color: #fff;
}
.navInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { color: #fff; font-size: 1.25rem; font-weight: bold; }
.brand:hover { text-decoration: none; }
.navLinks a {
  color: #c8cace;
  margin-left: 18px;
  font-size: 0.95rem;
}
.navLinks a:hover { color: #fff; text-decoration: none; }

.navToggle { display: none; }
.navBurger { display: none; }
.navBurger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #c8cace;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hero {
  background: #2c2d30;
  color: #fff;
  text-align: center;
  padding: 70px 0;
}
.heroEyebrow { color: #aeb2ba; font-size: 0.9rem; margin-bottom: 10px; }
.hero h1 { font-size: 2.4rem; margin-bottom: 16px; }
.heroSub { max-width: 600px; margin: 0 auto 26px; color: #c8cace; }
.heroActions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  background: #565a63;
  color: #fff;
  padding: 11px 22px;
  border-radius: 4px;
  font-weight: bold;
}
.btn:hover { background: #676b75; text-decoration: none; }
.btnOutline {
  background: transparent;
  border: 1px solid #7d818a;
  color: #fff;
}
.btnOutline:hover { background: rgba(255, 255, 255, 0.1); }
.btnDiscord {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #5865f2;
}
.btnDiscord:hover { background: #4752c4; }
.discordIcon { width: 22px; height: 22px; }

.section { padding: 56px 0; }
.sectionAlt { background: #27282b; }
.section h2 { font-size: 1.8rem; margin-bottom: 22px; }
.section p { margin-bottom: 16px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #2c2d30;
  border: 1px solid #3a3b3f;
  border-radius: 6px;
  padding: 22px;
}
.card h3 { margin-bottom: 10px; }

.meetList { list-style: none; }
.meetList li {
  padding: 8px 0;
  border-bottom: 1px solid #3a3b3f;
}

.officers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.officer {
  text-align: center;
  background: #2c2d30;
  border: 1px solid #54565d;
  border-radius: 10px;
  padding: 16px 20px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.officer img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #54565d;
}
.officerCenter { max-width: 225px; margin: 0 auto; }
.officer h3 { font-size: 1.2rem; }
.officerRole { color: #b6bac2; font-weight: bold; font-size: 0.9rem; }

.headingCenter {
  text-align: center;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.headingCenter::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #7d818a;
  border-radius: 2px;
  margin: 12px auto 0;
}
.officersHeading { margin-top: 56px; }

.faqItem {
  padding: 16px 0;
  border-bottom: 1px solid #3a3b3f;
}
.faqItem h3 { margin-bottom: 6px; font-size: 1.05rem; }

.footer {
  background: #27282b;
  color: #9a9ca2;
  text-align: center;
  padding: 28px 0;
  font-size: 0.9rem;
  border-top: 1px solid #3a3b3f;
}
.footer p { margin: 4px 0; }

@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
  .officers { grid-template-columns: repeat(2, 1fr); }
  .officerCenter { max-width: calc((100% - 20px) / 2); }

  .navInner { justify-content: space-between; align-items: center; gap: 8px; padding-top: 26px; padding-bottom: 26px; }
  .navInner::before { content: ""; flex: 0 0 38px; }
  .brand { flex: 1; text-align: center; font-size: 1.25rem; }
  .navBurger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    cursor: pointer;
  }
  .navLinks {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    margin-top: 6px;
  }
  .navToggle:checked ~ .navLinks { display: flex; }
  .navLinks a {
    margin-left: 0;
    padding: 12px 10px;
    text-align: center;
    border-radius: 6px;
    font-size: 1rem;
  }
  .navLinks a:hover { background: #34353a; color: #fff; text-decoration: none; }
  .navToggle:checked ~ .navBurger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .navToggle:checked ~ .navBurger span:nth-child(2) { opacity: 0; }
  .navToggle:checked ~ .navBurger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero { padding: 48px 0; }
  .hero h1 { font-size: 1.9rem; }
  .heroSub { font-size: 1rem; }
  .section { padding: 40px 0; }
  .section h2 { font-size: 1.55rem; }

  .heroActions { flex-direction: column; gap: 12px; }
  .heroActions .btn { width: 100%; padding: 14px 22px; font-size: 1.05rem; }
  .btnDiscord { justify-content: center; }
}
@media (max-width: 480px) {
  .officers { grid-template-columns: 1fr; }
  .officerCenter { max-width: 100%; }
  .container { padding: 0 16px; }
  .hero { padding: 40px 0; }
  .hero h1 { font-size: 1.65rem; }
  .heroSub { font-size: 0.95rem; }
  .section { padding: 34px 0; }
  .section h2 { font-size: 1.4rem; }
  .card { padding: 18px; }
  .officer img { width: 175px; height: 175px; }
  .officer h3 { font-size: 1.35rem; }
  .officerRole { font-size: 1rem; }
}
