.station-stamp-box {
  margin: 30px auto;
  max-width: 520px;
}

.stamp-panel {
  padding: 20px;
  text-align: center;
  border: 1px solid #e8d9bd;
  border-radius: 10px;
  background: #FFFDF8;
}

.stamp-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.stamp-button-image {
  width: 360px;
  height: 206px;
  transition: transform .15s;
}

.stamp-button:hover .stamp-button-image {
  transform: scale(1.05);
}

.stamp-result {
  display: none;
}

.stamp-image {
  width: 360px;
  height: auto;
}

.stamp-message {
  margin-top: 12px;
  font-size: 18px;
  font-weight: bold;
  color: #c82020;
}

.stamp-pop {
  animation: stampPop .35s ease-out;
}

@keyframes stampPop {
  0% {
    transform: scale(1.8) rotate(-8deg);
    opacity: 0;
  }
  60% {
    transform: scale(.95) rotate(2deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.stamp-book-link {
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #0066cc;
}

.stamp-book-link:hover {
  text-decoration: underline;
}