* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  font: 15px/1.45 ui-monospace, "SF Mono", Menlo, monospace;
  background: #f4f2ec;
  color: #1c1c1c;
}

#desktop {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.obj {
  position: absolute;
  max-width: 24rem;
  padding: 0.8rem 1rem;
  background: #fffdf5;
  border: 1px solid #d8d4c8;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.06);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  overflow-wrap: anywhere;
}

.obj.entering { opacity: 0; }

.obj .meta {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: #8b8678;
}

.obj a { color: inherit; }

footer {
  position: fixed;
  bottom: 0.6rem;
  left: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: #8b8678;
}

#dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #c4bfb0;
}

#dot.live { background: #4caf50; }
