*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
}

.app-play-now {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
  background-color: rgba(27, 31, 40, 1);
  background-image: url('./img/bg.webp');
  background-size: cover;
  background-position: center;
}

.play-now-container {
  text-align: center;
}

.play-now-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 446px;
  height: 108px;
  padding: 18px;
  font-size: 48px;
  font-weight: 600;
  line-height: 72px;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  letter-spacing: 2px;
  cursor: pointer;
  background: linear-gradient(
    272.36deg,
    rgba(178, 26, 108, 1) 10.5%,
    rgba(255, 77, 173, 1) 53.84%,
    rgba(178, 26, 108, 1) 88.85%
  );
  border: none;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.play-now-button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

@media (max-width: 767px) {
  .play-now-button {
    width: 358px;
    height: 84px;
    font-size: 32px;
    line-height: 1;
  }
}
