@font-face {
  font-family: "Tiny5";
  src: url("assets/Tiny5-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #17131f;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.065);
  --ink: #f5f0ff;
  --muted: #a99db8;
  --line: rgba(188, 176, 210, 0.18);
  --line-strong: rgba(188, 176, 210, 0.32);
  --green: #76ee45;
  --gold: #ffc24b;
  --pink: #df3a9b;
  --cyan: #5fc7d9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(223, 58, 155, 0.1), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(118, 238, 69, 0.08), transparent 25rem),
    var(--bg);
  color: var(--ink);
  font-family: "Tiny5", Arial, sans-serif;
  letter-spacing: 0;
}

button,
a {
  font: inherit;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--green);
}

button {
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.market-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px max(16px, calc((100% - 1320px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(23, 19, 31, 0.9);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
}

.brand img {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  image-rendering: pixelated;
}

.market-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  overflow-x: auto;
  white-space: nowrap;
}

.market-header nav a {
  color: var(--muted);
}

.market-header nav a:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 34px;
  min-height: 34px;
  padding: 7px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.raffle-callout {
  display: inline-block;
  justify-self: end;
  color: #ff2323;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.raffle-callout:hover {
  animation: raffleWiggle 0.42s steps(2, end) infinite;
  color: #ff6b57;
}

@keyframes raffleWiggle {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  25% {
    transform: translateX(-2px) rotate(-2deg);
  }

  50% {
    transform: translateX(2px) rotate(2deg);
  }

  75% {
    transform: translateX(-1px) rotate(-1deg);
  }
}

main,
footer {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-dashboard,
.about-section,
.stats-section,
.map-section,
.split-section,
.details-section {
  margin: clamp(22px, 4vw, 52px) 0;
}

.hero-dashboard {
  display: block;
  min-height: 0;
  padding: clamp(34px, 7vw, 82px) 0 clamp(22px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}

.hero-copy h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.55vw, 1.15rem);
  line-height: 1.35;
}

.about-section {
  padding-top: 18px;
}

.about-copy {
  max-width: 920px;
}

.about-copy h2 {
  margin: 0 0 16px;
  max-width: 780px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  line-height: 1.42;
}

.about-copy p + p {
  margin-top: 14px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-punk-grid {
  display: grid;
  grid-template-columns: repeat(15, minmax(0, 1fr));
  gap: 5px;
  width: 100%;
  margin-top: 22px;
}

.hero-punk-grid a {
  display: block;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-punk-grid a:hover {
  border-color: var(--green);
}

.hero-punk-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: pixelated;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
}

.primary-action {
  background: var(--cyan);
  color: #111018;
}

.primary-action:hover {
  color: #111018;
  filter: brightness(1.08);
}

.secondary-action {
  background: transparent;
  color: var(--ink);
}

.holder-action {
  background: var(--green);
  color: #111018;
}

.holder-action:hover {
  color: #111018;
  filter: brightness(1.08);
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-panel div,
.stat-card,
.trait-card {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 11px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero-panel span,
.stat-card span,
.trait-card span,
.activity-row span,
.rank-row span,
.listing-card span {
  color: var(--muted);
  text-transform: uppercase;
}

.hero-panel strong,
.stat-card strong,
.trait-card strong {
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 0.95;
}

.stat-value {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.stat-value small {
  color: var(--muted);
}

.stats-section,
.details-section,
.market-card {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-copy {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.compact-card .section-head {
  margin-bottom: 8px;
}

.compact-card .section-head h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.compact-card .eyebrow {
  margin-bottom: 3px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.map-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.map-toolbar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.map-toolbar span {
  margin-left: auto;
  color: var(--muted);
}

.punk-map {
  position: relative;
  height: min(74vh, 780px);
  min-height: 430px;
  overflow: hidden;
  background: #0f0c15;
  cursor: grab;
  touch-action: none;
}

.punk-map:active {
  cursor: grabbing;
}

.punk-map img {
  position: absolute;
  top: 0;
  left: 0;
  width: 4800px;
  height: 4800px;
  max-width: none;
  image-rendering: pixelated;
  transform-origin: 0 0;
  user-select: none;
}

.punk-search-section {
  margin: clamp(22px, 4vw, 52px) 0;
}

.main-search-tool {
  display: grid;
  gap: 10px;
}

.main-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
}

.main-search-row input {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font: inherit;
}

.main-search-row input::placeholder {
  color: rgba(245, 240, 255, 0.48);
}

.main-search-row button {
  min-width: 92px;
  border-color: var(--green);
  background: var(--green);
  color: #111;
}

.main-search-results {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
}

.main-search-results a,
.main-search-results span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  color: var(--gold);
}

.main-search-results a.main-search-result-card {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 40px;
  padding: 5px 8px 5px 5px;
}

.main-search-result-card img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: cover;
  image-rendering: pixelated;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 56px);
}

.market-stack {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  margin: clamp(22px, 4vw, 52px) 0;
}

.rank-list,
.activity-list,
.holder-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.holder-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
  width: 100%;
}

.top-sales-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  width: 100%;
}

.top-sale-card {
  display: grid;
  gap: 4px;
  color: var(--ink);
}

.top-sale-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #6d8797;
}

.top-sale-image span {
  position: absolute;
  top: 6px;
  left: 8px;
  z-index: 1;
  color: var(--ink);
  font-size: 0.92rem;
}

.top-sale-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

.top-sale-card strong {
  margin-top: 3px;
  color: var(--pink);
  font-size: 0.84rem;
  line-height: 1;
}

.top-sale-card span {
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1;
}

.top-sale-card small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.1;
}

.rank-row,
.activity-row {
  display: grid;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.rank-row {
  grid-template-columns: 34px 40px minmax(0, 1fr) 80px 82px minmax(86px, auto);
}

.activity-row {
  grid-template-columns: 40px minmax(0, 1fr) auto;
}

.holder-head,
.holder-row {
  display: grid;
  grid-template-columns: 34px minmax(130px, 0.74fr) minmax(92px, 142px) 62px;
  gap: 10px;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
}

.holder-head {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.holder-row {
  min-height: 44px;
}

.holder-wallet {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  color: inherit;
}

.holder-rank {
  color: var(--muted);
  font-size: 0.78rem;
}

.holder-rank-medal {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 1rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255, 194, 75, 0.28));
}

.holder-avatar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  flex: 0 0 28px;
  width: 28px;
  aspect-ratio: 1;
  padding: 3px;
  background: #ece8df;
}

.holder-avatar span {
  display: block;
}

.holder-wallet div {
  display: grid;
  gap: 0;
  min-width: 0;
}

.holder-wallet span,
.holder-row span {
  color: var(--muted);
  text-transform: uppercase;
}

.holder-row strong {
  color: var(--ink);
}

.holder-owned {
  position: relative;
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  overflow: hidden;
}

.holder-owned span {
  position: absolute;
  inset: 0 auto 0 0;
  min-width: 22px;
  border-radius: 3px;
  background: rgba(79, 177, 102, 0.22);
}

.holder-owned strong {
  position: relative;
  z-index: 1;
}

.holder-percent {
  text-align: right;
  white-space: nowrap;
}

.holder-head span:last-child {
  text-align: right;
}

.empty-note {
  margin: 0;
  padding: 14px 0;
  color: var(--muted);
}

.rank-row img,
.activity-row img,
.listing-card img {
  width: 40px;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: pixelated;
}

.rank-row,
.activity-row,
.listing-card,
.detail-grid p,
footer {
  font-size: 0.95rem;
}

.rank-row strong,
.activity-row strong,
.listing-card strong {
  color: var(--ink);
}

.compare-tool {
  display: grid;
  gap: 12px;
}

.compare-tool > p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.compare-control-row {
  display: grid;
  grid-template-columns: minmax(86px, 130px) minmax(0, 220px);
  gap: 10px;
  align-items: stretch;
  max-width: 360px;
}

.compare-control-row input {
  width: 100%;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font: inherit;
  padding: 6px 9px;
}

.compare-control-row input::placeholder {
  color: var(--muted);
  opacity: 1;
  text-transform: uppercase;
}

.compare-status {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  background: rgba(79, 177, 102, 0.18);
  color: var(--ink);
  font-size: 0.78rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  gap: 12px;
}

.compare-grid article {
  display: grid;
  gap: 6px;
}

.compare-grid article > span {
  color: var(--gold);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.compare-grid a {
  display: block;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.compare-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  image-rendering: pixelated;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.listing-card {
  display: grid;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.listing-card img {
  width: 100%;
  border: 1px solid var(--line);
}

.listing-card strong {
  color: var(--pink);
  font-size: 0.84rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.detail-grid article {
  padding: 0;
}

.detail-grid span {
  color: var(--gold);
}

.detail-grid h3 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 1.15rem;
}

.detail-grid p,
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 20px);
  max-width: 940px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.perk-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(138, 125, 158, 0.62);
  border-radius: 6px;
  background: #30293d;
  color: var(--gold);
  box-shadow: 6px 6px 0 rgba(9, 7, 14, 0.42);
  transition: transform 160ms ease, border-color 160ms ease;
}

.perk-card:hover {
  transform: translate(-2px, -2px);
  border-color: rgba(255, 188, 74, 0.8);
}

.perk-card-disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.48;
}

.perk-card-disabled:hover {
  transform: none;
  border-color: rgba(138, 125, 158, 0.62);
}

.perk-art {
  position: relative;
  aspect-ratio: 1.05;
  overflow: hidden;
  background: #71858d;
}

.perk-art span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  color: var(--gold);
  font-size: clamp(0.72rem, 1.55vw, 1.1rem);
  line-height: 1;
}

.perk-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  image-rendering: pixelated;
}

.perk-copy {
  min-height: clamp(74px, 8.8vw, 106px);
  padding: clamp(12px, 1.8vw, 18px);
}

.perk-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1rem, 2.45vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.perk-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: clamp(0.65rem, 1.15vw, 0.84rem);
  line-height: 1.2;
}

.site-footer {
  padding: clamp(28px, 5vw, 52px) 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(130px, 0.72fr));
  gap: clamp(22px, 5vw, 72px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
}

.footer-logo img {
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  image-rendering: pixelated;
}

.footer-logo strong,
.footer-links strong {
  color: var(--ink);
}

.footer-brand p {
  max-width: 34ch;
  margin: 14px 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a,
.footer-socials span {
  display: inline-grid;
  width: 28px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(138, 125, 158, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.footer-socials img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-socials .footer-icon-x {
  transform: scale(1.32);
}

.footer-socials .footer-icon-discord {
  transform: scale(1.2);
}

.footer-socials span {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.45;
}

.footer-links {
  display: grid;
  align-content: start;
  justify-content: start;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links span {
  opacity: 0.55;
}

.footer-disclaimer {
  margin: 22px 0 0;
  max-width: 82ch;
  color: var(--muted);
}

@media (max-width: 900px) {
  .market-header,
  .hero-dashboard,
  .about-section,
  .split-section,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .market-header {
    justify-items: center;
    gap: 10px;
  }

  .brand {
    justify-content: center;
  }

  .market-header nav {
    justify-content: center;
    width: 100%;
  }

  .raffle-callout {
    justify-self: center;
  }

  .hero-dashboard {
    min-height: auto;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  main,
  footer {
    width: min(100% - 20px, 1320px);
  }

  .brand span {
    display: none;
  }

  .market-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-inline: 12px;
  }

  .menu-toggle {
    display: grid;
    align-content: space-between;
    justify-self: end;
  }

  .market-header nav,
  .raffle-callout {
    display: none;
  }

  .market-header[data-menu-open="true"] nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    width: 100%;
    gap: 0;
    overflow: visible;
  }

  .market-header[data-menu-open="true"] nav a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .market-header[data-menu-open="true"] .raffle-callout {
    display: inline-block;
    grid-column: 1 / -1;
    justify-self: start;
    padding: 12px 0 4px;
  }

  .raffle-callout {
    font-size: 0.72rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand p {
    max-width: none;
  }

  .hero-panel,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .compare-control-row {
    grid-template-columns: minmax(72px, 0.72fr) minmax(0, 1fr);
    gap: 8px;
  }

  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .listing-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
  }

  .listing-card {
    gap: 3px;
    font-size: 0.62rem;
  }

  .perks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .perk-copy {
    min-height: 62px;
    padding: 8px;
  }

  .perk-card strong {
    font-size: clamp(0.58rem, 4.1vw, 0.9rem);
  }

  .perk-copy p {
    margin-top: 4px;
    font-size: clamp(0.5rem, 2.8vw, 0.62rem);
  }

  .perk-art span {
    top: 6px;
    left: 6px;
    font-size: clamp(0.52rem, 3.2vw, 0.75rem);
  }

  .hero-punk-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .main-search-row {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 34px 42px minmax(0, 1fr);
  }

  .top-sales-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
  }

  .top-sale-card {
    gap: 2px;
  }

  .top-sale-image span {
    top: 3px;
    left: 4px;
    font-size: 0.58rem;
  }

  .top-sale-card strong {
    margin-top: 2px;
    font-size: 0.55rem;
  }

  .top-sale-card span,
  .top-sale-card small {
    display: none;
  }

  .rank-row > :last-child,
  .activity-row > :last-child {
    grid-column: 2 / -1;
  }

  .activity-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .holder-row {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 6px;
    padding: 8px 0;
  }

  .holder-head {
    display: none;
  }

  .holder-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .holder-avatar {
    flex-basis: 24px;
    width: 24px;
    padding: 3px;
  }

  .holder-wallet {
    gap: 6px;
  }

  .holder-owned,
  .holder-percent {
    grid-column: 2 / -1;
  }

  .holder-owned {
    min-height: 24px;
    max-width: none;
  }

  .holder-percent {
    font-size: 0.72rem;
  }

  .punk-map {
    min-height: 340px;
  }
}
