:root {
  color-scheme: dark;
  --bg: #050403;
  --bg-2: #0b0906;
  --surface: rgba(14, 12, 9, 0.97);
  --surface-2: rgba(20, 17, 12, 0.95);
  --surface-3: rgba(9, 8, 6, 0.94);
  --panel: rgba(14, 12, 9, 0.97);
  --field: rgba(6, 5, 4, 0.76);
  --line: rgba(215, 174, 91, 0.14);
  --line-strong: rgba(219, 174, 82, 0.5);
  --text: #f7f1df;
  --muted: #a99f88;
  --faint: #746b5a;
  --gold: #d8ad58;
  --gold-strong: #f2d58a;
  --green: #55d68b;
  --green-strong: #81f0ab;
  --teal: #b9904a;
  --red: #e45d5d;
  --red-soft: rgba(228, 93, 93, 0.14);
  --ink: #070807;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.32);
  --display-font: "Space Grotesk", Inter, "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans Devanagari", sans-serif;
  font-family: Inter, "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans Devanagari", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(216, 173, 88, 0.105), transparent 330px),
    linear-gradient(135deg, #050403 0%, #0b0906 50%, #140f08 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(242, 213, 138, 0.012) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(242, 213, 138, 0.01) 0 1px, transparent 1px 120px);
  opacity: 0.34;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.app-shell {
  position: relative;
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 18px 22px 30px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(215, 174, 91, 0.16);
  border-radius: 8px;
  background: rgba(7, 6, 4, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 126px;
  height: 42px;
  flex: 0 0 126px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding-left: 12px;
  border-left: 1px solid rgba(231, 235, 226, 0.14);
}

.brand strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--display-font);
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(231, 235, 226, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.desktop-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav a:hover {
  color: var(--text);
  border-color: rgba(216, 173, 88, 0.34);
  background: rgba(216, 173, 88, 0.09);
}

.desktop-nav a.active {
  color: var(--ink);
  border-color: rgba(242, 219, 154, 0.7);
  background: linear-gradient(180deg, #f5dda1 0%, #d5a746 100%);
}

.wallet-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  min-width: 0;
}

.language-control,
.wallet-control,
.status-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 12px;
}

.language-control span,
.wallet-control span {
  white-space: nowrap;
}

.language-control select,
.wallet-control select {
  min-width: 94px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-weight: 750;
}

.wallet-control select {
  min-width: 118px;
}

.language-control option,
.wallet-control option {
  color: #111;
}

.status-pill {
  color: var(--green-strong);
  font-weight: 850;
}

.button,
.icon-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid rgba(242, 219, 154, 0.72);
  background: linear-gradient(180deg, #f5dda1 0%, #d5a746 100%);
  color: var(--ink);
  padding: 0 16px;
  box-shadow: 0 12px 28px rgba(231, 193, 108, 0.18);
}

.button-secondary {
  border: 1px solid rgba(216, 173, 88, 0.34);
  background: rgba(216, 173, 88, 0.08);
  color: var(--gold-strong);
  padding: 0 14px;
}

.button-ghost {
  border: 1px solid rgba(231, 235, 226, 0.14);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  padding: 0 12px;
}

.icon-button {
  width: 40px;
  border: 1px solid rgba(231, 235, 226, 0.13);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 17px;
}

.collection-hero {
  min-height: 276px;
  display: grid;
  grid-template-columns: minmax(150px, 200px) minmax(0, 1fr) minmax(300px, 460px);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(231, 235, 226, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.98), rgba(13, 17, 17, 0.92) 54%, rgba(17, 13, 12, 0.9)),
    url("https://anubis.origindefi.io/assets/claim-nft/red-gold.png") right 1% center / 320px auto no-repeat,
    #090b0b;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.collection-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(216, 173, 88, 0.08) 52%, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 36%);
  opacity: 0.78;
}

.collection-media,
.collection-copy,
.collection-stats {
  position: relative;
  z-index: 1;
}

.collection-media {
  min-height: 238px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 193, 108, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 44%, rgba(242, 219, 154, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(231, 193, 108, 0.11), transparent 46%),
    rgba(0, 0, 0, 0.46);
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -28px 80px rgba(0, 0, 0, 0.38),
    0 22px 58px rgba(0, 0, 0, 0.42);
}

.collection-media::before,
.collection-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.collection-media::before {
  inset: 14px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 48% 38%, rgba(255, 242, 196, 0.22), transparent 26%),
    linear-gradient(112deg, transparent 4%, rgba(255, 255, 255, 0.05) 34%, rgba(242, 219, 154, 0.16) 48%, rgba(216, 173, 88, 0.1) 56%, transparent 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 58%);
  opacity: 0.7;
  transform: translateZ(-1px);
  animation: stageSweep 7.5s ease-in-out infinite;
}

.collection-media::after {
  left: 50%;
  bottom: 22px;
  width: 66%;
  height: 18px;
  border: 1px solid rgba(231, 193, 108, 0.42);
  border-radius: 999px;
  background: rgba(216, 173, 88, 0.08);
  box-shadow: 0 0 28px rgba(231, 193, 108, 0.16), inset 0 0 16px rgba(216, 173, 88, 0.12);
  transform: translateX(-50%) rotateX(62deg);
  animation: platformPulse 4.8s ease-in-out infinite;
}

.collection-media img {
  width: min(calc(100% - 22px), 174px);
  height: calc(100% - 22px);
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  backface-visibility: visible;
  filter:
    contrast(1.04)
    saturate(1.08)
    brightness(1.03)
    drop-shadow(0 18px 18px rgba(231, 193, 108, 0.1))
    drop-shadow(0 30px 38px rgba(0, 0, 0, 0.5));
  animation: featuredNftTurntable 22s linear infinite;
  will-change: transform, filter;
}

@keyframes featuredNftTurntable {
  0% {
    transform: rotateX(2deg) rotateY(-18deg) translateY(0) scale(0.98);
    filter: contrast(1.04) saturate(1.08) brightness(1.03) drop-shadow(0 18px 18px rgba(231, 193, 108, 0.1)) drop-shadow(0 30px 38px rgba(0, 0, 0, 0.5));
  }

  25% {
    transform: rotateX(1deg) rotateY(72deg) translateY(-5px) scale(1);
    filter: contrast(1.06) saturate(1.1) brightness(1.08) drop-shadow(10px 18px 20px rgba(242, 219, 154, 0.14)) drop-shadow(8px 34px 42px rgba(0, 0, 0, 0.52));
  }

  50% {
    transform: rotateX(0deg) rotateY(162deg) translateY(0) scale(0.98);
    filter: contrast(1.03) saturate(1.05) brightness(0.98) drop-shadow(0 14px 18px rgba(216, 173, 88, 0.08)) drop-shadow(0 24px 32px rgba(0, 0, 0, 0.44));
  }

  75% {
    transform: rotateX(1deg) rotateY(252deg) translateY(-5px) scale(1);
    filter: contrast(1.06) saturate(1.1) brightness(1.08) drop-shadow(-10px 18px 20px rgba(242, 219, 154, 0.14)) drop-shadow(-8px 34px 42px rgba(0, 0, 0, 0.52));
  }

  100% {
    transform: rotateX(2deg) rotateY(342deg) translateY(0) scale(0.98);
    filter: contrast(1.04) saturate(1.08) brightness(1.03) drop-shadow(0 18px 18px rgba(231, 193, 108, 0.1)) drop-shadow(0 30px 38px rgba(0, 0, 0, 0.5));
  }
}

@keyframes stageSweep {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-18px) translateZ(-1px);
  }

  50% {
    opacity: 0.86;
    transform: translateX(18px) translateZ(-1px);
  }
}

@keyframes platformPulse {
  0%,
  100% {
    opacity: 0.68;
    transform: translateX(-50%) rotateX(62deg) scaleX(0.94);
  }

  50% {
    opacity: 0.96;
    transform: translateX(-50%) rotateX(62deg) scaleX(1.04);
  }
}

.collection-copy {
  min-width: 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.verified-badge {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(85, 214, 139, 0.42);
  border-radius: 8px;
  color: var(--green-strong);
  background: rgba(85, 214, 139, 0.1);
  text-transform: none;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-family: var(--display-font);
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-family: var(--display-font);
  font-size: 23px;
  letter-spacing: 0;
}

h3 {
  font-size: 15px;
}

.collection-copy p {
  max-width: 640px;
  margin-top: 12px;
  color: #d9dfd6;
  font-size: 14px;
  line-height: 1.6;
}

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

.trade-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.channel-card {
  min-height: 244px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 44%),
    var(--panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.channel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(231, 193, 108, 0.54);
  pointer-events: none;
}

.channel-card-buyer::before {
  border-top-color: rgba(216, 173, 88, 0.58);
}

.channel-index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(231, 235, 226, 0.18);
  font-family: var(--display-font);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.channel-card h2 {
  max-width: 78%;
  margin: -6px 0 0;
  font-size: 28px;
}

.channel-card p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.channel-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.channel-steps span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(231, 235, 226, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 800;
}

.channel-card-seller .channel-steps span {
  border-color: rgba(231, 193, 108, 0.22);
}

.channel-card-buyer .channel-steps span {
  border-color: rgba(216, 173, 88, 0.24);
}

.page-home .seller-panel,
.page-home .trade-channels,
.page-buyer .trade-channels,
.page-seller .trade-channels,
.page-buyer .seller-panel,
.page-seller .market-column {
  display: none;
}

.page-home .market-layout,
.page-buyer .market-layout {
  grid-template-columns: 1fr;
}

.page-seller .market-layout {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}

.page-seller .seller-panel {
  width: 100%;
  max-width: 620px;
}

.page-home .collection-hero,
.page-buyer .collection-hero {
  min-height: 196px;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr) minmax(280px, 420px);
  gap: 14px;
  padding: 14px;
}

.page-home .collection-media,
.page-buyer .collection-media {
  min-height: 166px;
}

.page-home .collection-media::after,
.page-buyer .collection-media::after {
  bottom: 13px;
}

.page-home .collection-media img,
.page-buyer .collection-media img {
  width: min(calc(100% - 20px), 124px);
  height: calc(100% - 18px);
}

.page-home .collection-kicker,
.page-buyer .collection-kicker {
  margin-bottom: 10px;
}

.page-home h1,
.page-buyer h1 {
  font-size: 36px;
}

.page-home .collection-copy p,
.page-buyer .collection-copy p {
  max-width: 780px;
  margin-top: 8px;
  font-size: 13px;
}

.page-home .hero-actions,
.page-buyer .hero-actions {
  margin-top: 12px;
}

.page-home .collection-stats div,
.page-buyer .collection-stats div {
  min-height: 72px;
  padding: 10px 12px;
}

.page-home .collection-stats strong,
.page-buyer .collection-stats strong {
  font-size: 21px;
}

.page-home .collection-strip,
.page-buyer .collection-strip {
  display: none;
}

.page-home .market-header-panel,
.page-buyer .market-header-panel {
  min-height: 64px;
  padding: 12px 14px;
}

.page-home .market-toolbar,
.page-buyer .market-toolbar {
  gap: 8px;
}

.page-home .market-search,
.page-home .market-sort,
.page-home .market-mode-strip,
.page-buyer .market-search,
.page-buyer .market-sort,
.page-buyer .market-mode-strip {
  min-height: 50px;
  padding: 7px 9px;
}

.page-home .section-heading,
.page-buyer .section-heading {
  min-height: 38px;
  margin-top: 0;
}

.page-home .section-heading .eyebrow,
.page-buyer .section-heading .eyebrow {
  display: none;
}

.page-home .section-heading h2,
.page-buyer .section-heading h2 {
  font-size: 20px;
}













.collection-stats {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 0;
}

.collection-stats div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(231, 235, 226, 0.13);
  border-radius: 8px;
  background: rgba(5, 6, 6, 0.62);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.collection-stats div:nth-child(2) {
  border-color: rgba(216, 173, 88, 0.28);
}

.collection-stats div:nth-child(3) {
  border-color: rgba(231, 193, 108, 0.28);
}

.collection-stats span,
.contract-chip span,
.collection-strip span,
.account-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.collection-stats strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--display-font);
  font-size: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(228, 93, 93, 0.42);
  border-radius: 8px;
  background: var(--red-soft);
  color: #ffd0d0;
  line-height: 1.55;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.trust-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.trust-rail article {
  min-width: 0;
  min-height: 124px;
  display: grid;
  align-content: start;
  gap: 9px;
  position: relative;
  padding: 16px 16px 15px;
  border: 1px solid rgba(231, 235, 226, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.046), transparent 82px),
    rgba(8, 10, 10, 0.84);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.trust-rail article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(216, 173, 88, 0.64));
}

.trust-rail article:nth-child(2)::before {
  background: linear-gradient(180deg, var(--teal), rgba(85, 214, 139, 0.62));
}

.trust-rail article:nth-child(3)::before {
  background: linear-gradient(180deg, var(--green), rgba(231, 193, 108, 0.58));
}

.trust-rail span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-rail strong {
  min-width: 0;
  color: var(--text);
  font-family: var(--display-font);
  font-size: 17px;
  line-height: 1.2;
}

.trust-rail p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.hidden {
  display: none !important;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(320px, 400px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 14px;
}

.panel {
  border: 1px solid rgba(231, 235, 226, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 92px),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.seller-panel {
  position: sticky;
  top: 102px;
  padding: 20px;
}

.market-column {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.market-header-panel,
.activity-panel {
  padding: 14px;
}

.market-header-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.page-home .market-header-panel,
.page-buyer .market-header-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  border-left: 3px solid var(--teal);
}

.market-controls {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.contract-chip {
  min-width: 174px;
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  border: 1px solid rgba(231, 235, 226, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.contract-chip strong,
.collection-strip strong,
.account-card strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-chip strong {
  color: var(--green-strong);
}

.contract-chip:nth-child(2) strong {
  color: var(--gold-strong);
}

.collection-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(130px, 0.5fr) minmax(160px, 0.7fr);
  gap: 12px;
}

.collection-strip div {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(231, 235, 226, 0.12);
  border-radius: 8px;
  background: var(--surface-2);
}

.collection-strip div:nth-child(2) strong {
  color: var(--green-strong);
}

.collection-strip div:nth-child(3) strong {
  color: var(--gold-strong);
}

.trend-panel {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border-color: rgba(216, 173, 88, 0.2);
  background:
    linear-gradient(180deg, rgba(216, 173, 88, 0.065), transparent 120px),
    rgba(9, 8, 6, 0.88);
}

.trend-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(242, 213, 138, 0.24);
}

.trend-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.trend-heading h2 {
  margin-top: 4px;
  font-family: var(--display-font);
  font-size: 22px;
}

.trend-heading p:not(.eyebrow) {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.trend-metrics div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(216, 173, 88, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.trend-metrics span,
.trend-axis {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.trend-metrics strong {
  min-width: 0;
  overflow: hidden;
  color: var(--gold-strong);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trend-chart {
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

.trend-chart-frame {
  padding: 12px;
  border: 1px solid rgba(216, 173, 88, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.trend-chart svg {
  width: 100%;
  min-height: 210px;
  display: block;
}

.trend-grid-line {
  stroke: rgba(242, 213, 138, 0.12);
  stroke-width: 1;
}

.trend-area {
  fill: url("#trendFill");
}

.trend-line {
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(216, 173, 88, 0.22));
}

.trend-dot {
  fill: #0a0805;
  stroke: var(--gold-strong);
  stroke-width: 2;
}

.trend-dot.latest {
  fill: var(--gold-strong);
}

.trend-axis {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  padding: 0 4px 2px;
}

.trend-axis span:last-child {
  text-align: right;
}

.market-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(180px, 240px) auto;
  align-items: stretch;
  gap: 10px;
}

.market-search,
.market-sort,
.market-mode-strip {
  min-width: 0;
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid rgba(231, 235, 226, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.market-search,
.market-sort {
  display: grid;
  gap: 7px;
}

.market-search span,
.market-sort span,
.market-mode-strip span,
.market-cell span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.market-search input,
.market-sort select {
  width: 100%;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  outline: none;
  padding: 0 10px;
  font-weight: 750;
}

.market-sort select option {
  color: #111;
}

.market-mode-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.market-mode-strip strong {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(216, 173, 88, 0.24);
  border-radius: 8px;
  color: var(--gold-strong);
  background: rgba(216, 173, 88, 0.075);
  font-size: 12px;
}

.panel-heading,
.section-title,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section-heading {
  margin-top: 2px;
}

.market-table-head {
  min-height: 31px;
  display: grid;
  grid-template-columns: minmax(310px, 1.45fr) minmax(120px, 0.55fr) minmax(120px, 0.55fr) minmax(210px, 0.85fr) minmax(116px, 0.48fr);
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid rgba(231, 235, 226, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--faint);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.market-table-head span:first-child {
  padding-left: 96px;
}

.count-label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(231, 235, 226, 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 750;
}

.account-card {
  margin: 18px 0;
  display: grid;
  gap: 5px;
  padding: 16px 14px;
  border: 1px solid rgba(231, 235, 226, 0.12);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.account-card small {
  color: var(--muted);
}

.form-stack {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input {
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(231, 235, 226, 0.13);
  background: var(--field);
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

input:focus {
  border-color: rgba(216, 173, 88, 0.55);
  box-shadow: 0 0 0 3px rgba(216, 173, 88, 0.1);
}

.input-with-suffix {
  position: relative;
}

.input-with-suffix input {
  padding-right: 78px;
}

.input-with-suffix em {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-strong);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.approval-state {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(231, 235, 226, 0.1);
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.button-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.owned-section {
  margin-top: 24px;
}

.owned-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.owned-token {
  min-height: 44px;
  border: 1px solid rgba(231, 235, 226, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 850;
}

.seller-listings-section {
  padding-top: 18px;
  border-top: 1px solid rgba(231, 235, 226, 0.09);
}

.seller-listings {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.seller-listing-card,
.seller-listings-empty {
  border: 1px solid rgba(231, 235, 226, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.seller-listing-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
}

.seller-listing-card img {
  width: 62px;
  height: 78px;
  object-fit: contain;
  border: 1px solid rgba(231, 193, 108, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 36%, rgba(242, 219, 154, 0.18), transparent 34%),
    #070807;
  padding: 6px;
}

.seller-listing-main {
  min-width: 0;
  display: grid;
  gap: 4px;
  align-content: start;
}

.seller-listing-main strong,
.seller-listing-main span,
.seller-listing-main em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-listing-main strong {
  font-family: var(--display-font);
  font-size: 14px;
}

.seller-listing-main span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.seller-listing-main em {
  color: var(--gold-strong);
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.seller-listing-actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.seller-listing-actions .button {
  width: 100%;
}

.seller-listings-empty {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.seller-listings-section + .form-stack {
  margin-top: 18px;
}

.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.nft-card {
  min-width: 0;
  display: grid;
  border: 1px solid rgba(231, 235, 226, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), transparent 118px),
    var(--surface-3);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.nft-card:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 193, 108, 0.38);
  background:
    linear-gradient(180deg, rgba(242, 219, 154, 0.07), transparent 130px),
    rgba(12, 15, 15, 0.98);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.4);
}

.nft-art {
  position: relative;
  aspect-ratio: 1 / 1.12;
  margin: 10px 10px 0;
  border: 1px solid rgba(231, 193, 108, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 32%, rgba(242, 219, 154, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(231, 193, 108, 0.1), transparent 58%),
    #070807;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -28px 46px rgba(0, 0, 0, 0.34);
}

.nft-art::before,
.nft-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nft-art::before {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 78%, rgba(216, 173, 88, 0.15), transparent 24%),
    linear-gradient(116deg, transparent 14%, rgba(255, 255, 255, 0.035) 40%, rgba(231, 193, 108, 0.1) 49%, transparent 66%);
  opacity: 0.78;
}

.nft-art::after {
  z-index: 2;
  width: 62%;
  transform: translateX(-135%) skewX(-18deg);
  background:
    linear-gradient(90deg, transparent, rgba(255, 250, 230, 0.08), rgba(242, 219, 154, 0.18), rgba(255, 255, 255, 0.06), transparent);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 180ms ease, transform 520ms ease;
}

.nft-card:hover .nft-art::after {
  opacity: 1;
  transform: translateX(180%) skewX(-18deg);
}

.nft-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
  padding: 12px;
  filter:
    contrast(1.04)
    saturate(1.08)
    brightness(1.03)
    drop-shadow(0 12px 12px rgba(231, 193, 108, 0.1))
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42));
  transition: transform 180ms ease, filter 180ms ease;
}

.nft-card:hover .nft-art img {
  transform: scale(1.018);
  filter:
    contrast(1.05)
    saturate(1.1)
    brightness(1.07)
    drop-shadow(0 14px 16px rgba(231, 193, 108, 0.14))
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.48));
}

.nft-id-chip,
.nft-status-chip {
  position: absolute;
  z-index: 3;
  top: 10px;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 850;
}

.nft-id-chip {
  left: 10px;
  color: var(--text);
}

.nft-status-chip {
  right: 10px;
  color: var(--green-strong);
}

.nft-status-chip.preview {
  color: var(--muted);
}

.nft-body {
  display: grid;
  gap: 12px;
  padding: 13px;
}

.nft-title {
  display: grid;
  gap: 6px;
}

.nft-title strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--display-font);
  font-size: 16px;
}

.nft-title span {
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(231, 193, 108, 0.3);
  border-radius: 8px;
  color: var(--gold-strong);
  background: rgba(231, 193, 108, 0.08);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.split-line {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions.single {
  grid-template-columns: 1fr;
}

.price-edit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.price-edit input {
  min-height: 40px;
}

.nft-card {
  min-height: 108px;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: stretch;
}

.nft-art {
  width: 82px;
  min-height: 92px;
  aspect-ratio: auto;
  margin: 8px;
}

.nft-art img {
  padding: 8px;
}

.nft-body {
  grid-template-columns: minmax(210px, 1.45fr) minmax(120px, 0.55fr) minmax(120px, 0.55fr) minmax(210px, 0.85fr) minmax(116px, 0.48fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 4px;
}

.nft-title {
  gap: 4px;
}

.nft-title small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.market-cell {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.market-cell strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
  font-family: var(--display-font);
  font-size: 15px;
}

.nft-price strong {
  color: var(--gold-strong);
}

.nft-seller strong {
  color: #cfe6e2;
}

.nft-action-cell {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.nft-action-cell .button {
  width: 100%;
  min-height: 38px;
}

.nft-action-cell .card-actions,
.nft-action-cell .price-edit {
  gap: 7px;
}

.preview-note,
.empty-state {
  grid-column: 1 / -1;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(216, 173, 88, 0.18);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.26);
}

.preview-note strong,
.empty-state strong {
  color: var(--text);
}

.activity-panel {
  margin-top: 18px;
}

.activity-log {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.activity-log a {
  color: var(--green-strong);
}

.records-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 24px;
  align-items: end;
  padding: 42px 0 22px;
}

.records-hero h1 {
  max-width: 740px;
  margin: 8px 0 12px;
  font-family: var(--display-font);
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.92;
}

.records-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.records-summary {
  display: grid;
  gap: 10px;
}

.records-summary > div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(231, 235, 226, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.records-summary span,
.record-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.records-summary strong {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.records-desk {
  display: grid;
  gap: 10px;
  padding-top: 12px;
}

.records-command-bar {
  position: sticky;
  top: 104px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 330px) auto;
  gap: 10px;
  align-items: stretch;
  padding: 10px;
  border: 1px solid rgba(216, 173, 88, 0.16);
  border-radius: 8px;
  background: rgba(7, 6, 4, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.records-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
}

.records-tabs button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 1px solid rgba(216, 173, 88, 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 850;
}

.records-tabs button.active {
  color: var(--ink);
  border-color: rgba(242, 213, 138, 0.7);
  background: linear-gradient(180deg, #f4d98f, #c9973d);
}

.record-search {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 6px 10px;
  border: 1px solid rgba(216, 173, 88, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.record-search span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.record-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-weight: 750;
}

.records-table-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(120px, 0.5fr) minmax(120px, 0.55fr) minmax(260px, 1.05fr) minmax(170px, 0.7fr);
  gap: 12px;
  padding: 0 14px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.records-list {
  display: grid;
  gap: 10px;
}

.record-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.9fr) minmax(170px, 0.7fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(216, 173, 88, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(216, 173, 88, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.028);
}

.record-main {
  display: grid;
  gap: 5px;
}

.record-main strong {
  font-family: var(--display-font);
  font-size: 18px;
}

.record-main small {
  color: var(--muted);
}

.record-type {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(216, 173, 88, 0.32);
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(216, 173, 88, 0.1);
  font-size: 11px;
  font-weight: 800;
}

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

.record-grid div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.record-grid strong {
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(216, 173, 88, 0.18);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.28);
}

@media (max-width: 980px) {
  .records-hero,
  .records-command-bar,
  .trend-heading,
  .record-card {
    grid-template-columns: 1fr;
  }

  .trend-metrics {
    grid-template-columns: 1fr;
  }

  .records-table-head {
    display: none;
  }

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

  .record-link {
    width: 100%;
  }

  .market-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .market-mode-strip {
    grid-column: 1 / -1;
    min-height: 48px;
    flex-wrap: wrap;
  }

  .market-table-head {
    display: none;
  }

  .nft-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .nft-body {
    grid-template-columns: 1fr;
    padding: 12px 14px 12px 2px;
  }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    justify-self: stretch;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .wallet-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .collection-hero,
  .market-layout {
    grid-template-columns: 1fr;
  }

  .collection-hero {
    background:
      linear-gradient(90deg, rgba(8, 10, 10, 0.98), rgba(13, 17, 17, 0.9)),
      url("https://anubis.origindefi.io/assets/claim-nft/red-gold.png") right -40px bottom -20px / 260px auto no-repeat,
      #090b0b;
  }

  .collection-media {
    min-height: 260px;
  }

  .collection-media img {
    width: min(72%, 300px);
    height: auto;
    max-height: 290px;
  }

  .trade-channels {
    grid-template-columns: 1fr;
  }

  .trust-rail {
    grid-template-columns: 1fr;
  }

  .seller-panel {
    position: static;
  }

  .market-header-panel {
    grid-template-columns: 1fr;
  }

  .market-controls {
    justify-content: stretch;
    flex-wrap: wrap;
  }

  .contract-chip {
    flex: 1 1 190px;
  }

  h1 {
    font-size: 40px;
  }
}

@media (max-width: 760px) {
  .app-shell {
    padding: 10px;
  }

  .topbar {
    position: static;
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(132px, 154px);
    gap: 9px;
    margin-bottom: 10px;
    padding: 8px;
  }

  .brand img {
    width: 108px;
    height: 36px;
    flex-basis: 108px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 10px;
  }

  .brand {
    gap: 0;
  }

  .brand span {
    display: none;
  }

  .desktop-nav {
    justify-self: stretch;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 4px;
    gap: 4px;
  }

  .desktop-nav a {
    min-height: 34px;
    justify-content: center;
    padding: 0 10px;
    font-size: 12px;
  }

  .collection-hero {
    min-height: auto;
    padding: 22px 18px;
    background:
      linear-gradient(180deg, rgba(8, 10, 10, 0.9), rgba(8, 10, 10, 0.96)),
      url("https://anubis.origindefi.io/assets/claim-nft/red-gold.png") right -24px bottom -28px / 210px auto no-repeat,
      #090b0b;
  }

  .collection-copy p {
    font-size: 15px;
  }

  .collection-media {
    min-height: 222px;
  }

  .collection-media::before {
    inset: 16px;
  }

  .collection-media::after {
    bottom: 20px;
    width: 58%;
  }

  .collection-media img {
    width: min(74%, 220px);
    max-height: 208px;
  }

  .page-home .collection-hero,
  .page-buyer .collection-hero,
  .page-seller .collection-hero {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    background:
      linear-gradient(90deg, rgba(8, 10, 10, 0.96), rgba(8, 10, 10, 0.9)),
      url("https://anubis.origindefi.io/assets/claim-nft/red-gold.png") right -58px center / 190px auto no-repeat,
      #090b0b;
  }

  .page-home .collection-media,
  .page-buyer .collection-media,
  .page-seller .collection-media {
    min-height: 102px;
  }

  .page-home .collection-media::before,
  .page-buyer .collection-media::before,
  .page-seller .collection-media::before {
    inset: 8px;
  }

  .page-home .collection-media::after,
  .page-buyer .collection-media::after,
  .page-seller .collection-media::after {
    bottom: 9px;
    width: 62%;
  }

  .page-home .collection-media img,
  .page-buyer .collection-media img,
  .page-seller .collection-media img {
    width: min(68px, calc(100% - 10px));
    height: calc(100% - 12px);
    max-height: 96px;
  }

  .page-home .collection-kicker,
  .page-buyer .collection-kicker,
  .page-seller .collection-kicker {
    gap: 6px;
    margin-bottom: 6px;
    font-size: 10px;
  }

  .page-home h1,
  .page-buyer h1,
  .page-seller h1 {
    font-size: 24px;
    line-height: 1.05;
  }

  .page-home .collection-copy p,
  .page-buyer .collection-copy p,
  .page-seller .collection-copy p {
    display: none;
  }

  .page-home .hero-actions,
  .page-buyer .hero-actions,
  .page-seller .hero-actions {
    gap: 7px;
    margin-top: 10px;
  }

  .page-home .hero-actions .button,
  .page-buyer .hero-actions .button,
  .page-seller .hero-actions .button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .page-home .collection-stats,
  .page-buyer .collection-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .page-home .collection-stats div,
  .page-buyer .collection-stats div {
    min-height: 43px;
    gap: 3px;
    padding: 6px;
  }

  .page-home .collection-stats span,
  .page-buyer .collection-stats span {
    font-size: 10px;
  }

  .page-home .collection-stats strong,
  .page-buyer .collection-stats strong {
    font-size: 14px;
  }

  .page-seller .collection-stats {
    display: none;
  }

  .channel-card {
    min-height: 224px;
    padding: 20px;
  }

  .trust-rail {
    gap: 8px;
    margin: 10px 0;
  }

  .trust-rail article {
    min-height: auto;
    padding: 13px 13px 12px;
  }

  .trust-rail strong {
    font-size: 15px;
  }

  .trust-rail p {
    font-size: 12px;
  }

  .channel-index {
    font-size: 34px;
  }

  .collection-stats,
  .collection-strip {
    grid-template-columns: 1fr 1fr;
  }

  .wallet-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 74px 98px minmax(0, 1fr);
    width: 100%;
    gap: 7px;
  }

  .language-control,
  .wallet-control,
  .status-pill {
    min-height: 34px;
    justify-content: center;
    padding: 0 8px;
    font-size: 11px;
  }

  .language-control span,
  .wallet-control span {
    display: none;
  }

  .language-control select,
  .wallet-control select {
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .language-control,
  .wallet-control,
  .status-pill,
  .wallet-actions .button {
    width: 100%;
  }

  .status-pill {
    display: none;
  }

  .wallet-actions .button {
    grid-column: auto;
    min-height: 36px;
    padding: 0 10px;
  }

  h1 {
    font-size: 38px;
  }

  .preview-note,
  .empty-state {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-toolbar {
    grid-template-columns: 1fr;
  }

  .market-mode-strip {
    grid-column: auto;
  }

  .page-home .market-layout,
  .page-buyer .market-layout,
  .page-seller .market-layout {
    margin-top: 10px;
  }

  .page-home .market-header-panel,
  .page-buyer .market-header-panel {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }

  .page-home .market-header-panel h2,
  .page-buyer .market-header-panel h2 {
    font-size: 19px;
  }

  .page-home .market-header-panel .eyebrow,
  .page-buyer .market-header-panel .eyebrow {
    margin-bottom: 2px;
    font-size: 10px;
  }

  .page-home .market-controls,
  .page-buyer .market-controls {
    justify-content: flex-end;
  }

  .page-home .market-controls .contract-chip,
  .page-buyer .market-controls .contract-chip {
    display: none;
  }

  .page-home .market-controls .button,
  .page-buyer .market-controls .button {
    min-height: 36px;
    padding: 0 11px;
  }

  .page-home .market-toolbar,
  .page-buyer .market-toolbar {
    grid-template-columns: minmax(0, 1fr) minmax(108px, 132px);
    gap: 7px;
  }

  .page-home .market-search,
  .page-home .market-sort,
  .page-buyer .market-search,
  .page-buyer .market-sort {
    min-height: 48px;
    padding: 6px 8px;
  }

  .page-home .market-mode-strip,
  .page-buyer .market-mode-strip {
    display: none;
  }

  .page-home .market-search input,
  .page-home .market-sort select,
  .page-buyer .market-search input,
  .page-buyer .market-sort select {
    min-height: 30px;
    padding: 0 8px;
    font-size: 12px;
  }

  .page-home .section-heading,
  .page-buyer .section-heading {
    min-height: 32px;
  }

  .page-home .section-heading h2,
  .page-buyer .section-heading h2 {
    font-size: 18px;
  }

  .page-home .count-label,
  .page-buyer .count-label {
    min-height: 30px;
    padding: 0 9px;
    font-size: 12px;
  }

  .seller-panel {
    padding: 14px;
  }
}

@media (max-width: 540px) {
  .brand strong {
    font-size: 15px;
  }

  .collection-stats,
  .collection-strip,
  .button-row,
  .card-actions,
  .price-edit {
    grid-template-columns: 1fr;
  }

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

  .listing-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nft-card {
    min-height: 108px;
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .nft-art {
    width: 62px;
    min-height: 84px;
    margin: 6px;
  }

  .nft-id-chip,
  .nft-status-chip {
    top: 7px;
    min-height: 23px;
    padding: 0 6px;
    font-size: 10px;
  }

  .nft-id-chip {
    left: 7px;
  }

  .nft-status-chip {
    right: 7px;
  }

  .nft-body {
    gap: 6px;
    padding: 9px 9px 9px 0;
  }

  .nft-title strong,
  .market-cell strong {
    font-size: 14px;
  }

  .nft-title small,
  .market-cell span,
  .split-line {
    font-size: 11px;
  }

  .nft-action-cell .button {
    min-height: 34px;
    font-size: 12px;
  }

  .nft-title span {
    white-space: normal;
  }

  h1 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection-media::before,
  .collection-media::after,
  .collection-media img {
    animation: none;
  }

  .nft-card,
  .nft-art::after,
  .nft-art img {
    transition: none;
  }

  .collection-media img {
    transform: rotateX(2deg) rotateY(-10deg) scale(0.98);
  }

  .nft-card:hover .nft-art::after {
    opacity: 0;
    transform: translateX(-135%) skewX(-18deg);
  }

  .nft-card:hover .nft-art img {
    transform: none;
  }
}
