body {
  margin: 0;
  font-family: "Radio Canada", sans-serif;
}
.page-wrapper {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("/img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.page-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px) brightness(90%);
}
.shine-effect {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25px;
  transform: skewX(-45deg);
  animation: sweepAnimation;
  left: 80%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  animation: sweepAnimation 3s infinite linear;
}
@keyframes sweepAnimation {
  0% {
    left: 10%;
  }
  100% {
    left: 80%;
  }
}
.action-content {
  display: flex;
  justify-content: center;
  background-color: #e60505;
  color: #fff;
  border: 6px solid;
  padding: 16px;
  border-radius: 12px;
  z-index: 2;
  text-align: center;
  max-width: 65%;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease-out forwards;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.action-button {
  display: block;
  width: 270px;
  padding: 16px 0;
  background: #e60505;
  border-radius: 12px;
  margin: 0 auto;
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 10;

  transition: scale 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}
.action-button:hover {
  scale: 1.03;
}
.action-title {
  margin: 0;
  opacity: 0;
  font-size: calc(32px + (64 - 32) * ((100vw - 320px) / (1280 - 320)));
  transform: translateY(50px);
  animation: slideUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .action-button {
    font-size: 25px;
    padding: 16px 16px;
  }
  .page-wrapper {
    background-image: url("/img/bg-2.png");
  }
}
@media (max-width: 685px) {
  .action-button {
    font-size: 20px;
  }
  .page-wrapper {
    background-image: url("/img/bg-3.png");
  }
}
@media (min-width: 400px) {
  .action-button {
    width: 300px;
  }
}
@media (min-width: 600px) {
  .action-button {
    width: 400px;
  }
}
@media (min-width: 744px) {
  .action-button {
    width: 500px;
    font-size: 28px;
  }
}
@media (min-width: 1440px) {
  .action-button {
    width: 800px;
    font-size: 30px;
  }
}
