* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow: hidden;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: url("/img/bg1-step1.png") no-repeat center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit; /* <-- ВАЖНО */
  filter: blur(20px) brightness(0.7);
  transform: scale(1.3); /* Чтобы не было видимых краёв после blur */
  z-index: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

.modal {
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  z-index: 10;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

p {
  font-size: 14px;
  color: #666;
  margin-bottom: 28px;
}

.button-group {
  display: flex;
  gap: 12px;
  justify-content: center;
}

a {
  padding: 12px 60px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

.btn-yes {
  background-color: #e14141;
  color: white;
  box-shadow: 0 4px 12px rgba(225, 65, 65, 0.4);
}

.btn-yes:hover {
  background-color: #c73535;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(225, 65, 65, 0.5);
}

.btn-no {
  background-color: #f0f0f0;
  color: #333;
}

.btn-no:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.footer-links {
  margin-top: 20px;
  font-size: 12px;
  color: #999;
  text-align: center;
  position: absolute;
  bottom: 4%;
  z-index: 20;

  a {
    padding: 12px 4px;

    &:hover {
      text-decoration: underline;
      color: #e14141;
    }
  }
}
@media (max-width: 800px) {
  body {
    background-image: url("/img/bg2-step1.png");
  }
}
