/* ============================================================
   dithercam.css — DitherCam toy app (FOUNDATION STUB)
   Owned by the `dithercam` agent — expand freely below.
   Foundation provides: desk glyph, springboard tile, body sizing.
   ============================================================ */

/* desk icon glyph — half-filled disc = threshold / halftone */
.desk-icon .glyph.dc-glyph {
  color: #eafff0;
  filter: drop-shadow(0 0 5px rgba(234, 255, 240, 0.5));
}

/* springboard tile — a literal 1-bit dither pattern */
.sb-icon .tile-dc {
  background:
    repeating-conic-gradient(#141414 0 25%, #e8e8e8 0 50%) 0 0 / 6px 6px;
  color: #eafff0;
  text-shadow: 0 0 3px #000, 0 1px 2px #000;
}

/* window/app body — viewfinder workspace (glitchpic-body pattern) */
.dc-body {
  padding: 0;
  border-top: none;
  height: 560px;
  min-height: 440px;
  max-height: calc(100dvh - 130px);
  overflow: hidden;
  background: #0b0b10;
}
.dc-app-body {
  padding: 0;
  overflow: hidden;
  background: #0b0b10;
}
