:root {
  --bg: #0d1117;
  --panel: #161b22;
  --panel-alt: #1f2630;
  --text: #e6edf3;
  --muted: #9da7b3;
  --brand: #2f81f7;
  --brand-strong: #1f6feb;
  --border: #30363d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(13, 17, 23, 0.95);
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
}

.top-nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.club-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--panel);
}

.club-logo.small {
  width: 28px;
  height: 28px;
}

.hero {
  padding: 5rem 0 4rem;
  background-position: center;
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.fb-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: rgba(22, 27, 34, 0.85);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
}

.btn {
  border: 1px solid transparent;
  background: var(--brand);
  color: white;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.18s ease;
}

.btn:hover {
  background: var(--brand-strong);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-small {
  padding: 0.45rem 0.8rem;
  font-size: 0.92rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem;
}

.quick-info {
  margin: 0;
  padding-left: 1.1rem;
}

.cards-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.updates-grid .card {
  background: var(--panel-alt);
}

.muted {
  color: var(--muted);
}

.text-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
