:root {
  --petal: #ffd14c;
  --petal-deep: #f5b81f;
  --center: #7a4a1c;
  --leaf: #4c9a5a;
  --leaf-deep: #2f7a45;
  --ink: #26313a;
  --ink-soft: #5b6b78;
  --sky-top: #bfe3ff;
  --sky-bottom: #eaf7ef;
  --card-bg: #ffffff;
  --shadow: 0 10px 30px rgba(38, 49, 58, 0.12);
  --radius: 20px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-bottom) 60%, #ffffff 100%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--leaf-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  padding: 22px 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
}
.brand .daisy { width: 34px; height: 34px; }
.site-header nav a {
  margin-left: 18px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink-soft);
}
.site-header nav a:hover { color: var(--leaf-deep); }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 40px 0 30px;
}
.hero .daisy-big { display: block; width: 96px; height: 96px; margin: 0 auto 14px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.1;
  margin: 6px 0 12px;
  letter-spacing: -0.5px;
}
.hero p.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 22px;
}
.hero .tagline {
  display: inline-block;
  margin-bottom: 18px;
  background: rgba(255, 209, 76, 0.25);
  color: var(--center);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

/* ---------- Garden intro ---------- */
.garden-note {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  margin: 20px auto 40px;
  max-width: 760px;
  text-align: center;
}
.garden-note h2 { margin-top: 0; font-size: 1.4rem; }
.garden-note p { color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Game grid ---------- */
.section-title { text-align: center; margin: 10px 0 24px; font-size: 1.6rem; }

.games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  padding-bottom: 20px;
}
.game-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(38, 49, 58, 0.18);
}
.game-card img.icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 6px 16px rgba(38, 49, 58, 0.2);
  margin-bottom: 14px;
}
.game-card h3 { margin: 4px 0 8px; font-size: 1.2rem; }
.game-card p { color: var(--ink-soft); font-size: 0.96rem; flex: 1; margin: 0 0 18px; }

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}
.appstore-btn:hover { background: #1a1a1a; color: #fff; }
.appstore-btn svg { width: 18px; height: 18px; fill: #fff; }
.badge-soon {
  display: inline-block;
  background: #eef2f5;
  color: var(--ink-soft);
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 40px;
  padding: 30px 0 40px;
  border-top: 1px solid rgba(38, 49, 58, 0.1);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.site-footer a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: var(--leaf-deep); }
.site-footer .links { margin-bottom: 10px; }
.site-footer .links a { margin: 0 10px; }

.site-footer .social { margin-bottom: 16px; }
.site-footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 7px;
  border-radius: 50%;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  color: var(--ink-soft);
  transition: transform 0.18s ease, color 0.18s ease;
}
.site-footer .social a:hover { color: var(--leaf-deep); transform: translateY(-2px); }
.site-footer .social svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Privacy page ---------- */
.doc {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 34px;
  margin: 20px auto 50px;
  max-width: 800px;
}
.doc h1 { margin-top: 0; }
.doc h2 { margin-top: 28px; font-size: 1.25rem; }
.doc p, .doc li { color: var(--ink-soft); }
.doc .updated { color: var(--ink-soft); font-style: italic; font-size: 0.92rem; }

@media (max-width: 520px) {
  .site-header nav a:first-child { display: none; }
}
