#poierr-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(40, 28, 16, 0.62);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Segoe UI", Roboto, sans-serif;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
}

#poierr-overlay.poierr-visible {
  display: flex;
}

#poierr-card {
  position: relative;
  width: min(86vw, 560px);
  max-width: 560px;
  margin-top: 96px;
  padding: 92px 22px 24px;
  background: #F3E1C9;
  border: 3px solid #FFFDF5;
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(60, 40, 20, 0.35);
  color: #4A3826;
  text-align: center;
  box-sizing: border-box;
}

#poierr-illust {
  position: absolute;
  left: 50%;
  top: 0;
  width: 150px;
  height: 177px;
  margin-left: -75px;
  margin-top: -90px;
  pointer-events: none;
}

#poierr-illust img {
  display: block;
  width: 150px;
  height: 177px;
}

#poierr-title {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #7A4F22;
}

#poierr-message {
  margin: 0 auto 22px;
  padding: 14px 12px;
  background: #FFFDF5;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
  white-space: pre-line;
}

#poierr-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
}

#poierr-actions button {
  flex: 1 1 0;
  min-width: 120px;
  padding: 14px 10px;
  border: 0;
  border-bottom: 3px solid #8A5E2E;
  border-radius: 999px;
  background: #E0A24A;
  color: #3B2A16;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

#poierr-actions button.poierr-sub {
  border-bottom-color: #B79A72;
  background: #FFF6DD;
  color: #6B5335;
}

#poierr-actions button:active {
  transform: translateY(2px);
  border-bottom-width: 1px;
}

#poierr-meta {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: #6E5A40;
}

@media (max-width: 380px) {
  #poierr-actions {
    flex-direction: column;
    gap: 10px;
  }
  #poierr-message {
    font-size: 16px;
  }
}
