:root {
  --bg: #f4fbef;
  --bg-soft: #edf8e4;
  --bg-deep: #dff1d1;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-green: rgba(242, 251, 236, 0.92);
  --text: #1d2c1a;
  --muted: #5f7358;
  --line: rgba(54, 92, 42, 0.12);
  --line-strong: rgba(54, 92, 42, 0.18);
  --green: #79bf63;
  --green-dark: #4f9340;
  --green-soft: #a4d98c;
  --leaf: #5da84f;
  --banana: #f6d451;
  --banana-deep: #e7bb21;
  --earth: #d7bea1;
  --shadow: 0 24px 60px rgba(68, 110, 60, 0.12);
  --shadow-soft: 0 12px 28px rgba(68, 110, 60, 0.09);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-sans: "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(164, 217, 140, 0.52), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(246, 212, 81, 0.22), transparent 20%),
    linear-gradient(180deg, #f9fff4 0%, var(--bg) 22%, #f0f8e8 100%);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 20% 30%, rgba(121, 191, 99, 0.08) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 75% 60%, rgba(93, 168, 79, 0.08) 0 2px, transparent 2px 100%);
  background-size: auto, 120px 120px, 160px 160px;
  opacity: 0.7;
  z-index: -1;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  color: #376f2b;
}

p,
li {
  color: var(--muted);
}

h1,
h2,
h3,
dt,
summary,
strong {
  color: var(--text);
}

h1,
h2,
h3,
p,
ul,
ol,
dl {
  margin-top: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(244, 251, 239, 0.78);
  border-bottom: 1px solid rgba(79, 147, 64, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand,
.footer-brand {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand {
  font-size: 1.18rem;
  color: var(--text);
}

.site-nav,
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.footer-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.hero-section,
.play-section,
.highlights-section,
.content-section,
.faq-section {
  padding: 78px 0;
}

.hero-grid,
.content-grid,
.footer-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.play-section {
  padding-top: 42px;
}

.play-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.play-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
  max-width: 760px;
}

.play-hero-meta,
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.play-hero-meta div,
.hero-metrics div {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(121, 191, 99, 0.18);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(121, 191, 99, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.hero-copy {
  padding: 12px 0;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 5.4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
  max-width: 720px;
}

.lead {
  font-size: 1.1rem;
  max-width: 760px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #88ca72 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(79, 147, 64, 0.24);
}

.button-primary:hover {
  color: #fff;
  background: linear-gradient(180deg, #78bb64 0%, #447f37 100%);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(121, 191, 99, 0.18);
}

.feature-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin-bottom: 26px;
  list-style: none;
}

.feature-points li {
  position: relative;
  padding-left: 24px;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--banana), var(--green));
  box-shadow: 0 0 0 4px rgba(246, 212, 81, 0.18);
}

.hero-metrics {
  max-width: 620px;
}

.play-hero-meta strong,
.hero-metrics strong,
.play-note strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.play-hero-meta span,
.hero-metrics span,
.play-note span,
.highlight-card p {
  color: var(--muted);
}

.hero-card,
.article-card,
.sidebar-card,
.game-shell,
.faq-item,
.highlight-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-card,
.article-card,
.sidebar-card,
.faq-item,
.highlight-card {
  border-radius: var(--radius-lg);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 250, 233, 0.96) 100%);
}

.scene-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(121, 191, 99, 0.24);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
}

.orchard-scene {
  position: relative;
  height: 260px;
  margin: 18px 0 22px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 242, 186, 0.75), transparent 22%),
    linear-gradient(180deg, #dff6d7 0%, #edf8e6 46%, #d3eebd 46%, #b6dd91 100%);
}

.scene-sun,
.scene-cloud,
.scene-ground,
.scene-tree,
.scene-stall,
.scene-awning,
.scene-crate,
.scene-banana {
  position: absolute;
  display: block;
}

.scene-sun {
  top: 20px;
  right: 34px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe99b 0%, var(--banana) 62%, #efc73a 100%);
  box-shadow: 0 0 0 12px rgba(246, 212, 81, 0.12);
}

.scene-cloud {
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.scene-cloud::before,
.scene-cloud::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.scene-cloud::before {
  width: 28px;
  height: 28px;
  top: -10px;
  left: 8px;
}

.scene-cloud::after {
  width: 36px;
  height: 36px;
  top: -16px;
  right: 8px;
}

.scene-cloud-one {
  top: 44px;
  left: 28px;
  width: 84px;
}

.scene-cloud-two {
  top: 76px;
  left: 128px;
  width: 96px;
}

.scene-ground {
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(144, 195, 98, 0.18), rgba(144, 195, 98, 0.18)),
    linear-gradient(180deg, #b8df94 0%, #8dc36b 100%);
}

.scene-tree {
  bottom: 70px;
  width: 74px;
  height: 110px;
}

.scene-tree::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 14px;
  height: 52px;
  border-radius: 12px;
  background: #92714d;
}

.scene-tree::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #9ed87f 0%, #7cc260 40%, #4f9340 100%);
  box-shadow:
    16px 8px 0 0 #68b254,
    -12px 12px 0 0 #7ec965;
}

.scene-tree-one {
  left: 28px;
}

.scene-tree-two {
  right: 46px;
  transform: scale(0.92);
}

.scene-stall {
  left: 50%;
  bottom: 56px;
  width: 122px;
  height: 78px;
  transform: translateX(-50%);
  border-radius: 12px 12px 18px 18px;
  background: linear-gradient(180deg, #b8865f 0%, #9a704d 100%);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.06);
}

.scene-stall::before,
.scene-stall::after {
  content: "";
  position: absolute;
  bottom: -24px;
  width: 10px;
  height: 30px;
  background: #835d3d;
  border-radius: 10px;
}

.scene-stall::before {
  left: 18px;
}

.scene-stall::after {
  right: 18px;
}

.scene-awning {
  left: 50%;
  bottom: 124px;
  width: 144px;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 16px 16px 8px 8px;
  background:
    repeating-linear-gradient(
      90deg,
      #ffffff 0 18px,
      #9fd786 18px 36px
    );
  box-shadow: 0 8px 20px rgba(79, 147, 64, 0.14);
}

.scene-crate {
  left: 50%;
  bottom: 64px;
  width: 90px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 40%, #f6d451 0 7px, transparent 8px),
    radial-gradient(circle at 42% 46%, #8bd06a 0 7px, transparent 8px),
    radial-gradient(circle at 67% 44%, #ffb86b 0 7px, transparent 8px),
    linear-gradient(180deg, #c99562 0%, #a97548 100%);
}

.scene-banana {
  width: 30px;
  height: 14px;
  border: 4px solid var(--banana);
  border-top: 0;
  border-left-color: transparent;
  border-radius: 0 0 22px 22px;
}

.banana-one {
  right: 92px;
  bottom: 100px;
  transform: rotate(20deg);
}

.banana-two {
  right: 120px;
  bottom: 112px;
  transform: rotate(-8deg);
}

.snapshot-shell {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(121, 191, 99, 0.16);
}

.hero-card h2,
.sidebar-card h2 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.snapshot-list,
.sidebar-list {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
  padding: 0;
}

.snapshot-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.snapshot-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.snapshot-list dt {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.snapshot-list dd {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.section-link {
  margin: 22px 0 0;
  text-align: center;
}

.game-shell {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 248, 233, 0.92) 100%);
}

.game-frame-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(238, 248, 229, 0.9);
  border-bottom: 1px solid var(--line);
}

.game-frame-toolbar span {
  color: var(--muted);
  font-size: 0.95rem;
}

.game-frame-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  background:
    radial-gradient(circle at top, rgba(255, 239, 179, 0.46), transparent 24%),
    linear-gradient(135deg, #ecf8e3 0%, #f8fcf2 100%);
}

.game-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.play-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.play-note {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(121, 191, 99, 0.16);
  box-shadow: var(--shadow-soft);
}

.highlights-section {
  position: relative;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 250, 235, 0.92) 100%);
}

.highlight-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #97d67f 0%, #6fb05a 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.content-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
}

.article-card {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 251, 240, 0.9) 100%);
}

.inline-cta {
  display: grid;
  gap: 12px;
}

.copy-block + .copy-block {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.copy-block h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.steps-list,
.tips-list,
.sidebar-list {
  padding-left: 20px;
}

.steps-list li,
.tips-list li,
.sidebar-list li {
  margin-bottom: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(121, 191, 99, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.sidebar {
  display: grid;
  gap: 20px;
}

.sidebar-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 250, 234, 0.88) 100%);
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 22px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 249, 232, 0.92) 100%);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
}

.site-footer {
  padding: 28px 0 56px;
}

.footer-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.footer-copy {
  max-width: 620px;
  margin-bottom: 0;
}

.footer-nav {
  justify-content: flex-end;
}

.legal-page {
  padding: 72px 0;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.legal-card h2 {
  font-size: 1.45rem;
  margin: 28px 0 14px;
  letter-spacing: -0.03em;
}

.legal-card ul {
  padding-left: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.guide-shell {
  display: grid;
  gap: 34px;
}

.guide-hero,
.guide-article,
.guide-faq {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.76fr);
  gap: 24px;
  align-items: start;
}

.guide-sidebar {
  display: grid;
  gap: 20px;
}

@media (max-width: 1024px) {
  .play-hero,
  .hero-metrics,
  .play-notes,
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .play-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .play-hero,
  .hero-grid,
  .guide-layout,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .game-frame-wrapper {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .hero-section,
  .play-section,
  .highlights-section,
  .content-section,
  .faq-section,
  .legal-page {
    padding: 56px 0;
  }

  .nav-shell {
    min-height: 64px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .site-nav {
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .play-hero-copy h1 {
    font-size: 2.55rem;
  }

  .play-hero-meta,
  .hero-metrics,
  .play-notes,
  .highlights-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .article-card,
  .hero-card,
  .sidebar-card,
  .guide-hero,
  .guide-article,
  .guide-faq,
  .legal-card,
  .highlight-card,
  .play-note {
    padding: 24px;
  }

  .orchard-scene {
    height: 220px;
  }

  .scene-tree-two {
    right: 18px;
  }

  .game-frame-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .game-frame-wrapper {
    aspect-ratio: auto;
    min-height: 280px;
  }
}
