/* =========================
   GLOBAL
========================= */
body {
  min-height: 100vh;
  margin: 0;
  font-family: "Satoshi", "Work Sans", system-ui, sans-serif;

  background: radial-gradient(
      circle at top,
      rgba(249, 255, 56, 0.15),
      transparent 55%
    ),
    linear-gradient(180deg, #060807, #0b0f0b);

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

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

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

/* =========================
   LIVE TAG
========================= */
.live {
  color: #f9ff38;
  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;

  color: #0b0f0b;
  background: linear-gradient(135deg, #f9ff38, #cfe400);

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

.button2 {
  background: linear-gradient(135deg, #f9ff38, #9aff00);
}

.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;
}

/* =========================
   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, #ffffff, #f9ff38);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.box p {
  font-size: 15px;
  line-height: 1.6;
  color: #dfe3d6;
  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;

  color: #0b0f0b;
  background: linear-gradient(135deg, #f9ff38, #b7cc00);

  box-shadow: 0 18px 40px rgba(249, 255, 56, 0.35);
  transition: all 0.3s ease;
}

.button3:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(249, 255, 56, 0.5);
}

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

  h2 {
    font-size: 26px;
  }

  .box {
    padding: 28px 22px;
  }

  .button2 {
    display: none;
  }
}
