:root {
  --bg: #f4fbf2;
  --paper: #ffffff;
  --ink: #183129;
  --muted: #61736d;
  --green: #116a44;
  --dark: #0b4d36;
  --gold: #e3b85a;
  --mint: #dff4e7;
  --line: rgba(17, 106, 68, 0.18);
  --shadow: 0 22px 56px rgba(26, 81, 57, 0.14);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.72;
  background: linear-gradient(180deg, var(--bg), #ffffff 52%, #f6fbf8);
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-size: clamp(1.9rem, 2.7vw, 2.85rem); line-height: 1.1; letter-spacing: 0; }
h2 { margin-bottom: 16px; font-size: clamp(1.62rem, 2.5vw, 2.42rem); line-height: 1.12; letter-spacing: 0; }
p { color: var(--muted); font-size: 1.03rem; }
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 251, 242, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 950; }
.brand span { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; color: #fff; background: linear-gradient(135deg, var(--dark), var(--green)); font-size: 0.82rem; }
.brand strong { color: var(--dark); font-size: 1.08rem; }
.nav { display: flex; gap: 16px; color: #42564f; font-size: 0.92rem; font-weight: 850; }
.cta, .primary, .mobile-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 0 20px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--dark), var(--green));
  box-shadow: 0 14px 30px rgba(17, 106, 68, 0.24);
}
.secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0 20px;
  color: var(--dark);
  font-weight: 950;
  background: #fff;
}
.mobile-cta { display: none; padding: 12px 18px; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-cta a { width: 100%; }
.hero { padding: 62px 0 34px; background: linear-gradient(135deg, rgba(227, 184, 90, 0.14), rgba(223, 244, 231, 0.7)); }
.hero-grid, .split, .two-col { display: grid; gap: 44px; align-items: center; }
.hero-grid { grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.86fr); }
.split { grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr); }
.split.reverse, .two-col { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr); }
.eyebrow, .label { margin-bottom: 12px; color: var(--green); font-size: 0.8rem; font-weight: 950; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-image, .image-panel, .note {
  margin: 0;
  border: 8px solid #fff;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-image img, .image-panel img { aspect-ratio: 16 / 10; object-fit: cover; }
.section { padding: 66px 0; }
.membership { background: rgba(255, 255, 255, 0.68); }
.sports { border-block: 1px solid var(--line); background: #fff; }
.article { max-width: 930px; }
.games { background: linear-gradient(135deg, rgba(17, 106, 68, 0.08), rgba(255, 255, 255, 0.8)); }
.mobile { border-top: 1px solid var(--line); background: rgba(244, 251, 242, 0.72); }
.note { padding: 24px; border-width: 1px; }
.note strong { display: block; color: var(--dark); font-size: 1.16rem; margin-bottom: 10px; }
.footer { padding: 30px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
.footer strong { color: var(--dark); }
@media (max-width: 980px) {
  .nav, .header .cta { display: none; }
  .mobile-cta { position: sticky; top: 72px; z-index: 45; display: block; }
  .hero-grid, .split, .split.reverse, .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 66px; }
  .mobile-cta { top: 66px; }
  h1 { font-size: clamp(1.68rem, 6.8vw, 2.05rem); }
  h2 { font-size: clamp(1.42rem, 5.8vw, 1.88rem); }
  .hero { padding: 40px 0 28px; }
  .hero-actions, .hero-actions a { width: 100%; }
  .section { padding: 52px 0; }
  .hero-image, .image-panel { border-width: 6px; }
  .footer-inner { display: block; }
}
