/* ===============================
   XYZVERSE PURPLE × GOLD THEME
================================ */
:root {
  --bg-main: #05010b;
  --bg-panel: rgba(18, 8, 40, 0.75);
  --border-glow: rgba(245, 199, 122, 0.35);

  --purple-main: #4b2cff;
  --purple-soft: #9b8cff;

  --gold-main: #f5c77a;
  --gold-soft: #ffdfa3;

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

  --radius-lg: 20px;
  --radius-md: 12px;
}

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

/* ===============================
   BODY / SPACE BACKGROUND
================================ */
body {
  min-height: 100vh;
  font-family: "Onest", system-ui, sans-serif;
  color: var(--text-main);

  background: radial-gradient(
      circle at top,
      rgba(75, 44, 255, 0.25),
      transparent 45%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(245, 199, 122, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, #05010b, #0a0218);

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 16px 40px;
}

/* ===============================
   HERO
================================ */
.hero {
  text-align: center;
  margin-bottom: 44px;
}

.hero img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 2.9rem);
  font-weight: 900;
  letter-spacing: 0.03em;

  background: linear-gradient(135deg, var(--gold-soft), var(--purple-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 24px rgba(245, 199, 122, 0.35);
}

.subtitle {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--text-muted);
}

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

  background: linear-gradient(
    135deg,
    rgba(75, 44, 255, 0.18),
    rgba(5, 1, 11, 0.85)
  );

  border-radius: var(--radius-lg);
  padding: 38px 30px;
  text-align: center;

  border: 1px solid var(--border-glow);
  backdrop-filter: blur(20px);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), 0 0 60px rgba(75, 44, 255, 0.25);

  overflow: hidden;
}

/* Subtle energy sweep */
.mainbox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(245, 199, 122, 0.18),
    transparent
  );
  opacity: 0.55;
  pointer-events: none;
}

/* ===============================
   ICON
================================ */
.mainbox ion-icon {
  font-size: 56px;
  color: var(--gold-main);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 18px rgba(245, 199, 122, 0.6));
}

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

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

/* ===============================
   DETAILS PANEL
================================ */
.details {
  background: rgba(245, 199, 122, 0.08);
  border: 1px solid rgba(245, 199, 122, 0.25);
  border-left: 4px solid var(--gold-main);

  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 30px;
  text-align: left;
}

.details h5 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.details p {
  font-size: 0.9rem;
  color: #fff3dd;
}

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

  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #1a0d02;
  background: linear-gradient(135deg, var(--gold-main), var(--purple-soft));

  box-shadow: 0 18px 45px rgba(245, 199, 122, 0.55),
    inset 0 -2px 0 rgba(0, 0, 0, 0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 65px rgba(245, 199, 122, 0.75);
}

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

/* ===============================
   HINT
================================ */
.hint {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

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

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

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

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

  .hero h1 {
    font-size: 2rem;
  }
}
