/* ---------- BASE ---------- */
body {
  margin: 0;
  height: 100vh;
  font-family: "Satoshi", sans-serif;

  background-image: url(./dfa7e347-df04-470c-9bc3-6a3331dd9149.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-color: #0f1410; /* fallback */
  overflow: hidden;
  position: relative;
}

/* ---------- CANVAS ---------- */
#canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ---------- HEADER ---------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 32px;
}

header img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

/* ---------- BUTTON GROUP ---------- */
.buttons {
  display: flex;
  gap: 12px;
}

/* ---------- HEADER BUTTONS ---------- */
.button1,
.button2 {
  font-size: 14px;
  font-weight: 600;

  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;

  color: #ffffff;
  background: linear-gradient(135deg, #2f6b44, #1f4d32);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button1:hover,
.button2:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

/* ---------- MAIN ---------- */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

/* ---------- CLAIM CARD ---------- */
main .box {
  width: 600px;
  max-width: 90%;

  padding: 32px;
  border-radius: 24px;

  background: rgba(22, 36, 26, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
  color: #ffffff;
}

/* ---------- TEXT ---------- */
h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #e6e6e6;
}

/* ---------- CTA BUTTON ---------- */
.button3 {
  margin-top: 10px;

  font-size: 15px;
  font-weight: 700;

  padding: 16px 26px;
  border-radius: 14px;
  border: none;
  cursor: pointer;

  color: #0f1410;
  background: linear-gradient(135deg, #e9f4dc, #cfe7b6);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button3:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  header {
    padding: 12px 20px;
  }
  .box {
    width: 90%;
    padding: 28px;
    margin: 10px 30px;
  }

  .button2 {
    display: none;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 15px;
  }
}
