/* ==============================
   ROOT VARIABLES (THEME)
================================ */
:root {
  --bg-dark: #070a02;
  --bg-card: rgba(15, 18, 6, 0.85);
  --border-light: rgba(249, 255, 56, 0.18);

  --primary: #f9ff38;
  --primary-soft: #c9d833;
  --accent: #7dff4a;

  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

/* ==============================
   BODY / BACKGROUND
================================ */
body {
  min-height: 100vh;

  background: radial-gradient(
      circle at top,
      rgba(249, 255, 56, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(125, 255, 74, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #050700, #0b0f03);

  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 16px 40px;
  font-family: "Onest", sans-serif;
}

/* ==============================
   HEADER TEXT
================================ */
h1 {
  font-size: clamp(2rem, 6vw, 2.4rem);
  font-weight: 900;

  margin-bottom: 12px;

  /* background: linear-gradient(135deg, #ffffff, var(--primary), #8aff5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */

  text-shadow: 0 0 18px rgba(249, 255, 56, 0.35);
  color: white;
}

body > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
  max-width: 420px;
}

/* ==============================
   MAIN CLAIM CARD
================================ */
.mainbox {
  width: 100%;
  max-width: 480px;

  background: linear-gradient(
    135deg,
    rgba(249, 255, 56, 0.18),
    rgba(0, 0, 0, 0.75)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);

  padding: 34px 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);

  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Soft animated glow overlay */
.mainbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(249, 255, 56, 0.15),
    transparent
  );
  opacity: 0.6;
  pointer-events: none;
}

/* ==============================
   ICON
================================ */
.mainbox ion-icon {
  font-size: 52px;
  color: var(--primary);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(249, 255, 56, 0.6));
}

/* ==============================
   CARD TITLE & TEXT
================================ */
.mainbox h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mainbox > p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* ==============================
   CLAIM DETAILS BOX
================================ */
.mainbox div {
  background: linear-gradient(
    135deg,
    rgba(249, 255, 56, 0.08),
    rgba(0, 0, 0, 0.55)
  );
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(249, 255, 56, 0.15);
  text-align: left;
}

.mainbox h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--primary-soft);
}

.mainbox div p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e5e7c8;
}

/* ==============================
   CTA BUTTON
================================ */
button {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;

  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #0b0f03;
  background: linear-gradient(135deg, #f9ff38, #bfff3a);

  box-shadow: 0 14px 35px rgba(249, 255, 56, 0.5),
    inset 0 -2px 0 rgba(0, 0, 0, 0.2);

  transition: all 0.25s ease;
}

button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px rgba(249, 255, 56, 0.75);
}

button:active {
  transform: translateY(0);
}

/* DISCLAIMER TEXT */
.mainbox > p:last-of-type {
  font-size: 0.8rem;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.55);
}

/* ==============================
   FOOTER
================================ */
footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

footer a {
  color: var(--primary-soft);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 480px) {
  .mainbox {
    padding: 26px 20px;
  }

  h1 {
    letter-spacing: 0.08em;
  }
}
