* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%; overflow: hidden;
  background: #f4ecd8;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #3a342a;
}
canvas#game { display: block; width: 100%; height: 100%; touch-action: none; }
a#back-arrow {
  position: fixed; top: 6px; left: 6px; z-index: 9999;
  font-family: system-ui, sans-serif; font-size: 11px;
  color: #fff; text-decoration: none; letter-spacing: 0.05em;
  opacity: 0.55;
  background: rgba(0,0,0,0.45);
  padding: 2px 8px; border-radius: 6px;
}
a#back-arrow:hover { opacity: 1; }

#inventory-bar {
  position: fixed; bottom: 16px; left: 16px;
  display: flex; gap: 8px;
  z-index: 200;
  pointer-events: none;
  flex-wrap: wrap;
  max-width: 70vw;
}
.inv-slot {
  display: flex; align-items: center; gap: 6px;
  background: rgba(58, 52, 42, 0.85);
  color: #f4ecd8;
  border-radius: 14px;
  padding: 6px 12px 6px 8px;
  font-size: 15px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  box-shadow: 0 3px 10px rgba(20, 14, 6, 0.35);
}
.inv-empty {
  opacity: 0.7;
  font-style: italic;
  padding: 6px 14px;
  letter-spacing: 0.06em;
}
.inv-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(255, 246, 224, 0.25);
}
.inv-count { font-weight: 600; min-width: 14px; text-align: right; }

#speech-bubble {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
  display: none; z-index: 200;
  max-width: 480px;
  background: rgba(255, 246, 224, 0.96);
  border-radius: 24px;
  padding: 14px 22px 16px 22px;
  box-shadow: 0 6px 20px rgba(60,50,30,0.25);
  font-family: 'Cormorant Garamond', Georgia, serif;
  text-align: center;
  cursor: pointer;
  pointer-events: auto;
}
#speech-bubble:hover { background: rgba(255, 246, 224, 1); }
.bubble-name { font-weight: 600; letter-spacing: 0.04em; color: #6e5238; font-size: 14px; margin-bottom: 6px; }
.bubble-intro { font-size: 14px; color: #5a4633; font-style: italic; margin-bottom: 6px; }
.bubble-text { font-size: 18px; color: #3a342a; line-height: 1.35; }
.bubble-text.bubble-give { color: #8a4a30; font-weight: 600; letter-spacing: 0.04em; }
.bubble-icon { margin-top: 8px; font-style: italic; color: #6e5238; font-size: 14px; }
