/* ============================================================
   Jungle Land redesign — Terms & Conditions page
   ============================================================ */

.terms-stickers { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; }
.sticker {
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s;
}
.sticker:hover { transform: rotate(0deg) translateY(-3px) !important; }
.sticker.s1 { background: var(--pale-peach); transform: rotate(-2deg); }
.sticker.s2 { background: var(--pale-mint); transform: rotate(1.5deg); }
.sticker.s3 { background: #DFF0F9; transform: rotate(-1deg); }
.sticker.s4 { background: var(--pale-pink); transform: rotate(2deg); }
.sticker.s5 { background: var(--pale-yellow); transform: rotate(-1.5deg); }
.sticker small { font-size: 12.5px; }

.rules-list { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 0; }
.rule {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 8px 20px rgba(23, 66, 31, .06);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.7;
}
.rule b { color: var(--ink); }
.rule .r-num {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pale-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--green);
  margin-top: 2px;
}

.nut-note {
  background: var(--pale-note);
  border: 2px dashed var(--note-line);
  border-radius: var(--r-sm);
  padding: 18px 24px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--note-ink);
  line-height: 1.7;
  margin: 26px 0 0;
}

.terms-cta { display: flex; align-items: center; gap: 22px; margin: 34px 0 0; flex-wrap: wrap; }
.dashed-link { border-bottom: 2px dashed rgba(46, 125, 50, .4); padding-bottom: 2px; font-weight: 700; }

/* ---------- legal sections (Terms, Privacy, Refund pages) ----------
   These reuse the .rule / .r-num card from the conditions-of-entry list
   above, so the legal pages read as part of the site rather than as a
   pasted document. .legal-body is the text column inside that card. */
.legal-intro {
  max-width: 72ch;
  margin: 14px 0 0;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--body-2);
}

.legal-body { flex: 1; min-width: 0; }
.legal-body h3 {
  margin: 3px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17.5px;
  line-height: 1.3;
  color: var(--ink);
}
.legal-body p { margin: 9px 0 0; }
.legal-body ul { margin: 9px 0 0; padding: 0; list-style: none; }
.legal-body ul li { position: relative; padding: 0 0 0 20px; margin: 6px 0 0; }
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: .66em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--leaf);
}
.legal-body a {
  color: var(--green);
  font-weight: 700;
  border-bottom: 2px dashed rgba(46, 125, 50, .4);
  padding-bottom: 1px;
}
.legal-body a:hover { color: var(--accent-deep); }

/* the terms that cost money if missed */
.legal-flag {
  background: var(--pale-note);
  border: 2px dashed var(--note-line);
  border-radius: var(--r-sm);
  padding: 16px 22px;
  margin: 26px 0 0;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--note-ink);
}
.legal-flag a { color: var(--note-ink); text-decoration: underline; }
