body {
  font-family: sans-serif;
  margin: 0;
  padding: 12px 20px;
  background: linear-gradient(180deg, #201431, #11091e);
  color: #f3f4f6;
  text-align: center;
}

/* Header (consistent with other pages) */
.hero {
  position: relative;
  width: 100%;
  background-color: #201431;
  padding: max(6px, env(safe-area-inset-top)) 16px max(6px, env(safe-area-inset-bottom)) 16px;
}
.hero-row {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  height: clamp(56px, 10vh, 84px);
}
.hero-logo {
  height: 100%; width: auto; object-fit: contain; display: block; flex: 0 0 auto;
}
.hero-title {
  flex: 1;
  text-align: center;
  color: #f3f4f6; /* revert to white */
  font-weight: 900;
  font-size: 24px; /* smaller */
  margin: 0;
  letter-spacing: 0.2px;
}

/* legacy h1 not used; hero-title is used inside header */

.button-grid {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.buy-form {
  margin: 0;
}

.buy-option {
  width: 100%;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 8px;
  background-color: gold;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #000;               /* ensure black text on iOS Safari */
  font-weight: 500;          /* normal weight by default */
  -webkit-appearance: none;  /* neutralize iOS button styling */
  appearance: none;
}

.buy-option:hover {
  background-color: #facc15;
}

/* Ensure nested elements (like <b>) keep intended color, not iOS defaults */
.buy-option *,
.buy-option:focus,
.buy-option:active {
  color: #000;
}

/* Keep only the intended bold on explicit <b> tags */
.buy-option b {
  font-weight: 700;
}

#status {
  color: #111827;
  margin-top: 12px;
}

.trust-note {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #000;
  text-align: center;
  display: block;
}

.trust-note span,
.trust-note img {
  display: inline-block;
  vertical-align: middle;
}

/* Make payment icons legible on purple */
/* Shared white bar for payments row */
.trust-note {
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.trust-note span { color: #111827; font-weight: 600; }
.trust-note img { background: transparent; padding: 0; border-radius: 0; box-shadow: none; }

/* Spinning coin in header (right of title) */
.hero-coin {
  position: relative;
  width: 36px; height: 36px; flex: 0 0 auto;
  animation: spinY 0.9s linear infinite;
}
.hero-coin::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(#f8e8a0, #facc15 60deg, #b48a0a 180deg, #facc15 300deg, #f8e8a0 360deg);
  box-shadow: inset 0 2px 3px rgba(255,255,255,.7), inset 0 -2px 3px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.35);
}
.hero-coin::after {
  content: ""; position: absolute; inset: 5px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8c5, #facc15 60%, #a57909 100%);
  box-shadow: inset 0 1px 3px rgba(255,255,255,.6), inset 0 -2px 4px rgba(0,0,0,.4);
}

@keyframes spinY { from{ transform: rotateY(0) } to { transform: rotateY(360deg) } }
