.minecraft-old-offers-btn {
  display: inline-block;
  margin: auto auto 0 auto;
  padding: 0.85em 2.2em;
  font-size: 1.18rem;
  font-weight: 700;
  color: #142443;
  background: #fff;
  border: 2.5px solid #FFD600;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.13s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07), 0 0 12px 2px #FFD60044;
  position: relative;
}
.minecraft-old-offers-btn.active {
  background: #FFD600;
  color: #222;
  box-shadow: 0 2px 18px 0px #FFD60088, 0 0 16px 2px #FFD60055;
  animation: btnClickPop 0.18s cubic-bezier(.5,1.8,.5,1.1);
}
.minecraft-old-offers-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px #FFD60044;
}

@keyframes btnClickPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}
