@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


body {
  background: #0d0d0d;
  color: white;
  /* font-family: Arial, sans-serif; */
  margin: 0;
  padding: 0;
  text-align: center;
  height: 100vh;
  scroll-behavior: smooth;
}

main {
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  h1 {
    font-size: 46px;
    color: #AFAEFF;
    text-shadow: 0 0 8px rgba(175, 174, 255, 0.6);
  }

  img {
    max-width: 33rem;
    box-shadow: 0 0 8px rgba(175, 174, 255, 0.6);
    border-radius: 1rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;


    &:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 4px 12px rgba(175, 174, 255, 0.4);
    }
  }
}

.beta {
  background: linear-gradient(90deg, #7a79ff, #AFAEFF);
  color: white;
  /* box-shadow: 0 0 14px rgba(175, 174, 255, 0.6); */
  font-size: 10px;
  transform: scale(1.05);
  padding: 5px;
  border-radius: 8px;
  cursor: pointer;
}


.btn {
  background: linear-gradient(90deg, #AFAEFF, #7a79ff);
  color: #0d0d0d;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  margin: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(175, 174, 255, 0.4);
}

/* Features */
.features {
  margin-top: 3rem;
  padding: 2rem;
  visibility: hidden;
}