@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap");
body {
  font-family: "Roboto", sans-serif;
  background: #ffffff;
  line-height: 130%;
}

.wrap {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100svh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-box {
  background: rgba(1, 1, 1, 0.7);
  border-radius: 12px;
  padding: 28px 22px;
  position: relative;
  z-index: 10;
  max-width: 364px;
  width: 100%;
  margin: 0 15px;
}

.content-box .subheader {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  line-height: 120%;
}

.content-box .description {
  font-size: 23px;
  text-align: center;
  font-weight: 700;
  color: #ff3d5a;
  margin-top: 10px;
}

.content-box .buttons {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}

.content-box .buttons a {
  text-align: center;
  text-transform: uppercase;
  padding: 15px 0;
  border-radius: 15px;
  background: #ff3d5a;
  font-weight: 900;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
}

.content-box .buttons a + a {
  color: #000000;
  background: rgba(217, 217, 217, 0.6);
}

.video_back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video_back video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
  }
}

.buttons a:first-child {
  animation: pulse 0.5s infinite;
  transition: transform 0.2s;
}