
/* ================= Spot the Difference - Final Stacked Layout ================= */

/* Wrapper inside WordPress layout */
.wide-game-wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Stack layout with spacing and centering */
.wide-game-wrapper .game-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Center each image and apply spacing */
.spot-the-difference-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 10px auto;  /* Center horizontally + 20px space below */
  border: medium;
  border-color: gray;
}

.spot-image {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #ccc;
}

.hotspot-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hotspot-zone {
  position: absolute;
  width: 7%;
  height: 9%;
  transform: translate(-50%, -50%);
  cursor: default;
  border-radius: 50%;
  background: transparent;
}

.hotspot-zone.found::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid purple;
  border-radius: 50%;
  box-sizing: border-box;
}

.counter {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.celebration-message {
  display: none;
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: bold;
  color: #f9d15d;
  text-align: center;
  width: 100%;
}
