@keyframes casinoceskyPlayButtonFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.play-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--acc), var(--org), var(--acc-l), var(--org), var(--acc));
  background-size: 320% 100%;
  color: #fff !important;
  font-family: var(--f);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(67,56,202,.22);
  animation: casinoceskyPlayButtonFlow 4s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.play-btn:hover,
.play-btn:focus-visible {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(234,88,12,.3);
  filter: saturate(1.08);
}

.play-btn:focus-visible {
  outline: 3px solid rgba(99,102,241,.25);
  outline-offset: 3px;
}

.play-btn .pb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
}

.play-btn .pb-icon img {
  width: 1.1em;
  height: 1.1em;
  margin: 0 !important;
}

@media (max-width: 480px) {
  .play-btn-wrap {
    margin: 22px 0;
  }

  .play-btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .play-btn {
    animation: none !important;
    transition: none !important;
  }
}
