:root {
  --color-live: #ccff00;
  --color-grape: #00C805;
  --color-flare: #7dff3a;
}

/* page ambience: the base build paints three red radials here */
body::before {
  background:
    radial-gradient(60rem 40rem at 12% -10%, rgba(204, 255, 0, 0.09), transparent 60%),
    radial-gradient(50rem 38rem at 100% 0, rgba(0, 200, 5, 0.08), transparent 55%),
    radial-gradient(40rem 40rem at 50% 120%, rgba(125, 255, 58, 0.07), transparent 60%) !important;
}

.text-holo {
  background-image: linear-gradient(100deg, #f4ffc4, #ccff00 38%, #00C805 70%, #7dff3a) !important;
}

.shadow-glow-live {
  box-shadow: 0 0 60px -12px rgba(204, 255, 0, 0.45) !important;
}
.shadow-glow-grape {
  box-shadow: 0 0 70px -18px rgba(0, 200, 5, 0.45) !important;
}

.bg-live {
  background-color: #ccff00 !important;
}
.bg-live\/5 {
  background-color: rgba(204, 255, 0, 0.05) !important;
}
.bg-live\/10 {
  background-color: rgba(204, 255, 0, 0.10) !important;
}
.bg-grape {
  background-color: #00C805 !important;
}
.bg-grape\/20 {
  background-color: rgba(0, 200, 5, 0.20) !important;
}
.text-live {
  color: #ccff00 !important;
}
.text-grape {
  color: #00C805 !important;
}
.border-live {
  border-color: #ccff00 !important;
}
.border-live\/40 {
  border-color: rgba(204, 255, 0, 0.4) !important;
}
.border-grape\/30 {
  border-color: rgba(0, 200, 5, 0.3) !important;
}
.hover\:border-live:hover {
  border-color: #ccff00 !important;
}
.hover\:bg-live\/15:hover {
  background-color: rgba(204, 255, 0, 0.15) !important;
}

.animate-pulse-live {
  animation: pulse-hood 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-hood {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.foil-sheen {
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(204, 255, 0, 0.16) 36%,
    rgba(0, 200, 5, 0.18) 48%,
    rgba(204, 255, 0, 0.16) 60%,
    transparent 80%
  ) !important;
}

.mintrip-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.mintrip-logo span {
  font-family: var(--font-display), var(--font-archivo), ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(
    180deg,
    #f4ffc4 0%,
    #e4ff5c 30%,
    #ccff00 55%,
    #a3cc00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(204, 255, 0, 0.45));
}

.mintrip-logo:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.mintrip-logo img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 14px rgba(204, 255, 0, 0.5));
}

.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.list-decimal { list-style-type: decimal; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }

/* ---- toasts ---- */
[data-hp-toasts] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  pointer-events: none;
}
.hp-toast {
  max-width: min(520px, 92vw);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(204, 255, 0, 0.28);
  background: rgba(12, 14, 8, 0.94);
  backdrop-filter: blur(12px);
  color: #ecffd0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}
.hp-toast.is-in { opacity: 1; transform: translateY(0); }
.hp-toast--ok { border-color: rgba(204, 255, 0, 0.6); }
.hp-toast--warn { border-color: rgba(255, 176, 60, 0.5); color: #ffe9c7; }

/* ---- mobile nav ---- */
.hp-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  border-top: 1px solid var(--color-line, #23232a);
  background: rgba(8, 9, 6, 0.97);
  backdrop-filter: blur(14px);
}
.hp-mobile-nav.is-open { display: flex; }
.hp-mobile-nav a {
  padding: 13px 14px;
  border-radius: 12px;
  color: #cfcfd6;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.hp-mobile-nav a:hover { background: rgba(204, 255, 0, 0.10); color: #ccff00; }
@media (min-width: 768px) {
  .hp-mobile-nav { display: none !important; }
}

/* tight mobile header: mark only, no wordmark */
#wallet-btn { white-space: nowrap; }
@media (max-width: 560px) {
  .mintrip-logo span { display: none; }
  .mintrip-logo img { width: 40px; height: 40px; }
  #wallet-btn { padding: 8px 14px; font-size: 12px; }
}

/* ---- page hero banner ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--color-line, #23232a);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.78) 34%, rgba(0,0,0,0.30) 68%, rgba(0,0,0,0.60) 100%),
    linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.20) 55%, rgba(0,0,0,0.55) 100%);
}
.page-hero-body {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.25rem;
  width: 100%;
}
@media (min-width: 640px) {
  .page-hero { min-height: 320px; }
  .page-hero-body { padding: 3rem; }
}

/* ---- card placeholder slot ---- */
.card-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  aspect-ratio: 21 / 41;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(204, 255, 0, 0.16);
  background:
    repeating-linear-gradient(135deg, rgba(204,255,0,0.03) 0 8px, transparent 8px 16px),
    linear-gradient(180deg, #16180f 0%, #0d0e0a 100%);
  text-align: center;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.card-slot:hover {
  border-color: rgba(204, 255, 0, 0.45);
  transform: translateY(-2px);
}
.card-slot::before {
  content: "HOOD";
  font-family: var(--font-mono), ui-monospace, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(204, 255, 0, 0.45);
}
.card-slot-name {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  color: #e6e6e6;
  padding: 0 2px;
}
.card-slot-rarity {
  font-family: var(--font-mono), ui-monospace, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7c7c85;
}
/* ---- utilities missing from the frozen site.css build ---- */
.max-w-\[900px\] { max-width: 900px; }
.gap-y-3 { row-gap: 0.75rem; }
@media (min-width: 768px) {
  .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.card-slot[data-rarity="legendary"] { border-color: rgba(204,255,0,0.32); }
.card-slot[data-rarity="legendary"] .card-slot-rarity { color: #ccff00; }
.card-slot[data-rarity="epic"] .card-slot-rarity { color: #00C805; }
.card-slot[data-rarity="rare"] .card-slot-rarity { color: #9aa0a6; }

/* card with real art */
.card-slot--art {
  padding: 0;
  gap: 0;
  background: #05060a;
  border-color: rgba(255, 255, 255, 0.10);
}
.card-slot--art::before { content: none; }
.card-slot--art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-slot--art:hover {
  border-color: rgba(204, 255, 0, 0.55);
  transform: translateY(-4px) scale(1.02);
}
.card-slot--art[data-rarity="legendary"]:hover { box-shadow: 0 0 34px -8px rgba(204,255,0,0.55); }
.card-slot--art[data-rarity="epic"]:hover { box-shadow: 0 0 34px -8px rgba(0,200,5,0.5); }
