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

/* ================= BODY & BACKGROUND ================= */
body {
  font-family: "Onest", sans-serif;
  min-height: 100vh;
  color: #ffffff;

  background-image: url("./bg-desktop2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  position: relative;
  overflow-x: hidden;
}

/* ================= BACKGROUND OVERLAY ================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.85)
  );
  z-index: -1;
}

/* ================= CINEMATIC MOTION ================= */
@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

body {
  animation: slowZoom 35s ease-in-out infinite alternate;
}
[data-aos] {
  visibility: hidden;
}
[data-aos].aos-animate {
  visibility: visible;
}

/* ================= HEADER ================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.logo {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.connect-btn {
  background: #f9ff38;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Onest", sans-serif;
}

/* ================= MAIN ================= */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}

/* ================= CLAIM BOX ================= */
.claim-box {
  background: rgba(17, 20, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px;
  width: 100%;
  max-width: 420px;
  text-align: center;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

/* ================= TEXT ================= */
.claim-box h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.claim-box h1 span {
  color: #f9ff38;
}

.subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ================= STATS ================= */
.stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.stats div {
  background: rgba(11, 13, 16, 0.9);
  border-radius: 10px;
  padding: 14px;
  width: 100%;
}

.stats small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.stats strong {
  font-size: 0.95rem;
}

/* ================= INPUT ================= */
input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 13, 16, 0.95);
  color: white;
  margin-bottom: 20px;
  outline: none;
}

/* ================= BUTTON ================= */
.claim-btn {
  width: 100%;
  padding: 14px;
  background-color: #f9ff38;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 255, 56, 0.4);
}

/* ================= NOTE ================= */
.note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

/* ================= MOBILE BACKGROUND ================= */

@media (max-width: 480px) {
  header {
    padding: 20px;
  }

  .claim-box {
    padding: 28px 22px;
  }

  .logo {
    font-size: 30px;
  }

  .connect-btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .remimage {
    width: 30px;
    height: 30px;
  }
}
