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

body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/bg-step1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: -1;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.content p {
  font-size: 32px;
  margin-bottom: 10px;
}

.content a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  backdrop-filter: blur(4px);
  transition: 0.2s ease;
}

.content a:hover {
  background: rgba(255, 255, 255, 0.35);
}

.links {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.links a:hover {
  text-decoration: underline;
}
