* {
  user-select: none;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  max-width: 750px;
  margin: 0 auto;
  font-size: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Aileron", sans-serif;
  font-weight: bold;
}

img {
  width: 100%;
}
.page-box {
  width: 100%;
  max-width: 750px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  background: url("/assets/bg.png");
  background-size: cover;
  background-position: center center;
}

.page-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.page-box img {
  width: 40%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10%;
}

.page-box a {
  background: linear-gradient(135deg, #1e3a8a, #b91c1c);
  font-size: 1rem;
  border-radius: 5rem;
  padding: 0.5rem 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border: none;
  box-shadow: none;
}

.page-box .tips {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  
  width: 80%;
  max-width: 500px;
  
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
  line-height: 1.5;

  padding: 0.6rem 1rem;
  border-radius: 1rem;

  /* Glass effect */
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);

  /* Glow border */
  border: 1px solid rgba(0, 153, 255, 0.6);
  box-shadow: 0 0 10px rgba(0, 153, 255, 0.4);

  /* Smooth appearance */
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* @media screen and (min-width: 750px) {
  .page-box img {
    display: none;
    width: 30rem;
    margin-bottom: 10rem;
  }
} */
