/* ===============================
   ROOT THEME
================================ */
:root {
  --black: #000000;
  --white: #ffffff;
  --neon: #a6ff00;

  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-muted: rgba(255, 255, 255, 0.7);
}

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

/* ===============================
   BODY
================================ */
body {
  font-family: "Work Sans", "Satoshi", sans-serif;
  background: radial-gradient(
      circle at top,
      rgba(166, 255, 0, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #000000, #050505);
  color: var(--white);
  min-height: 100vh;
}

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

.logo img {
  height: 34px;
}

/* Header Buttons */
.buttons {
  display: flex;
  gap: 14px;
}

.button1,
.button2 {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Outline */
.button1 {
  background: transparent;
  border: 1px solid var(--neon);
  color: var(--neon);
}

.button1:hover {
  background: rgba(166, 255, 0, 0.1);
  box-shadow: 0 0 20px rgba(166, 255, 0, 0.35);
}

/* Solid */
.button2 {
  background: var(--neon);
  border: none;
  color: #000;
}

.button2:hover {
  box-shadow: 0 0 30px rgba(166, 255, 0, 0.6);
}

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

/* ===============================
   CLAIM BOX
================================ */
.box {
  max-width: 520px;
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 42px 38px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ===============================
   HEADLINE
================================ */
.box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.box .live {
  color: var(--neon);
  text-shadow: 0 0 12px rgba(166, 255, 0, 0.8), 0 0 30px rgba(166, 255, 0, 0.6);
}

/* ===============================
   TEXT
================================ */
.box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.note {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 26px;
}

/* ===============================
   CTA BUTTONS
================================ */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.button3 {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

/* Primary CTA */
.button3 {
  background: var(--neon);
  color: #000;
  box-shadow: 0 12px 30px rgba(166, 255, 0, 0.55);
}

.button3:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(166, 255, 0, 0.75);
}

/* Secondary CTA */
.button3.secondary {
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--neon);
  box-shadow: none;
}

.button3.secondary:hover {
  background: rgba(166, 255, 0, 0.1);
}

/* ===============================
   INFO BOX
================================ */
.claim-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.claim-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

  main {
    padding-top: 80px;
  }

  .box {
    padding: 32px 26px;
  }

  .box h2 {
    font-size: 1.8rem;
  }
  .button2 {
    display: none;
  }
}
