/* Daily One Word · Share Page */
* { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

.neo {
  border: 4px solid #000;
  box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
}

.neo-btn {
  border: 4px solid #000;
  box-shadow: 6px 6px 0px 0px rgba(0,0,0,1);
  transition: all 0.12s ease;
  cursor: pointer;
  user-select: none;
}
.neo-btn:hover {
  box-shadow: 8px 8px 0px 0px rgba(0,0,0,1);
  transform: translate(-2px, -2px);
}
.neo-btn:active {
  box-shadow: 2px 2px 0px 0px rgba(0,0,0,1);
  transform: translate(3px, 3px);
}

.record-block {
  border: 4px solid #000;
  box-shadow: 5px 5px 0px 0px rgba(0,0,0,1);
  transition: transform 0.15s ease;
}
.record-block:hover {
  transform: rotate(-1deg) translate(-1px, -1px);
}

.anchor-block {
  grid-column: 1 / -1;
  border-width: 4px;
  box-shadow: 5px 5px 0 #000;
}

.moment-block {
  border-width: 2px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.78);
}

.mood-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.68);
}

.term-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 12px;
  background: rgba(255,255,255,0.65);
  color: #000;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.skeleton {
  background: rgba(255,255,255,0.4);
  border: 4px dashed rgba(0,0,0,0.15);
  border-radius: 24px;
  height: 240px;
  margin-bottom: 16px;
}

:focus-visible {
  outline: 3px solid #000;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
