body {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure blur stays inside */
  z-index: 1;
}
.main::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  filter: blur(8px);
  z-index: -1;
}

.main-btn {
  display: block;
  text-decoration: none;
  min-width: 250px;
  color: white;
  background-color: #e60505;
  border-radius: 12px;
  cursor: pointer;
  display: block;
  text-align: center;
  padding: 10px 15px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 744px) {
  .main-btn {
    min-width: 320px;
    padding: 15px 15px;
  }
}
.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%;
  }
}
.img {
  width: 100%;
}
