@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap);
/* general */
html {
  height: 100%;
}
    body { font-family: Arial, sans-serif; text-align: center; background: #f4f4f4; }
    .video-container { margin: 40px auto 20px auto; width: 80%; max-width: 600px; }
    .cta-btn {
      display: inline-block; margin-top: 25px; padding: 20px 40px;
      font-size: 1.2em; color: #fff; background: #ff6600; border: none;
      border-radius: 8px; cursor: pointer; transition: background 0.2s;
      animation: pulse 1.5s infinite;
    }
    .cta-btn:hover { background: #e65c00; }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,102,0,0.7); }
      70% { box-shadow: 0 0 0 15px rgba(255,102,0,0); }
    }
    .hand-float {
      position: fixed; bottom: 40px; right: 40px; font-size: 4em;
      z-index: 9999; cursor: pointer; animation: tap 1.2s infinite;
      background: #fff; border-radius: 50%; padding: 10px 15px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: transform 0.2s;
    }
    .hand-float:hover { transform: scale(1.12); background: #ffe0b2; }
    @keyframes tap {
      0%, 100% { transform: scale(1); }
      30% { transform: scale(0.90); }
      50% { transform: scale(1.15); }
    }
.wrap {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
.btn-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.btn {
  display: inline-block;
  width: auto;
  min-width: 150px;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  padding: 20px 15px;
  background: #000;
  border-radius: 25px;
  border: 1px solid #fff;
}
.btn--primary {
  background: #da1107;
  transition: all 0.3s ease;
}
.btn--primary:hover {
  background: #a70b03;
}
/* main */
.layout {
  height: 100%;
  display: flex;
}
.main {
  margin-top: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main .wrap {
}
.card {
  background: rgba(0, 0, 0, .75);
  padding: 20px 15px;
}
.card__title {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
}
ul  {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 10px;
  font-size: 16px;
}
ul li {
  margin: 10px;
  line-height: 1.5;
}
.step-2 .btn-wrap {
  margin-top: 25px;
}
.step-2 .btn {
  min-width: 200px;
}
.video-bg {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}
.video {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  height: 100%;
  width: 100%;
  margin: auto;
  display: block;
  position: absolute;
  top: 0;
}
.video-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(https://flirtgate.site/03-exo/lp014/img/bg-4.png);
  opacity: 0.2;
}
.video--blur {
  -webkit-filter: blur(30px);
  filter: blur(30px);
  width: 50%;
}
.video--blur1 {
  left: 0;
}
.video--blur2 {
  right: 0;
}
.video--mob {
  max-width: 600px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .main {
    margin-top: auto;
  }
}
.step {
  position: absolute;
  opacity: 0;
  transition: all 0.4s ease-in;
}
.step.step-active {
  position: relative;
  display: block;
  opacity: 1;
}
.step.step-shown {
  opacity: 0;
}

.back {
  position: absolute;
  left: 20px;
  top: 10px;
  border: 1px solid none;
  background:#000;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 26px;
  padding: 10px 15px;
  text-decoration: none;
}

.back:hover {
  background: #ffffff;
  color: #000;
  transition: all 0.3s ease-in-out 0s;
}
/* Показывать только активный шаг */
.step {
    display: none;
}
.step.step-active {
    display: block;
}
