:root {
  --bg: #f7fbf5;
  --paper: #ffffff;
  --ink: #1d2d29;
  --muted: #61716c;
  --green: #116a44;
  --green-dark: #0b4c36;
  --blue: #1d5f86;
  --gold: #e9b85d;
  --soft: #eef7e8;
  --line: rgba(17, 106, 68, 0.18);
  --shadow: 0 22px 56px rgba(23, 73, 52, 0.13);
  --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(135deg, rgba(233, 184, 93, 0.15), transparent 32%),
    linear-gradient(225deg, rgba(29, 95, 134, 0.11), transparent 36%),
    var(--bg);
}
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.6vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.55vw, 2.45rem);
  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; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 251, 245, 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(--green-dark), var(--green));
  font-size: 0.82rem;
}
.brand strong { color: var(--green-dark); font-size: 1.08rem; }
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #465953;
  font-size: 0.92rem;
  font-weight: 850;
}
.top-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;
  text-align: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 14px 30px rgba(17, 106, 68, 0.23);
}
.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(--green-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 38px; }
.hero-grid,
.split {
  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(0, 1fr) minmax(350px, 0.78fr); }
.split.reverse { grid-template-columns: minmax(350px, 0.78fr) minmax(0, 1fr); }
.eyebrow,
.section-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-box {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}
.hero-image,
.image-panel { overflow: hidden; border-width: 8px; border-color: #fff; }
.hero-image img,
.image-panel img { aspect-ratio: 16 / 10; object-fit: cover; }
.toc-section {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}
.toc-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.toc-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.toc-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--green-dark);
  font-weight: 900;
  background: #fff;
}
.section { padding: 70px 0; }
.article { max-width: 930px; }
.membership {
  background: linear-gradient(135deg, rgba(17, 106, 68, 0.08), rgba(255, 255, 255, 0.7));
}
.promo,
.games {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}
.license {
  background: linear-gradient(135deg, rgba(233, 184, 93, 0.13), rgba(255, 255, 255, 0.74));
}
.note-box {
  padding: 24px;
}
.note-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.18rem;
}
.faq-wrap { max-width: 900px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 73, 52, 0.08);
}
.faq details + details { margin-top: 12px; }
.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}
.faq details p { padding: 0 20px 20px; }
.footer {
  padding: 32px 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(--green-dark); }
@media (max-width: 1020px) {
  .nav,
  .site-header .top-cta { display: none; }
  .mobile-cta {
    position: sticky;
    top: 72px;
    z-index: 45;
    display: block;
  }
  .hero-grid,
  .split,
  .split.reverse,
  .toc-layout {
    grid-template-columns: 1fr;
  }
  .toc-list { grid-template-columns: repeat(2, minmax(0, 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.7rem, 6.8vw, 2.05rem); }
  h2 { font-size: clamp(1.45rem, 5.8vw, 1.9rem); }
  .hero { padding: 40px 0 30px; }
  .hero-actions,
  .hero-actions a { width: 100%; }
  .toc-list { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
  .hero-image,
  .image-panel { border-width: 6px; }
  .footer-inner { display: block; }
}
