/* Scope CSS to only elements inside #special-button-wrapper */
#special-button-wrapper {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center;     /* Center vertically */
  height: 100%;            /* Adjust height as needed */
}

#special-button-wrapper .button-64 {
  align-items: center;
  background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

#special-button-wrapper .button-64:active,
#special-button-wrapper .button-64:hover {
  outline: 0;
}

#special-button-wrapper .button-64 span {
  background-image: linear-gradient(to right bottom, #e01fae, #e3279d, #e3328d, #e03d80, #dc4875);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

#special-button-wrapper .button-64:hover span {
  background: none;
}

@media (min-width: 768px) {
  #special-button-wrapper .button-64 {
    font-size: 24px;
    min-width: 196px;
  }
}
