.nft-page { --gold: #ffc94a; --gold-2: #ff9a2e; }
.page-bg--gold .haze i { background: radial-gradient(circle, rgba(255, 170, 50, .26), rgba(255, 170, 50, 0) 70%); }
.page-bg--gold .haze i:nth-child(2) { background: radial-gradient(circle, rgba(255, 90, 20, .2), rgba(255, 90, 20, 0) 70%); }
.page-bg--gold .page-bg__glow { background: radial-gradient(closest-side, rgba(255, 150, 40, .22), rgba(255, 80, 0, .05) 60%, transparent); }
.nft-page .t-hero { border-bottom: 0; }
.nft-page .t-sec { border-bottom-color: rgba(255, 170, 60, .1); }
.nft-idx { color: var(--gold); }
.gold { color: var(--gold); text-shadow: 0 0 1px rgba(255, 235, 180, .9), 0 0 20px rgba(255, 180, 50, .5), 0 0 70px rgba(255, 120, 0, .3); }

.nft-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 48px; border-top: 1px solid rgba(255, 170, 60, .22); }
.nft-stats > div { padding: 20px 0 0; display: grid; gap: 8px; }
.nft-stats > div + div { padding-left: 22px; border-left: 1px solid rgba(255, 170, 60, .14); }
.nft-stats b { font-size: clamp(40px, 4.6vw, 72px); line-height: .9; font-variant-numeric: tabular-nums; }
.nft-stats .label { color: var(--ink-3); }

.tiers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 28px); }
.tier { display: grid; gap: 14px; text-align: left; cursor: pointer; }
.tier__art { perspective: 900px; }
.tier__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.tier__meta h3 { margin: 0; font-size: clamp(28px, 2.6vw, 40px); }
.tier__meta span { color: var(--ink-3); font-size: 13px; font-variant-numeric: tabular-nums; }
.tier p { margin: 0; color: var(--ink-2); font-size: 13.5px; line-height: 1.55; }
.tier.is-on .tier__meta h3 { color: var(--gold); }
.tier--diamond .tier__meta h3 { color: #bfe8ff; text-shadow: 0 0 16px rgba(140, 210, 255, .5); }

.holo {
  --mx: 50%; --my: 50%; --rx: 0deg; --ry: 0deg; --o: 0;
  position: relative; display: block; border-radius: 3.5% / 2.5%; overflow: hidden; aspect-ratio: 720 / 1056;
  transform: rotateX(var(--rx)) rotateY(var(--ry)); transform-style: preserve-3d;
  transition: transform .5s var(--ease), box-shadow .4s;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .06);
  background: #1a130a;
}
.holo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.holo__shine, .holo__glare { position: absolute; inset: 0; pointer-events: none; opacity: var(--o); transition: opacity .35s; }
.holo__shine {
  background:
    repeating-linear-gradient(115deg, rgba(255, 0, 132, .5) 0%, rgba(252, 164, 0, .5) 6%, rgba(255, 255, 0, .5) 12%, rgba(0, 255, 138, .5) 18%, rgba(0, 207, 255, .5) 24%, rgba(204, 76, 250, .5) 30%, rgba(255, 0, 132, .5) 36%);
  background-size: 300% 300%; background-position: var(--mx) var(--my);
  mix-blend-mode: color-dodge; filter: saturate(1.2) contrast(1.1);
}
.holo__glare { background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, .55), rgba(255, 255, 255, .1) 28%, transparent 55%); mix-blend-mode: overlay; }
.holo.is-live { transition: transform .08s linear, box-shadow .4s; --o: 1; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .9), 0 0 40px -8px rgba(255, 180, 60, .35); }
.holo[data-tier="Diamond"].is-live { box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .9), 0 0 50px -6px rgba(140, 210, 255, .55); }
.holo[data-tier="Gold"].is-live { box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .9), 0 0 50px -6px rgba(255, 200, 60, .5); }
@media (prefers-reduced-motion: reduce) { .holo { transform: none !important; } }

.gbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid rgba(255, 170, 60, .18); }
.gbar__tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.gbar__tabs button { border: 1px solid var(--line-soft); padding: 9px 14px; font: 500 13px var(--f-ui); color: var(--ink-2); transition: border-color .2s, color .2s, background .2s; }
.gbar__tabs button:hover { color: var(--ink); border-color: var(--ink-3); }
.gbar__tabs button.is-on { color: var(--ink); border-color: var(--gold); background: rgba(255, 190, 60, .08); }
.gbar__right { display: flex; align-items: center; gap: 18px; }
.gbar__sort { background: transparent; color: var(--ink); border: 1px solid var(--line-soft); padding: 9px 10px; font: 13px var(--f-ui); }
.gbar__sort option { background: #0c0706; }
.gcount { color: var(--ink-3); margin: 16px 0 18px; }

.ggrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.gcard { display: grid; gap: 12px; text-align: left; perspective: 900px; cursor: pointer; }
.gcard__row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.gcard__name { font: 900 22px/1 var(--f-display); font-variation-settings: "wdth" 62; text-transform: uppercase; }
.gcard__tier { font: 600 10px var(--f-ui); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.gcard__tier.t-Diamond { color: #bfe8ff; } .gcard__tier.t-Gold { color: var(--gold); } .gcard__tier.t-Silver { color: #d6dbe4; } .gcard__tier.t-Bronze { color: #e0a060; }
.gcard__own { color: var(--ink-3); font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gcard__price { font-size: 13px; font-weight: 600; color: var(--ink-3); font-variant-numeric: tabular-nums; white-space: nowrap; }
.gcard__price.is-listed { color: #140a02; background: linear-gradient(90deg, var(--gold-2), var(--gold)); padding: 3px 8px; box-shadow: 0 0 16px rgba(255, 170, 50, .45); }
.gempty { padding: 40px 0; color: var(--ink-3); }

.nft-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 20px; }
.nft-modal[hidden] { display: none; }
.nft-modal__scrim { position: absolute; inset: 0; background: rgba(3, 2, 1, .82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.nft-modal__box { position: relative; width: min(1040px, 100%); max-height: calc(100vh - 40px); overflow: auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: clamp(22px, 4vw, 56px); align-items: center; padding: clamp(20px, 3vw, 40px); border: 1px solid rgba(255, 170, 60, .25); background: linear-gradient(160deg, rgba(40, 24, 8, .96), rgba(8, 5, 3, .97)); box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .9); animation: modalin .35s var(--ease); }
@keyframes modalin { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.nft-modal__x { position: absolute; top: 10px; right: 14px; font-size: 30px; line-height: 1; color: var(--ink-3); z-index: 2; }
.nft-modal__x:hover { color: var(--ink); }
.nft-modal__card { perspective: 1100px; max-width: 420px; width: 100%; justify-self: center; }
.nft-modal__info h3 { font-size: clamp(38px, 4vw, 60px); margin: 10px 0 12px; }
.nft-modal__info p { color: var(--ink-2); font-size: 14.5px; line-height: 1.65; margin: 0 0 18px; }
.nft-modal .facts li b a { color: var(--gold); }
.nft-perks { margin-top: 18px; }
.nft-perks .label { color: var(--gold); display: block; margin-bottom: 8px; }
.nft-perks ul { margin: 0; padding: 0; list-style: none; }
.nft-perks li { position: relative; padding-left: 16px; margin-bottom: 6px; color: var(--ink-2); font-size: 14px; }
.nft-perks li::before { content: ""; position: absolute; left: 2px; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.buy-gold { display: inline-flex; align-items: center; padding: 14px 20px; color: #140a02; background: linear-gradient(90deg, var(--gold-2), var(--gold)); box-shadow: 0 0 30px rgba(255, 170, 50, .45); }
.buy-gold:hover { box-shadow: 0 0 46px rgba(255, 170, 50, .65); }

@media (max-width: 900px) {
  .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nft-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nft-stats > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .nft-modal__box { grid-template-columns: minmax(0, 1fr); }
  .nft-modal__card { max-width: 300px; }
}
@media (max-width: 520px) { .ggrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .gcard__name { font-size: 18px; } }

.volt-page { --volt: #ff3fa4; --zap: #ff8fcb; }
.page-bg--volt .haze i, .page-bg--volt .haze i:nth-child(2) { background: radial-gradient(circle, rgba(255, 63, 164, .16), rgba(255, 63, 164, 0) 70%); }
.page-bg--volt .page-bg__glow { background: radial-gradient(closest-side, rgba(255, 63, 164, .14), rgba(255, 63, 164, .03) 60%, transparent); }
.volt-page .t-sec { border-bottom-color: rgba(255, 63, 164, .1); }
.volt-idx { color: var(--zap); }
.volt { color: var(--volt); text-shadow: 0 0 1px rgba(255, 200, 230, .9), 0 0 18px rgba(255, 63, 164, .55), 0 0 60px rgba(255, 63, 164, .25); }
.volt-page .nft-stats { border-top-color: rgba(255, 63, 164, .22); }
.volt-page .nft-stats > div + div { border-left-color: rgba(255, 63, 164, .14); }

.volt-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.volt-feature { perspective: 1200px; max-width: 380px; width: 100%; justify-self: center; }
.holo--volt { box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .9), 0 0 60px -14px rgba(255, 63, 164, .45), 0 0 0 1px rgba(255, 63, 164, .22); }
.volt-page .holo.is-live { box-shadow: 0 34px 70px -22px rgba(0, 0, 0, .95), 0 0 60px -10px rgba(255, 63, 164, .55); }
.volt-page .holo:not(.is-live) .holo__shine { opacity: .22; animation: idleholo 7s ease-in-out infinite alternate; }
.volt-page .holo:not(.is-live) .holo__glare { opacity: .35; animation: idleglare 9s ease-in-out infinite alternate; background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .45), rgba(255, 255, 255, .08) 30%, transparent 55%); }
@keyframes idleholo { from { background-position: 0% 30%; } to { background-position: 100% 70%; } }
@keyframes idleglare { from { transform: translate(-6%, -4%); } to { transform: translate(8%, 10%); } }
@media (prefers-reduced-motion: reduce) { .volt-page .holo__shine, .volt-page .holo__glare { animation: none !important; } }

.volt-stack { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid rgba(255, 63, 164, .2); }
.volt-stack > div { position: relative; padding: 26px 24px 30px; display: grid; gap: 10px; }
.volt-stack > div + div { border-left: 1px solid rgba(255, 63, 164, .16); }
.volt-stack .label { color: var(--zap); }
.volt-stack b { font-size: clamp(56px, 6vw, 96px); line-height: .85; }
.volt-stack p { margin: 0; color: var(--ink-2); font-size: 14px; }
.volt-stack i { position: absolute; left: 24px; right: 24px; bottom: 14px; height: 3px; background: rgba(255, 255, 255, .06); }
.volt-stack i::before { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--w); background: var(--volt); box-shadow: 0 0 12px rgba(255, 63, 164, .55); }

.volt-page .gcard__price.is-listed { background: var(--volt); color: #1a0010; box-shadow: 0 0 16px rgba(255, 63, 164, .45); }
.volt-page .gbar { border-bottom-color: rgba(255, 63, 164, .18); }
.volt-page .gbar__tabs button.is-on { border-color: var(--volt); background: rgba(255, 63, 164, .08); }
.volt-page .buy-gold { background: var(--volt); color: #1a0010; box-shadow: 0 0 30px rgba(255, 63, 164, .45); }
.volt-page .nft-perks .label { color: var(--zap); }
.volt-page .nft-modal .facts li b a { color: var(--volt); }
.volt-page .nft-perks li::before { background: var(--volt); box-shadow: 0 0 6px var(--volt); }
.volt-page .nft-modal__box { border-color: rgba(255, 63, 164, .25); background: linear-gradient(160deg, rgba(34, 8, 24, .96), rgba(9, 3, 7, .97)); }
.volt-page .gcard__tier { color: var(--volt); }
@media (max-width: 900px) {
  .volt-hero { grid-template-columns: minmax(0, 1fr); }
  .volt-feature { max-width: 280px; }
  .volt-stack { grid-template-columns: minmax(0, 1fr); }
  .volt-stack > div + div { border-left: 0; border-top: 1px solid rgba(255, 63, 164, .16); }
}
.uni-page { --r-c: #00c4f9; --r-r: hsl(125, 85%, 50%); --r-e: hsl(48, 90%, 55%); --r-l: hsl(40, 95%, 60%); }
.uni-page .r-COMMON { --rc: var(--r-c); } .uni-page .r-RARE { --rc: var(--r-r); } .uni-page .r-EPIC { --rc: var(--r-e); } .uni-page .r-LEGENDARY { --rc: var(--r-l); }
.uni-filters { flex-wrap: wrap; gap: 10px; }
.uni-search { width: 180px; }
.uni-search::placeholder { color: var(--ink-3); }
.uni-bound { display: inline-block; font: 600 10px var(--f-ui); letter-spacing: .12em; text-transform: uppercase; padding: 3px 7px; color: var(--ink-2); border: 1px solid var(--ink-3); background: rgba(8, 5, 3, .85); vertical-align: 1px; }
.uni-empty { color: var(--ink-3); grid-column: 1 / -1; padding: 40px 0; }
.uni-market { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(24px, 5vw, 80px); align-items: end; }
.uni-market p { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin: 0 0 14px; max-width: 560px; }
.uni-modal { align-items: start; }
.uni-lock { color: var(--ink-2); font-size: 13.5px; line-height: 1.6; padding: 12px 14px; margin: 0 0 18px; border: 1px solid var(--line-soft); background: rgba(255, 255, 255, .02); }
.uni-copies__h { color: var(--ink-3); margin: 22px 0 10px; }
.uni-copies { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 6px; max-height: 220px; overflow: auto; }
.uni-copies a { display: flex; justify-content: space-between; gap: 6px; padding: 7px 9px; font-size: 12px; border: 1px solid var(--line-soft); color: var(--ink-3); font-variant-numeric: tabular-nums; transition: border-color .2s, color .2s; }
.uni-copies a b { color: var(--ink); font-weight: 600; }
.uni-copies a:hover { border-color: var(--gold); color: var(--ink-2); }
@media (max-width: 900px) {
  .uni-market { grid-template-columns: minmax(0, 1fr); }
  .gbar__right.uni-filters { width: 100%; }
  .uni-search { flex: 1 1 100%; width: auto; }
}
.uni-hero-logo { margin: 18px 0 26px; font-size: 0; }
.uni-hero-logo .uni-logo { width: clamp(280px, 48vw, 680px); }

.ugrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(214px, 1fr)); gap: clamp(12px, 1.4vw, 18px); }
.ucard { position: relative; display: flex; flex-direction: column; text-align: left; cursor: pointer; border-radius: 12px; background: linear-gradient(180deg, #1c1511, #120d0a); box-shadow: 0 14px 30px -18px rgba(0, 0, 0, .9); transition: background .3s; }
.ucard:hover { background: linear-gradient(180deg, #231a14, #140f0b); }
.ucard__stage { position: relative; display: grid; place-items: center; padding: 16px 30px 4px; perspective: 700px; }
.ucard__nft { --mx: 50%; --my: 50%; --rx: 0deg; --ry: 0deg; --o: 0; position: relative; display: block; width: 100%; aspect-ratio: 1; border-radius: 3.2%; overflow: hidden; isolation: isolate; transform: rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .5s var(--ease), box-shadow .35s; }
.ucard__nft.is-live { --o: 1; transition: transform .08s linear, box-shadow .35s; }
.ucard__nft img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ucard__body { display: grid; gap: 6px; padding: 12px 14px 12px; }
.ucard__kind { display: flex; align-items: center; gap: 7px; font: 600 10px var(--f-ui); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.ucard__kind i { width: 7px; height: 7px; background: var(--rc); box-shadow: 0 0 8px var(--rc); }
.ucard__name { font: 700 15px/1.2 var(--f-ui); color: var(--ink); min-height: 2.4em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ucard__big { display: flex; align-items: baseline; gap: 6px; }
.ucard__big b { font: 900 22px/1 var(--f-display); font-variation-settings: "wdth" 62; font-variant-numeric: tabular-nums; }
.ucard__big small { color: var(--ink-3); font-size: 11.5px; }
.ucard__big em { margin-left: auto; font-style: normal; font-size: 11.5px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.ucard__bar { position: relative; height: 4px; margin: 8px 0 2px; border-radius: 2px; background: rgba(255, 255, 255, .08); }
.ucard__bar i { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 2px; background: linear-gradient(90deg, color-mix(in srgb, var(--rc) 55%, transparent), var(--rc)); }
.ucard__bar b { position: absolute; top: -7px; width: 0; height: 0; margin-left: -5px; border: 5px solid transparent; border-top-color: var(--ink); border-bottom: 0; }
.ucard__bar.is-open i { background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .14) 0 6px, transparent 6px 10px); }
.ucard__bar.is-open b { display: none; }
.ucard__sub { font-size: 11.5px; color: color-mix(in srgb, var(--rc) 75%, var(--ink)); font-variant-numeric: tabular-nums; }
.ucard__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, .05); font-size: 11.5px; }
.ucard__st { display: inline-flex; align-items: center; gap: 7px; color: var(--gold); font-weight: 600; }
.ucard__st i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px rgba(255, 201, 74, .6); }
.ucard__st.is-bound { color: var(--ink-3); }
.ucard__st.is-bound i { background: none; box-shadow: inset 0 0 0 1.5px var(--ink-3); }
.ucard__ic { display: flex; gap: 8px; color: var(--ink-3); font: 700 10px var(--f-ui); letter-spacing: .06em; }
.ucard__ic i { font-style: normal; }


.uni-modal__art { --mx: 50%; --my: 50%; --rx: 0deg; --ry: 0deg; --o: 0; position: relative; aspect-ratio: 1; max-width: 440px; width: 100%; height: auto; align-self: start; justify-self: center; border-radius: 3.2%; overflow: hidden; isolation: isolate; transform: rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .5s var(--ease), box-shadow .35s; }
.uni-modal__art.is-live { --o: 1; transition: transform .08s linear, box-shadow .35s; }
.uni-modal__art img { display: block; width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 520px) { .ugrid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .ucard__body { padding: 10px 11px; } .ucard__name { font-size: 13.5px; } .ucard__big em { display: none; } }
@media (prefers-reduced-motion: reduce) { .ucard__nft, .uni-modal__art { transform: none !important; } }
.ucard__shine, .ucard__glare { position: absolute; inset: 0; pointer-events: none; opacity: calc(var(--o) * .55); transition: opacity .35s; z-index: 2; border-radius: inherit; }
.ucard__glare { background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, .35), rgba(255, 255, 255, .05) 35%, transparent 60%); mix-blend-mode: soft-light; }
.ucard__shine { background-size: 240% 240%; background-position: var(--mx) var(--my); mix-blend-mode: soft-light; }
.r-COMMON .ucard__shine { background-image: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .5) 50%, transparent 62%); }
.r-RARE .ucard__shine { background-image: linear-gradient(115deg, transparent 30%, rgba(110, 180, 255, .55) 45%, rgba(200, 235, 255, .6) 50%, rgba(110, 180, 255, .55) 55%, transparent 70%); }
.r-EPIC .ucard__shine { background-image: linear-gradient(115deg, transparent 20%, rgba(255, 90, 200, .5) 35%, rgba(170, 120, 255, .55) 45%, rgba(90, 200, 255, .5) 55%, rgba(200, 110, 255, .5) 65%, transparent 80%); }
.r-LEGENDARY .ucard__shine { background-image: linear-gradient(115deg, transparent 25%, rgba(255, 190, 60, .55) 40%, rgba(255, 240, 180, .7) 50%, rgba(255, 190, 60, .55) 60%, transparent 75%); }
.holo--sq { aspect-ratio: 1; border-radius: 4%; }
.holo video { width: 100%; height: 100%; object-fit: cover; display: block; }
.holo video[hidden], .holo img[hidden] { display: none; }
.miner-page { --gold: #ffb23e; --gold-2: #ff8a1f; }
.miner-hero { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end; }
.miner-title { justify-items: start; text-align: left; margin: 12px 0 0; }
.miner-title .miner-logo__grid, .miner-title .miner-logo__miner { font-size: clamp(76px, 10vw, 150px); }
.miner-title .miner-logo__sub { font-size: clamp(26px, 2.8vw, 42px); }
.miner-play { display: grid; gap: 6px; padding: 20px 24px; border: 1px solid rgba(255, 178, 62, .4); background: rgba(255, 178, 62, .06); transition: background .25s, border-color .25s; }
.miner-play:hover { background: rgba(255, 178, 62, .12); border-color: #ffb23e; }
.miner-play .label { color: var(--ink-3); }
.miner-play b { font-size: 30px; color: #ffb23e; }
.miner-legend { display: flex; flex-wrap: wrap; gap: 8px; margin: -8px 0 22px; }
.miner-legend span { padding: 4px 10px; border-radius: 999px; background: color-mix(in srgb, currentColor 17%, transparent); font-size: 10.5px; font-weight: 800; letter-spacing: .05em; }
.r-common { color: #00c4f9; } .r-uncommon { color: hsl(163, 85%, 58%); } .r-rare { color: hsl(125, 85%, 50%); } .r-epic { color: hsl(48, 90%, 55%); } .r-legendary { color: hsl(40, 95%, 60%); }
.miner-page .gcard__tier { letter-spacing: 0; font-size: 11px; }
.miner-page .gcard__tier.t-Common { color: #00c4f9; } .miner-page .gcard__tier.t-Uncommon { color: hsl(163, 85%, 58%); } .miner-page .gcard__tier.t-Rare { color: hsl(125, 85%, 50%); } .miner-page .gcard__tier.t-Epic { color: hsl(48, 90%, 55%); } .miner-page .gcard__tier.t-Legendary { color: hsl(40, 95%, 60%); }
.miner-page .holo[data-tier="Rare"].is-live { box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .9), 0 0 40px -8px rgba(61, 220, 90, .45); }
.miner-page .holo[data-tier="Uncommon"].is-live { box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .9), 0 0 40px -8px rgba(46, 230, 176, .4); }
.miner-page .holo[data-tier="Common"].is-live { box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .9), 0 0 40px -8px rgba(58, 184, 255, .4); }
@media (max-width: 900px) { .miner-hero { grid-template-columns: minmax(0, 1fr); } }

.gcard, .gcard__row, .gcard__name { min-width: 0; }
.gcard__name { overflow-wrap: anywhere; }
@media (max-width: 520px) {
  .gcard__row { flex-wrap: wrap; row-gap: 4px; }
  .gcard__row:last-child { flex-direction: column; align-items: flex-start; }
  .gcard__own { max-width: 100%; }
  .gcard__tier { white-space: normal; }
  .nft-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nft-stats > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .nft-stats > div { padding-top: 16px; }
  .miner-legend span { font-size: 9.5px; }
  .miner-title .miner-logo__grid, .miner-title .miner-logo__miner { font-size: clamp(56px, 20vw, 110px); }
  .miner-play b { font-size: 24px; }
}
.tier, .tier__meta { min-width: 0; }
.tier__meta { flex-wrap: wrap; row-gap: 2px; }
@media (max-width: 520px) { .tier__meta h3 { font-size: 24px; } .tier p { font-size: 12.5px; } }

.y1-pink { color: #ff3fa4; text-shadow: 0 0 1px rgba(255, 190, 225, .9), 0 0 18px rgba(255, 63, 164, .6), 0 0 60px rgba(255, 63, 164, .3); }
.volt-page .holo.is-live .holo__shine { opacity: .5; mix-blend-mode: soft-light; background: linear-gradient(115deg, transparent 25%, rgba(255, 90, 190, .7) 42%, rgba(255, 220, 245, .8) 50%, rgba(255, 90, 190, .7) 58%, transparent 75%); background-size: 250% 250%; background-position: var(--mx) var(--my); filter: none; }
.volt-page .holo.is-live .holo__glare { opacity: .45; background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, .35), rgba(255, 255, 255, .05) 35%, transparent 60%); mix-blend-mode: soft-light; }
.volt-page .holo.is-live { box-shadow: 0 26px 50px -22px rgba(0, 0, 0, .9), 0 0 34px -12px rgba(255, 63, 164, .45); }
.y1-buy { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.y1-buy__btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 24px; background: #ff3fa4; color: #1a0010; font: 700 13px var(--f-ui); letter-spacing: .14em; text-transform: uppercase; box-shadow: 0 0 0 1px rgba(255, 200, 230, .5) inset, 0 0 34px rgba(255, 63, 164, .5); transition: background .2s, box-shadow .25s, transform .25s var(--ease); }
.y1-buy__btn span { letter-spacing: .06em; opacity: .85; }
.y1-buy__btn i { font-style: normal; }
.y1-buy__btn:hover { background: #ff5cb3; box-shadow: 0 0 0 1px rgba(255, 220, 240, .8) inset, 0 0 50px rgba(255, 63, 164, .7); transform: translateY(-2px); }
.y1-buy__note { color: var(--ink-3); font-size: 13px; max-width: 320px; line-height: 1.5; }
