.faru-bingo {
  --fg: #f3f5f6;
  --muted: #8a9aa0;
  --ink: #0e1719;
  --mark: #e11d2e;
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: var(--fg);
  font-family: "Figtree", "Segoe UI", sans-serif;
}
.faru-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.faru-kicker {
  margin: 0;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  color: var(--muted);
}
.faru-title {
  margin: 0.25rem 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
}
.faru-lede {
  margin: 0.45rem 0 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.faru-actions { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.faru-btn {
  height: 2.6rem;
  border: 0;
  border-radius: 8px;
  padding: 0 0.9rem;
  background: var(--fg);
  color: var(--ink);
  font: 500 0.9rem/1 "Figtree", "Segoe UI", sans-serif;
  cursor: pointer;
}
.faru-btn:disabled { opacity: 0.4; cursor: default; }
.faru-btn-ghost { background: transparent; color: var(--fg); box-shadow: inset 0 0 0 1px rgb(243 245 246 / 0.25); }
.faru-admin-note { margin: 0 0 0.8rem; font-size: 0.85rem; color: var(--muted); }
.faru-admin-note a { color: var(--fg); }
.faru-sheet {
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a3d46;
  background-image:
    linear-gradient(180deg, rgb(8 16 18 / 0.18), rgb(8 16 18 / 0.32)),
    url("jacket.jpg");
  background-size: cover;
  background-position: center top;
  box-shadow: 0 24px 48px -18px rgb(0 0 0 / 0.65);
}
.faru-lockup { padding: 1.1rem 1.2rem 0.35rem; line-height: 1; }
.faru-word {
  display: block;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 4.6rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #f3f5f6;
  text-transform: uppercase;
}
.faru-script {
  display: block;
  margin-top: 0.18em;
  margin-left: 0.06em;
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  line-height: 1;
}
.faru-grid {
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
}
.faru-cell {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--fg);
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font: 500 0.82rem/1.25 "Figtree", "Segoe UI", sans-serif;
}
.faru-cell:nth-child(n + 5) { border-top: 2px solid rgb(243 245 246 / 0.88); }
.faru-cell:not(:nth-child(4n + 1)) { border-left: 2px solid rgb(243 245 246 / 0.88); }
.faru-x {
  position: absolute;
  z-index: 2;
  width: 78%;
  height: 78%;
  pointer-events: none;
  opacity: 0;
}
.faru-cell[aria-pressed="true"] .faru-x { opacity: 1; }
.faru-x::before,
.faru-x::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--mark);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.45);
}
.faru-x::before { transform: translateY(-50%) rotate(42deg); }
.faru-x::after { transform: translateY(-50%) rotate(-42deg); }
.faru-copy {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 10px rgb(0 0 0 / 0.72);
}
.faru-cell.long { font-size: 0.7rem; }
.faru-status { margin: 0; padding: 0.7rem 1rem 1rem; text-align: center; font-size: 0.8rem; }
