/*
 * MihanArz V2 — light, data-first visual layer
 * Loaded after legacy and modern styles to keep existing pages compatible.
 */
:root {
  --mz2-navy: #12233f;
  --mz2-text: #33445e;
  --mz2-muted: #64748b;
  --mz2-blue: #1769e0;
  --mz2-blue-strong: #0f56bf;
  --mz2-blue-soft: #edf5ff;
  --mz2-line: #e2e9f2;
  --mz2-bg: #f7f9fc;
  --mz2-card: #fff;
  --mz2-green: #087a55;
  --mz2-green-bg: #eaf8f2;
  --mz2-red: #c33b4a;
  --mz2-red-bg: #fff0f2;
  --mz2-gold: #9a6500;
  --mz2-gold-bg: #fff8e8;
  --mz2-violet: #6b4fd3;
  --mz2-shadow: 0 12px 35px rgba(35, 55, 83, .07);
  --mz2-shadow-hover: 0 18px 45px rgba(35, 55, 83, .12);
}

body {
  color: var(--mz2-text);
  background: var(--mz2-bg);
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  border-bottom-color: rgba(218, 227, 239, .9);
  box-shadow: 0 8px 30px rgba(31, 50, 76, .04);
}

.header-inner {
  min-height: 76px;
}

.main-nav,
.main-nav > a,
.nav-drop-toggle {
  height: 76px;
}

.header-search {
  min-height: 38px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #52637b;
  background: #f8fafc;
  border: 1px solid var(--mz2-line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: .18s ease;
}

.header-search:hover {
  color: var(--mz2-blue);
  background: var(--mz2-blue-soft);
  border-color: #c7daf6;
}

.header-search .mz-icon {
  width: 16px;
  height: 16px;
}

.header-search kbd,
.mz2-search-cta kbd {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #7b8ca3;
  background: #fff;
  border: 1px solid #d9e1ec;
  border-bottom-width: 2px;
  border-radius: 6px;
  direction: ltr;
  font-family: inherit;
  font-size: 11px;
}

.market-search-dialog {
  width: min(650px, calc(100% - 28px));
  max-height: min(740px, calc(100dvh - 32px));
  padding: 0;
  color: var(--mz2-text);
  background: transparent;
  border: 0;
  overflow: visible;
}

.market-search-dialog::backdrop {
  background: rgba(14, 28, 50, .4);
  backdrop-filter: blur(5px);
}

.market-search-panel {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 20px;
  box-shadow: 0 30px 90px rgba(12, 30, 57, .24);
}

.market-search-head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.market-search-head > div {
  display: grid;
  gap: 3px;
}

.market-search-head strong {
  color: var(--mz2-navy);
  font-size: 18px;
  font-weight: 850;
}

.market-search-head span {
  color: var(--mz2-muted);
  font-size: 12px;
}

.market-search-close,
.mz2-watchlist-head button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #5d6f87;
  background: #f7f9fc;
  border: 1px solid var(--mz2-line);
  border-radius: 10px;
  cursor: pointer;
}

.market-search-input-wrap {
  min-height: 54px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mz2-blue);
  background: #f8fbff;
  border: 1px solid #cfe0f7;
  border-radius: 13px;
}

.market-search-input-wrap .mz-icon {
  width: 20px;
  height: 20px;
}

.market-search-input-wrap input {
  width: 100%;
  color: var(--mz2-navy);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.market-search-results {
  max-height: 430px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  overflow: auto;
  overscroll-behavior: contain;
}

.market-search-results > a {
  min-height: 62px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 11px;
}

.market-search-results > a:hover,
.market-search-results > a:focus-visible {
  color: var(--mz2-blue);
  background: var(--mz2-blue-soft);
  border-color: #d3e3f8;
}

.search-result-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--mz2-blue);
  background: var(--mz2-blue-soft);
  border-radius: 10px;
}

.search-result-icon--gold {
  color: var(--mz2-gold);
  background: var(--mz2-gold-bg);
}

.search-result-icon--crypto {
  color: var(--mz2-violet);
  background: #f3efff;
}

.market-search-results > a > span:last-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.market-search-results strong {
  color: var(--mz2-navy);
  font-size: 13px;
}

.market-search-results small {
  color: var(--mz2-muted);
  font-size: 10px;
}

.market-search-empty {
  grid-column: 1 / -1;
  margin: 18px 0;
  padding: 24px;
  color: var(--mz2-muted);
  background: #f8fafc;
  border-radius: 12px;
  text-align: center;
}

.market-search-foot {
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--mz2-muted);
  border-top: 1px solid var(--mz2-line);
  font-size: 11px;
}

.market-search-foot a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--mz2-blue);
  font-weight: 800;
}

/* Homepage */
.mz2-home {
  padding-top: 24px;
}

.mz2-hero {
  position: relative;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: stretch;
  gap: 30px;
  background:
    linear-gradient(110deg, rgba(238, 246, 255, .9), rgba(255, 255, 255, .96) 46%, #fff),
    #fff;
  border: 1px solid #dce7f4;
  border-radius: 24px;
  box-shadow: var(--mz2-shadow);
  overflow: hidden;
}

.mz2-hero::before {
  content: "";
  width: 260px;
  height: 260px;
  position: absolute;
  inset: -130px auto auto -90px;
  background: rgba(23, 105, 224, .06);
  border-radius: 50%;
}

.mz2-hero-copy {
  position: relative;
  align-self: center;
  padding: 12px 4px;
}

.mz2-eyebrow {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #56708f;
  font-size: 11px;
  font-weight: 750;
}

.mz2-live-dot {
  width: 8px;
  height: 8px;
  background: #19a86b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(25, 168, 107, .12);
}

.mz2-live-dot.is-stale {
  background: #d58b0b;
  box-shadow: 0 0 0 5px rgba(213, 139, 11, .12);
}

.mz2-eyebrow-sep {
  width: 1px;
  height: 12px;
  margin: 0 3px;
  background: #cdd8e6;
}

.mz2-hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--mz2-navy);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.8px;
  line-height: 1.25;
}

.mz2-hero h1 span {
  color: var(--mz2-blue);
}

.mz2-hero-copy > p {
  max-width: 650px;
  margin: 17px 0 0;
  color: #5e7088;
  font-size: 15px;
  line-height: 2;
}

.mz2-hero-actions {
  margin-top: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mz2-search-cta,
.mz2-secondary-cta {
  min-height: 50px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mz2-search-cta {
  min-width: 285px;
  color: #fff;
  background: var(--mz2-blue);
  border: 1px solid var(--mz2-blue);
  box-shadow: 0 10px 25px rgba(23, 105, 224, .2);
}

.mz2-search-cta:hover {
  background: var(--mz2-blue-strong);
}

.mz2-search-cta kbd {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .35);
}

.mz2-secondary-cta {
  color: var(--mz2-blue);
  background: #fff;
  border: 1px solid #cdddf1;
}

.mz2-trust-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #657991;
  font-size: 11px;
  font-weight: 700;
}

.mz2-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mz2-trust-row .mz-icon {
  color: var(--mz2-blue);
}

.mz2-market-pulse {
  padding: 20px;
  background: #fff;
  border: 1px solid #dce5f0;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(38, 65, 100, .09);
}

.mz2-pulse-head,
.mz2-panel-head,
.mz2-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mz2-pulse-head > div {
  display: grid;
  gap: 2px;
}

.mz2-pulse-head span,
.mz2-panel-title > div > span {
  color: var(--mz2-muted);
  font-size: 10px;
  font-weight: 700;
}

.mz2-pulse-head strong {
  color: var(--mz2-navy);
  font-size: 16px;
  font-weight: 850;
}

.mz2-pulse-head a,
.mz2-panel-head > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--mz2-blue);
  font-size: 11px;
  font-weight: 800;
}

.mz2-pulse-list {
  margin-top: 12px;
}

.mz2-pulse-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 40px minmax(86px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #edf1f6;
}

.mz2-pulse-row:last-child {
  border-bottom: 0;
}

.mz2-pulse-row:hover .mz2-pulse-name strong {
  color: var(--mz2-blue);
}

.mz2-pulse-icon .market-icon,
.mz2-spot-icon .market-icon,
.mz2-asset .market-icon,
.mz2-crypto-card > .market-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.market-icon--vector-only .market-icon-svg {
  width: 21px;
  height: 21px;
  margin-top: 0;
}

.mz2-pulse-name,
.mz2-asset > span,
.mz2-crypto-card > span,
.mz2-mover-list a > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.mz2-pulse-name strong,
.mz2-asset strong,
.mz2-crypto-card strong,
.mz2-mover-list strong {
  overflow: hidden;
  color: var(--mz2-navy);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mz2-pulse-name small,
.mz2-asset small,
.mz2-crypto-card small,
.mz2-mover-list small {
  color: var(--mz2-muted);
  font-size: 9.5px;
}

.mz2-pulse-price {
  color: var(--mz2-navy);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.mz2-change {
  min-height: 25px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 7px;
  direction: ltr;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.mz2-change.is-up {
  color: var(--mz2-green);
  background: var(--mz2-green-bg);
}

.mz2-change.is-down {
  color: var(--mz2-red);
  background: var(--mz2-red-bg);
}

.mz2-change.is-flat {
  color: #66768d;
  background: #f0f3f7;
}

.change-arrow {
  width: 11px;
  height: 11px;
}

.change-arrow.up { transform: rotate(90deg); }
.change-arrow.down { transform: rotate(-90deg); }

.mz2-pulse-foot {
  margin-top: 10px;
  padding: 10px 11px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #6a7b91;
  background: #f7f9fc;
  border-radius: 9px;
  font-size: 9.5px;
  line-height: 1.7;
}

.mz2-pulse-foot .mz-icon {
  margin-top: 2px;
  color: var(--mz2-blue);
}

.mz2-spots,
.mz2-tools,
.mz2-faq {
  margin-top: 34px;
}

.mz2-section-head > div {
  display: grid;
  gap: 4px;
}

.mz2-section-kicker {
  color: var(--mz2-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .2px;
}

.mz2-section-head h2,
.mz2-seo-main h2 {
  margin: 0;
  color: var(--mz2-navy);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 900;
  letter-spacing: -.5px;
}

.mz2-section-head > p {
  margin: 0;
  color: var(--mz2-muted);
  font-size: 12px;
}

.mz2-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #657991;
  font-size: 11px;
}

.mz2-spot-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.mz2-spot-card {
  min-width: 0;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--mz2-line);
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(35, 55, 83, .035);
  transition: .2s ease;
}

.mz2-spot-card:hover {
  border-color: #bfd3ee;
  box-shadow: var(--mz2-shadow);
  transform: translateY(-2px);
}

.mz2-spot-top,
.mz2-spot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mz2-watch {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #91a0b3;
  background: #f8fafc;
  border: 1px solid #e4eaf2;
  border-radius: 8px;
  cursor: pointer;
}

.mz2-watch:hover,
.mz2-watch.is-watched {
  color: var(--mz2-green);
  background: var(--mz2-green-bg);
  border-color: #b7e4d1;
}

.mz2-spot-link {
  margin-top: 13px;
  display: grid;
}

.mz2-spot-name {
  color: #667890;
  font-size: 11px;
  font-weight: 750;
}

.mz2-spot-value {
  margin-top: 3px;
  overflow: hidden;
  color: var(--mz2-navy);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 900;
  letter-spacing: -.2px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mz2-spot-meta {
  margin-top: 12px;
}

.mz2-spot-meta small {
  overflow: hidden;
  color: var(--mz2-muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mz2-market-layout,
.mz2-crypto-movers,
.mz2-seo-block {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mz2-market-panel,
.mz2-movers {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--mz2-line);
  border-radius: 17px;
  box-shadow: 0 5px 22px rgba(35, 55, 83, .045);
  overflow: hidden;
}

.mz2-panel-head {
  min-height: 78px;
  padding: 15px 18px;
  border-bottom: 1px solid #e9eef5;
}

.mz2-panel-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.mz2-panel-title > div {
  display: grid;
  gap: 1px;
}

.mz2-panel-title h2 {
  margin: 0;
  color: var(--mz2-navy);
  font-size: 16px;
  font-weight: 900;
}

.mz2-panel-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--mz2-blue);
  background: var(--mz2-blue-soft);
  border-radius: 11px;
}

.mz2-market-panel--gold .mz2-panel-icon {
  color: var(--mz2-gold);
  background: var(--mz2-gold-bg);
}

.mz2-table-wrap {
  overflow-x: auto;
}

.mz2-table {
  width: 100%;
  border-collapse: collapse;
}

.mz2-table th {
  padding: 10px 18px;
  color: #8190a4;
  background: #fbfcfe;
  border-bottom: 1px solid #edf1f6;
  font-size: 9.5px;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.mz2-table td {
  min-width: 105px;
  height: 66px;
  padding: 8px 18px;
  border-bottom: 1px solid #edf1f6;
  font-size: 12px;
  white-space: nowrap;
}

.mz2-table tr:last-child td {
  border-bottom: 0;
}

.mz2-table tbody tr:hover {
  background: #fbfdff;
}

.mz2-table td > strong {
  display: block;
  color: var(--mz2-navy);
  font-size: 12.5px;
  font-weight: 900;
}

.mz2-table td > small {
  color: var(--mz2-muted);
  font-size: 8.5px;
}

.mz2-asset {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mz2-asset:hover strong {
  color: var(--mz2-blue);
}

.mz2-tool-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mz2-tool-card {
  min-width: 0;
  min-height: 124px;
  padding: 17px;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) 18px;
  align-items: start;
  gap: 11px;
  color: var(--mz2-text);
  background: #fff;
  border: 1px solid var(--mz2-line);
  border-radius: 14px;
  text-align: right;
  cursor: pointer;
  transition: .2s ease;
}

.mz2-tool-card:hover {
  border-color: #bed3f0;
  box-shadow: var(--mz2-shadow);
  transform: translateY(-2px);
}

.mz2-tool-card--button {
  width: 100%;
  font-family: inherit;
}

.mz2-tool-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--mz2-blue);
  background: var(--mz2-blue-soft);
  border-radius: 11px;
}

.mz2-tool-icon--gold { color: var(--mz2-gold); background: var(--mz2-gold-bg); }
.mz2-tool-icon--violet { color: var(--mz2-violet); background: #f3efff; }
.mz2-tool-icon--green { color: var(--mz2-green); background: var(--mz2-green-bg); }

.mz2-tool-card h3 {
  margin: 1px 0 4px;
  color: var(--mz2-navy);
  font-size: 13.5px;
  font-weight: 900;
}

.mz2-tool-card p {
  margin: 0;
  color: var(--mz2-muted);
  font-size: 10px;
  line-height: 1.75;
}

.mz2-tool-arrow {
  width: 18px;
  height: 18px;
  align-self: center;
  color: #91a1b5;
}

.mz2-crypto-movers {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
}

.mz2-crypto-grid {
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.mz2-crypto-card {
  min-width: 0;
  min-height: 64px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 38px minmax(60px, 1fr) auto auto;
  align-items: center;
  gap: 9px;
  background: #fbfcfe;
  border: 1px solid #edf1f6;
  border-radius: 11px;
}

.mz2-crypto-card:hover {
  background: #f6faff;
  border-color: #d2e0f2;
}

.mz2-crypto-card > b {
  color: var(--mz2-navy);
  font-size: 11px;
}

.mz2-mover-list {
  padding: 5px 16px;
}

.mz2-mover-list a {
  min-height: 59px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid #edf1f6;
}

.mz2-mover-list a:last-child {
  border-bottom: 0;
}

.mz2-mover-rank {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #718096;
  background: #f1f4f8;
  border-radius: 7px;
  direction: ltr;
  font-size: 9px;
  font-weight: 900;
}

.mz2-mover-note {
  margin: 5px 14px 14px;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #728197;
  background: #f8fafc;
  border-radius: 9px;
  font-size: 9px;
  line-height: 1.7;
}

.mz2-seo-block {
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, .45fr);
  padding: 24px;
  background: #fff;
  border: 1px solid var(--mz2-line);
  border-radius: 18px;
}

.mz2-seo-main > p {
  margin: 13px 0 0;
  color: #596c84;
  font-size: 13px;
  line-height: 2.05;
}

.mz2-guide-links {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mz2-guide-links a {
  min-width: 0;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  gap: 2px 8px;
  background: #f8fbff;
  border: 1px solid #e1ebf7;
  border-radius: 11px;
}

.mz2-guide-links strong {
  color: var(--mz2-navy);
  font-size: 11px;
}

.mz2-guide-links span {
  overflow: hidden;
  color: var(--mz2-muted);
  font-size: 8.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mz2-guide-links .mz-icon {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--mz2-blue);
}

.mz2-editorial-note {
  padding: 20px;
  color: #38516f;
  background: var(--mz2-blue-soft);
  border: 1px solid #d4e5fa;
  border-radius: 14px;
}

.mz2-editorial-note > .mz-icon {
  width: 27px;
  height: 27px;
  color: var(--mz2-blue);
}

.mz2-editorial-note h3 {
  margin: 10px 0 5px;
  color: var(--mz2-navy);
  font-size: 14px;
  font-weight: 900;
}

.mz2-editorial-note p {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.9;
}

.mz2-editorial-note a {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--mz2-blue);
  font-size: 10px;
  font-weight: 850;
}

.mz2-faq-list {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 9px;
}

.mz2-faq details {
  background: #fff;
  border: 1px solid var(--mz2-line);
  border-radius: 12px;
}

.mz2-faq summary {
  min-height: 57px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--mz2-navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  list-style: none;
}

.mz2-faq summary::-webkit-details-marker { display: none; }
.mz2-faq summary .mz-icon { color: #8292a7; transition: transform .18s ease; }
.mz2-faq details[open] summary .mz-icon { color: var(--mz2-blue); transform: rotate(180deg); }

.mz2-faq details p {
  margin: 0;
  padding: 0 15px 15px;
  color: #63748b;
  font-size: 11px;
  line-height: 1.95;
}

/* Watchlist */
.mz2-watchlist-drawer {
  position: fixed;
  inset: 0;
  z-index: 1300;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: .2s ease;
}

.mz2-watchlist-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mz2-watchlist-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 50, .36);
  border: 0;
  backdrop-filter: blur(3px);
}

.mz2-watchlist-panel {
  width: min(390px, calc(100% - 20px));
  height: 100%;
  padding: 20px;
  position: absolute;
  inset: 0 0 0 auto;
  background: #fff;
  box-shadow: -20px 0 60px rgba(14, 28, 50, .16);
  transform: translateX(105%);
  transition: transform .24s ease;
}

.mz2-watchlist-drawer.is-open .mz2-watchlist-panel { transform: translateX(0); }

.mz2-watchlist-head {
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--mz2-line);
}

.mz2-watchlist-head > div { display: grid; gap: 2px; }
.mz2-watchlist-head span { color: var(--mz2-muted); font-size: 10px; }
.mz2-watchlist-head strong { color: var(--mz2-navy); font-size: 18px; }

.mz2-watchlist-content { margin-top: 12px; display: grid; gap: 7px; }
.mz2-watchlist-empty { padding: 28px 15px; color: var(--mz2-muted); background: #f8fafc; border-radius: 12px; text-align: center; font-size: 11px; line-height: 1.9; }

.mz2-watchlist-item {
  min-height: 60px;
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 30px;
  align-items: center;
  gap: 9px;
  background: #fbfcfe;
  border: 1px solid #e8edf4;
  border-radius: 10px;
}

.mz2-watchlist-item a { display: grid; gap: 2px; }
.mz2-watchlist-item strong { color: var(--mz2-navy); font-size: 12px; }
.mz2-watchlist-item small { color: var(--mz2-muted); font-size: 9px; }
.mz2-watchlist-item > b { color: var(--mz2-navy); font-size: 11px; }
.mz2-watchlist-item button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--mz2-red); background: var(--mz2-red-bg); border: 0; border-radius: 7px; cursor: pointer; }

.mz2-watchlist-privacy { margin-top: 14px; display: flex; align-items: center; gap: 6px; color: var(--mz2-muted); font-size: 9px; }

.mz2-toast {
  min-width: 230px;
  min-height: 44px;
  padding: 10px 15px;
  position: fixed;
  z-index: 1500;
  right: 50%;
  bottom: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--mz2-navy);
  border-radius: 11px;
  box-shadow: 0 14px 40px rgba(18, 35, 63, .22);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 12px);
  transition: .2s ease;
  font-size: 11px;
  font-weight: 750;
}

.mz2-toast.is-visible { opacity: 1; transform: translate(50%, 0); }

/* Existing listing/detail pages: clearer, distinct light hero treatments */
.page-arz .pghd,
.page-arz .cp-hero {
  background: linear-gradient(110deg, #eef6ff, #fff 58%) !important;
  border-color: #cfe1f7 !important;
  border-right: 5px solid var(--mz2-blue) !important;
}

.page-gold .pghd,
.page-gold .cp-hero {
  background: linear-gradient(110deg, #fff8e8, #fff 58%) !important;
  border-color: #f0dfb6 !important;
  border-right: 5px solid #c9911b !important;
}

.page-crypto .pghd,
.page-crypto .cp-hero {
  background: linear-gradient(110deg, #f3f0ff, #fff 58%) !important;
  border-color: #ded6fa !important;
  border-right: 5px solid var(--mz2-violet) !important;
}

.page-widget .wg-hero {
  background: linear-gradient(110deg, #eef6ff, #fff 58%) !important;
  border-color: #cfe1f7 !important;
  border-right: 5px solid var(--mz2-blue) !important;
}

.pghd,
.cp-hero {
  padding: 26px !important;
  border-radius: 18px !important;
}

.pghd-title,
.cp-name {
  color: var(--mz2-navy) !important;
  text-shadow: none !important;
}

.pghd-sub,
.pghd-meta-item,
.cp-h2,
.cp-name-en,
.cp-price-label,
.cp-meta-label,
.cp-meta-time {
  color: #61738a !important;
}

.pghd-usd,
.pghd-gold,
.pghd-btc {
  min-width: 200px;
  color: var(--mz2-navy) !important;
  background: rgba(255, 255, 255, .86) !important;
  border: 1px solid rgba(192, 208, 228, .75) !important;
  box-shadow: 0 10px 30px rgba(35, 55, 83, .07) !important;
}

.pghd-usd *,
.pghd-gold *,
.pghd-btc * {
  color: inherit !important;
  text-shadow: none !important;
}

.cp-price-val,
.cp-price-irr,
.cp-stat2-val {
  color: var(--mz2-navy) !important;
  text-shadow: none !important;
}

.cmp-card {
  background: #fff !important;
  border-color: var(--mz2-line) !important;
  box-shadow: 0 5px 18px rgba(35, 55, 83, .04) !important;
}

.cmp-card:hover {
  border-color: #bfd3ee !important;
  box-shadow: var(--mz2-shadow) !important;
}

.seo-wrap {
  background: #fff !important;
  border: 1px solid var(--mz2-line) !important;
  border-radius: 17px !important;
  box-shadow: 0 5px 22px rgba(35, 55, 83, .04) !important;
}

/* Methodology page */
.method-page { max-width: 980px; }
.method-hero { padding: 32px; background: linear-gradient(110deg, #eef6ff, #fff 62%); border: 1px solid #d3e3f7; border-radius: 20px; }
.method-hero-badge { display: inline-flex; align-items: center; gap: 6px; color: var(--mz2-blue); font-size: 11px; font-weight: 850; }
.method-hero h1 { margin: 10px 0 8px; color: var(--mz2-navy); font-size: clamp(26px, 4vw, 40px); font-weight: 900; letter-spacing: -1px; }
.method-hero p { max-width: 750px; margin: 0; color: #5c7089; line-height: 2; }
.method-meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.method-meta span { padding: 7px 10px; display: inline-flex; align-items: center; gap: 6px; color: #5d7088; background: rgba(255,255,255,.8); border: 1px solid #dae5f2; border-radius: 9px; font-size: 10px; }
.method-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.method-card { padding: 22px; background: #fff; border: 1px solid var(--mz2-line); border-radius: 15px; }
.method-card-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--mz2-blue); background: var(--mz2-blue-soft); border-radius: 11px; }
.method-card h2 { margin: 13px 0 6px; color: var(--mz2-navy); font-size: 17px; font-weight: 900; }
.method-card p, .method-card li { color: #61738a; font-size: 12px; line-height: 2; }
.method-card ul { margin: 8px 0 0; padding-right: 18px; }
.method-wide { margin-top: 12px; padding: 24px; background: #fff; border: 1px solid var(--mz2-line); border-radius: 15px; }
.method-wide h2 { margin: 0 0 8px; color: var(--mz2-navy); font-size: 19px; }
.method-wide p { color: #61738a; font-size: 12px; line-height: 2; }
.method-wide a { color: var(--mz2-blue); font-weight: 800; }

/* Footer refinement */
.site-footer {
  margin-top: 12px;
  background: #fff !important;
  border-top: 1px solid var(--mz2-line) !important;
}

.footer-brand > p,
.footer-contact > p,
.footer-bottom p,
.footer-bottom-links {
  color: #6d7d91 !important;
}

@media (max-width: 1180px) {
  .main-nav > a,
  .nav-drop-toggle { padding-inline: 9px; font-size: 12.5px; }
  .header-search span,
  .header-search kbd { display: none; }
  .header-search { width: 38px; padding: 0; justify-content: center; }
  .mz2-spot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mz2-tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .mz2-hero { grid-template-columns: 1fr; padding: 26px; }
  .mz2-market-pulse { max-width: none; }
  .mz2-market-layout,
  .mz2-crypto-movers,
  .mz2-seo-block { grid-template-columns: 1fr; }
  .mz2-guide-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .header-inner { min-height: 64px; }
  .header-search { width: 40px; height: 40px; display: grid; }
  .live-badge { display: none; }
  .market-search-results { grid-template-columns: 1fr; max-height: 55dvh; }
  .market-search-foot > span { display: none; }
  .market-search-foot { justify-content: flex-end; }
  .mz2-home { padding-top: 14px; }
  .mz2-hero { padding: 22px 18px; gap: 22px; border-radius: 18px; }
  .mz2-hero h1 { font-size: clamp(30px, 9vw, 42px); letter-spacing: -1.2px; }
  .mz2-hero-copy > p { font-size: 13px; }
  .mz2-hero-actions { align-items: stretch; flex-direction: column; }
  .mz2-search-cta { min-width: 0; width: 100%; }
  .mz2-secondary-cta { width: 100%; }
  .mz2-trust-row { gap: 10px 14px; }
  .mz2-pulse-row { grid-template-columns: 38px minmax(76px, 1fr) auto; }
  .mz2-pulse-row > .mz2-change { grid-column: 3; margin-top: -18px; transform: translateY(17px); }
  .mz2-section-head { align-items: flex-start; }
  .mz2-section-head > p,
  .mz2-updated { display: none; }
  .mz2-spot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mz2-tool-grid { grid-template-columns: 1fr; }
  .mz2-crypto-grid { grid-template-columns: 1fr; }
  .mz2-guide-links { grid-template-columns: 1fr; }
  .mz2-faq-list { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .pghd,
  .cp-hero { padding: 20px !important; }
}

@media (max-width: 520px) {
  .pg,
  .header-inner,
  .footer-inner { width: min(100% - 24px, 1240px); }
  .market-search-panel { padding: 15px; border-radius: 16px; }
  .market-search-head strong { font-size: 16px; }
  .mz2-eyebrow { font-size: 9.5px; }
  .mz2-eyebrow-sep { display: none; }
  .mz2-hero { padding: 20px 15px; }
  .mz2-market-pulse { padding: 14px; }
  .mz2-pulse-head a { display: none; }
  .mz2-spot-grid { grid-template-columns: 1fr 1fr; gap: 7px; }
  .mz2-spot-card { padding: 12px; }
  .mz2-spot-value { font-size: 17px; }
  .mz2-panel-head { padding: 13px; }
  .mz2-panel-title h2 { font-size: 14px; }
  .mz2-table th,
  .mz2-table td { padding-inline: 12px; }
  .mz2-table th:nth-child(3),
  .mz2-table td:nth-child(3) { position: sticky; left: 0; background: #fff; }
  .mz2-crypto-card { grid-template-columns: 38px minmax(58px, 1fr) auto; }
  .mz2-crypto-card > .mz2-change { grid-column: 3; }
  .mz2-seo-block { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
