

#container {
  text-align: center;
  position: relative;
  padding: 2rem;
}

/* ButtonImage: auto size + glow + squish-ready */
#buttonImage {
  max-width: min(70vw, 260px);      /* auto size, good on mobile & desktop */
  height: auto;
  cursor: pointer;
  user-select: none;
  transition: transform 0.1s ease, filter 0.2s ease;
  filter: drop-shadow(0 0 10px rgba(255, 190, 220, 0.7));
}

#buttonImage:hover {
  filter: drop-shadow(0 0 16px rgba(255, 200, 230, 0.9));
}

/* Squish on click */
#buttonImage:active {
  transform: scale(0.93);
  filter: drop-shadow(0 0 6px rgba(255, 170, 210, 0.7));
}

#game-title {
  font-size: 2.2rem;
  color: #d6d9ff;                  
  margin-bottom: 0.4rem;
  text-shadow: 0 0 10px rgba(255, 214, 240, 0.5);
}

#game-desc {
  font-size: 1.1rem;
  color: #d6d9ff;               
  margin-bottom: 1.8rem;           /* give nice space before the buttonImage */
  opacity: 0.95;
}

.sct-message-wrap {
  width: 100%;
  display: flex;
  justify-content: center; /* centers the message block */
}

#message {
  font-size: 1.4rem;
  color: #d6d9ff;
  width: min(520px, 100%);   /* stable width, responsive */
  margin: 1rem auto 0;
  text-align: center;

  /* IMPORTANT for <pre> */
  white-space: pre-wrap;     /* wraps lines */
  word-break: break-word;    /* breaks long words if needed */

  /* optional: make it feel like the rabbit one */
  padding: 12px 14px;
  border-radius: 14px;
}
/*
#message {
  font-size: 1.7rem;
  margin-top: 1rem;
  color: #d6d9ff;
   transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
*/
#message.show {
  opacity: 1;
  transform: scale(1);
  text-shadow: 0 0 8px rgba(252, 233, 245, 0.6);
}


#badge {
  position: absolute;
  top: -5px;
  right: 10px;
  padding: 6px 12px;
  border-radius: 14px;
  background: rgba(255, 214, 240, 0.1);
  border: 1px solid rgba(255, 214, 240, 0.3);
  color: #d6d9ff;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 0 8px rgba(255, 214, 240, 0.25);
  backdrop-filter: blur(2px);
}

/* Remove ugly tap highlight on mobile */
html, body {
  -webkit-tap-highlight-color: transparent;
}

#buttonImage,
.sct-game-button {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

#buttonImage:focus {
  outline: none;
}
