body {
  font-family: "Calibri Light", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

.absolute {
  position: absolute;
}

.info-box {
  width: 280px;
  min-height: 80px;
  border: 1px solid #333;
  text-align: center;
  font-size: 14px;
  padding: 5px;
  box-sizing: border-box;
}

.title-text {
  width: 340px;
  text-align: center;
  font-size: 20px;
}

.button {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button-text-only:hover,
.return-to-main-menu-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Wrapper that holds both image and badge */
.button-wrapper {
  position: relative;
  display: inline-block;
  border: 3px solid #ff6600;
  border-radius: 10px;
  padding: 5px;
  background: #fff;
  transition: all 0.3s ease;
}

/* Hover effect on wrapper (not only the image) */
.button-wrapper:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.7);
}

/* Badge stays in the top-right corner of wrapper */
.button-wrapper .badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #e60000;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 2;
}

/* Image inside wrapper */
.button-wrapper img {
  display: block;
  width: 300px;
  height: auto;
}

