* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #FDFBF7;
  color: #1F3335;
}
.club-nav {
  background-color: #FDFBF7;
  border-bottom: 3px solid #1F3335;
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-decoration: none;
  color: #1F3335;
}
.nav-links a {
  text-decoration: none;
  font-weight: 800;
  color: #1F3335;
  margin-left: 24px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.club-hero {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 16px 0;
}
.badge {
  background-color: #94D6DA;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 4px;
}
.actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.btn {
  padding: 12px 24px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-block;
}
.btn-primary {
  background-color: #E6654A;
  color: #FDFBF7;
  border: 2px solid #1F3335;
  box-shadow: 4px 4px 0px 0px #1F3335;
}
.btn-secondary {
  background-color: #94D6DA;
  color: #1F3335;
  border: 2px solid #1F3335;
  box-shadow: 4px 4px 0px 0px #1F3335;
}
.scoreboard-card {
  border: 3px solid #1F3335;
  box-shadow: 8px 8px 0px 0px #1F3335;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}
.scoreboard-header {
  background-color: #1F3335;
  color: #FDFBF7;
  text-align: center;
  font-weight: 800;
  padding: 8px;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.scoreboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: #1F3335;
}
.score-box {
  background-color: #FFFFFF;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.score-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #1F3335;
  opacity: 0.6;
}
.score-value {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-top: 4px;
}
.text-orange { color: #E6654A; }
.text-teal { color: #45696B; }

.club-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.mission-section {
  border-top: 3px solid #1F3335;
  padding: 60px 0;
}
.mission-section h2 {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 900;
}
.tracks-section h2 {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 24px;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.bento-item {
  border: 3px solid #1F3335;
  box-shadow: 6px 6px 0px 0px #1F3335;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
}
.bento-num {
  font-family: "Fraunces", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #45696B;
}
.bento-item h3 {
  font-family: "Fraunces", serif;
  margin: 12px 0 8px;
}
.join-section {
  border-top: 3px solid #1F3335;
  padding: 60px 0;
}
.join-section h2 {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 30px;
}
.membership-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.membership-card-ui {
  background-color: #45696B;
  border: 3px solid #1F3335;
  box-shadow: 8px 8px 0px 0px #1F3335;
  border-radius: 16px;
  padding: 24px;
  color: #FDFBF7;
  min-height: 200px;
  display: flex;
}
.card-inner {
  border: 1px dashed rgba(253, 251, 247, 0.4);
  border-radius: 8px;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-brand {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.card-title {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 16px 0;
  color: #94D6DA;
}
.card-status {
  font-size: 0.8rem;
  font-weight: 600;
}
.card-code {
  font-size: 0.7rem;
  opacity: 0.8;
}
.membership-form {
  border: 3px solid #1F3335;
  padding: 32px;
  border-radius: 12px;
  background-color: #FFFFFF;
}
.membership-form h3 {
  margin-top: 0;
}
.tier-buttons {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}
.tier-btn {
  background-color: #FDFBF7;
  border: 2px solid #1F3335;
  padding: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  flex: 1;
}
.tier-btn.active {
  background-color: #45696B;
  color: #FDFBF7;
}
.tier-desc {
  font-size: 0.85rem;
  margin-bottom: 24px;
  min-height: 40px;
}
footer {
  background-color: #1F3335;
  color: #FDFBF7;
  text-align: center;
  padding: 32px 24px;
  margin-top: 80px;
}
@media (max-width: 900px) {
  .club-hero, .membership-layout { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
}
