/* =========================
   GLOBAL
========================= */
body {
  background: radial-gradient(
      circle at top,
      rgba(19, 19, 18, 0.75),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(239, 248, 244, 0.92),
      rgba(250, 255, 250, 0.95)
    ),
    url("./1500x500.jpg");
  font-family: "Albert Sans", sans-serif;
  background-position: center;
  background-repeat: no-repeat;

  color: #eef1e8;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
}

header img {
  height: 80px;
  width: 100px;
  border-radius: 14px;
}

/* =========================
   LIVE TAG
========================= */
.live {
  color: #0b0f0b;
  font-weight: 800;
  margin-left: 6px;
}

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

/* =========================
   HEADER BUTTONS
========================= */
.button1,
.button2 {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font-family: "Albert Sans", sans-serif;
  color: #f0f6f0;
  background: linear-gradient(135deg, #17170def, #0c0c0cee);

  box-shadow: 0 10px 24px rgba(249, 255, 56, 0.35);
  transition: all 0.25s ease;
}

.button2 {
  background: linear-gradient(135deg, #17170def, #0c0c0cee);
}

.button1:hover,
.button2:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(249, 255, 56, 0.45);
}

/* =========================
   MAIN LAYOUT
========================= */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  padding: 0 16px;
  color: black;
  font-family: "Albert Sans", sans-serif;
}

/* =========================
   CLAIM BOX
========================= */
.box {
  width: 100%;
  max-width: 620px;
  padding: 36px 32px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

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

  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  text-align: center;
}

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

  background: linear-gradient(135deg, #0f0d0d, #141414);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.box p:last-of-type {
  font-size: 13px;
  opacity: 0.7;
}

/* =========================
   CTA BUTTONS
========================= */
.button3 {
  display: block;
  width: 100%;
  margin-top: 14px;

  font-size: 14px;
  font-weight: 700;
  padding: 16px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font-family: "Albert Sans", sans-serif;
  color: #f0f6f0;
  background: linear-gradient(135deg, #17170def, #0c0c0cee);

  transition: all 0.3s ease;
}

.button3:hover {
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {
  header {
    padding: 12px 20px;
  }

  h2 {
    font-size: 26px;
  }

  .box {
    padding: 28px 22px;
  }

  .button2 {
    display: none;
  }
}
