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

.krltaew {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  background-image: url("/img/bg-st.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.krltaew::before {
  z-index: -1;
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
}
.krltaew-main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.krltaew-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.krltaew-footer-links {
  position: absolute;
  bottom: 0;
  color: #f6c478;

  a {
    color: #f6c478;
    text-decoration: none;
    font-weight: 700;

    &:hover {
      text-decoration: underline;
    }
  }
}

.krltaew-subtitle {
  /* color: #f6c076; */
  font-size: 24px;
  font-weight: 700;
}

.krltaew-link-btn {
  position: relative;
  display: block;
  max-width: 400px;
  background-color: rgba(180, 180, 180, 0.7);
  padding: 16px 20px;
  width: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 30px;
  transform: scale(1);
  border-radius: 16px;
  border: 1px solid #fff;
  transition: transform 0.4s ease;
  animation: pulse-shadow 1s infinite alternate;

  &:hover {
    transform: scale(1.02);
  }
}
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25px;
  transform: skewX(-45deg);
  animation: flareAnimation;
  left: 80%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
  0% {
    left: 10%;
  }
  100% {
    left: 80%;
  }
}
