Cyberpunk Effect

The cool glitched button from the cyberpunk.net website

by ajmeese7

HTML

<html>
  <body>
    <a class="btn-preorder" href="/us/en/pre-order">
      <span class="btn-preorder__text" data-text="pre order now_">pre order now_</span>
      <span class="btn-preorder--glitch"></span>
    </a>
  </body>
</html>

CSS

body {
  background-color: #f0e702;
}

.btn-preorder:hover .btn-preorder--glitch, 
.btn-preorder:hover .btn-preorder__text:after {
  display: block;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: glitch-anim-1;
  animation-name: glitch-anim-1;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.btn-preorder--glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-image: url(https://www.cyberpunk.net/build/images/home/button-86c98458.svg);
  background-repeat: no-repeat;
  -webkit-filter: drop-shadow(-2px 3px #67e3f3) drop-shadow(-1px -3px #02d8f3) drop-shadow(2px 1px #02d8f3);
  filter: drop-shadow(-2px 3px #67e3f3) drop-shadow(-1px -3px #02d8f3) drop-shadow(2px 1px #02d8f3);
}
.btn-preorder:after {
  content: "R25";
  position: absolute;
  right: 30px;
  bottom: -3px;
  font-size: 9px;
  line-height: 1;
  color: #00000f;
  letter-spacing: 1px;
}

.btn-preorder {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 339 85'%3E%3Cpath d='M315 85v-8h-27v8H21.77L2 65.23V0h337v85z' fill-rule='evenodd' fill='%2302d8f3' opacity='.45'/%3E%3Cpath d='M313 85v-8h-27v8H19.77L0 65.23V0h337v85z' fill='%23ff003c' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
  width: 337px;
  height: 85px;
  font-size: 26px;
  line-height: 1;
  font-family: BlenderProBold,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  position:...