/* Post-scan reward screen!!! */
#post-scan-overlay {
  position: fixed;
  inset: 0;
  background: #3b2a1a;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  font-family: Georgia, serif;
  text-align: center;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  overflow-y: auto;
}

#post-scan-emoji {
  font-size: 96px;
  margin-bottom: 2rem;
  display: block;
  /* gentle float animation */
  animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

#post-scan-message {
  font-size: 1.2rem;
  color: #f5f0e8;
  line-height: 1.6;
  margin: 0 0 0.5rem;
  max-width: 300px;
}

#post-scan-reward {
  font-size: 1.25rem;
  font-style: italic;
  color: #c17952;
  margin: 0 0 2rem;
}

#post-scan-subtext {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 0 3rem;
}

/* Home button */
#post-scan-home-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

#post-scan-home-circle {
  width: 60px;
  height: 60px;
  background: #c17952;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 18px 4px rgba(160, 87, 42, 0.55), 0 0 30px 8px rgba(160, 87, 42, 0.25);
}

#post-scan-home-label {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
}