.guess-page { padding-bottom: 3rem; }
.guess-lead {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
}
.guess-box {
  border: 1px solid rgba(244, 241, 234, 0.22);
  padding: 1.35rem 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
  background: linear-gradient(160deg, rgba(232, 184, 109, 0.12), rgba(12, 12, 18, 0.92) 55%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.guess-box label {
  display: block;
  margin-bottom: .55rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}
.guess-box textarea {
  width: 100%;
  min-height: 8rem;
  resize: vertical;
  margin-bottom: 1rem;
  padding: .95rem 1.1rem;
  border: 1px solid rgba(244, 241, 234, 0.32);
  border-radius: 0.5rem;
  background: #16161f;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  line-height: 1.55;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.guess-box textarea::placeholder {
  color: rgba(244, 241, 234, 0.48);
  opacity: 1;
}
.guess-box textarea:hover {
  border-color: rgba(232, 184, 109, 0.45);
}
.guess-box textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow:
    0 0 0 3px rgba(232, 184, 109, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.guess-status {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .95rem;
}
.guess-status.is-error { color: #ff9b9b; }
.guess-results { margin-top: 1.25rem; display: grid; gap: 1rem; }
.guess-hit {
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
}
.guess-hit__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .35rem;
}
.guess-hit__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  flex: 1;
}
.guess-hit__title-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 184, 109, 0.35);
  transition: border-color 150ms ease, color 150ms ease;
}
.guess-hit__title-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.guess-hit__pct {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  line-height: 1.2;
}
.guess-hit__meta {
  margin: 0 0 .5rem;
  color: var(--muted);
  font-size: .88rem;
}
.guess-hit__why {
  margin: 0 0 .55rem;
  color: rgba(244, 241, 234, 0.9);
  font-size: .92rem;
  line-height: 1.35;
}
.guess-hit__snip {
  margin: 0;
  font-size: clamp(0.88rem, 1.45vw, 0.95rem);
  color: rgba(244, 241, 234, 0.78);
  max-width: 42rem;
  white-space: pre-line;
}
.guess-hit__desc {
  max-width: 42rem;
  margin: 0 0 0.55rem;
}
.guess-hit__desc:not(.is-open) .guess-hit__snip {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.guess-hit__more {
  margin-top: 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: clamp(0.82rem, 1.3vw, 0.9rem);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.guess-hit__more:hover {
  color: var(--white);
}
.guess-hit__listen {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(232, 184, 109, 0.28);
  border-radius: 0.5rem;
  background: rgba(232, 184, 109, 0.08);
  color: rgba(244, 241, 234, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}
.guess-hit__here {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.guess-hit__here:hover {
  color: #f0c98a;
}
.guess-copy { margin-top: 1rem; }
