:root {
  --bg: #f5f6f8;
  --card: #ffffff;
  --panel: #ffffff;
  --panel-soft: #fafbfc;
  --ink: #161920;
  --muted: #8b909b;
  --muted-2: #b6bac3;
  --faint: #b6bac3;
  --line: #e7e9ed;
  --line-soft: #f0f1f3;
  --yellow: #f5c518;
  --yellow-dark: #a97600;
  --yellow-soft: #fff8db;
  --blue: #5266ef;
  --blue-soft: #eef0ff;
  --green: #12a16c;
  --green-soft: #eaf8f2;
  --red: #e75656;
  --red-soft: #fff6f6;
  --orange: #f28a38;
  --accent: #12a16c;
  --accent-soft: #eaf8f2;
  --amber: #a97600;
  --amber-soft: #fff8db;
  --chart-members: #24324f;
  --chart-members-glow: rgba(36, 50, 79, 0.14);
  --chart-index: #00a889;
  --chart-index-glow: rgba(0, 168, 137, 0.18);
  --chart-density-top: #ffe18a;
  --chart-density-mid: #f4bd59;
  --chart-density-bottom: #e79a43;
  --chart-density-label: #8a5a0a;
  --radius: 20px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 197, 24, 0.09), transparent 24rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.shell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 950;
}

.brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav a {
  min-height: 34px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #4d5663;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.nav a.active {
  border-color: rgba(15, 138, 112, 0.25);
  background: var(--accent-soft);
  color: #0b705b;
}

.stamp {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.stamp b {
  color: var(--ink);
  font-weight: 950;
}

.report-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  margin-top: 34px;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 950;
}

.dek {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 720;
}

.headline-stat {
  min-width: 230px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.headline-stat span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.headline-stat b {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.headline-stat small {
  display: block;
  margin-top: 7px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.metric {
  min-height: 102px;
  padding: 17px 18px;
  background: var(--panel);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.metric b {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.metric small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 760;
}

.metric.good b {
  color: var(--accent);
}

.metric.warn b {
  color: var(--amber);
}

.grid {
  display: grid;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.grid.home {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
}

.grid.top-volume {
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.78fr);
}

.grid.archive {
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
}

.stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line-soft);
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 950;
}

.panel-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 720;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--panel-soft);
  color: #59616d;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.pill.green {
  background: var(--accent-soft);
  color: #0b705b;
}

.pill.amber {
  background: var(--amber-soft);
  color: #8c560d;
}

.pill.red {
  background: var(--red-soft);
  color: #a03742;
}

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

.data-table th {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--faint);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}

.data-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
}

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

.data-table tr.primary {
  background: linear-gradient(90deg, rgba(191, 122, 19, 0.12), transparent 72%);
}

.asset {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}

.logo.blue {
  background: #3d57d7;
}

.logo.orange {
  background: #e67f22;
}

.logo.red {
  background: #cc3d4a;
}

.logo.green {
  background: var(--accent);
}

.asset b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 950;
}

.asset span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.chip {
  display: inline-flex;
  min-width: 56px;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--panel-soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.chip.live {
  background: var(--amber);
  color: #fff;
}

.chart-pad {
  padding: 20px 22px 22px;
}

.chart {
  width: 100%;
  height: 290px;
  display: block;
  overflow: visible;
}

.chart.compact {
  height: 176px;
}

.grid-line {
  stroke: #e4e1d9;
  stroke-dasharray: 3 4;
  stroke-width: 1;
}

.axis {
  fill: #737b86;
  font-size: 12px;
  font-weight: 760;
}

.trend-line,
.score-line,
.month-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trend-line {
  stroke: #181a1f;
  stroke-width: 3.5;
}

.score-line {
  stroke: var(--accent);
  stroke-width: 3;
}

.month-line {
  stroke: var(--blue);
  stroke-width: 3;
}

.month-bar {
  fill: rgba(52, 104, 201, 0.18);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0 22px 20px;
}

.legend span,
.summary-tile {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--panel);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

.dot.green {
  background: var(--accent);
}

.dot.blue {
  background: var(--blue);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.summary-cell {
  min-height: 84px;
  padding: 15px 16px;
  background: var(--panel);
}

.summary-cell span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.summary-cell b {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.bubble-board {
  position: relative;
  min-height: 560px;
  margin: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(21, 23, 28, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 23, 28, 0.035) 1px, transparent 1px),
    var(--panel-soft);
  background-size: 56px 56px;
  overflow: hidden;
}

.bubble {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: var(--z);
  display: grid;
  place-items: center;
  width: var(--s);
  height: var(--s);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(21, 23, 28, 0.08);
  border-radius: 999px;
  background: var(--bgc);
  color: var(--fg);
  text-align: center;
}

.bubble b {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.bubble span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
}

.board-axis {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
}

.rank-list {
  display: grid;
}

.rank-row {
  display: grid;
  grid-template-columns: 30px 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line-soft);
}

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

.rank-no {
  color: var(--faint);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.rank-row.top .rank-no {
  color: var(--amber);
}

.coin {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
}

.coin.soft {
  background: var(--accent-soft);
  color: #0b705b;
}

.coin.blue {
  background: var(--blue-soft);
  color: #234f9f;
}

.coin.mix {
  background: linear-gradient(135deg, #43d8bd, #596edb, #f1b937);
  color: #08251e;
}

.rank-name b,
.rank-price b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
  font-weight: 950;
}

.rank-name span,
.rank-price span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.rank-price {
  text-align: right;
  white-space: nowrap;
}

.heatmap {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 6px;
  padding: 22px;
}

.hour {
  display: grid;
  place-items: center;
  min-height: 36px;
  border: 1px solid rgba(21, 23, 28, 0.06);
  border-radius: 6px;
  color: rgba(21, 23, 28, 0.75);
  font-size: 11px;
  font-weight: 950;
}

.hour.best {
  outline: 2px solid rgba(15, 138, 112, 0.18);
  border-color: rgba(15, 138, 112, 0.7);
}

.empty {
  margin: 22px;
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.empty b {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
}

.empty span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 740;
}

.progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 16px;
  align-items: center;
  padding: 0 22px 22px;
}

.bar-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.bar-top b {
  color: var(--ink);
  font-weight: 950;
}

.bar {
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e9e6dc;
  overflow: hidden;
}

.bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--accent);
}

.progress-score {
  display: grid;
  place-items: center;
  min-height: 82px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: center;
}

.progress-score b {
  display: block;
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.progress-score span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.market-shell {
  width: min(1440px, calc(100% - 48px));
  padding-top: 28px;
}

.dashboard-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--line);
}

.dashboard-title {
  min-width: 0;
}

.dashboard-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.12;
  font-weight: 850;
}

.dashboard-title p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.2;
  font-weight: 720;
}

.dashboard-meta {
  display: grid;
  gap: 12px;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 760;
  text-align: left;
  white-space: nowrap;
}

.dashboard-meta p {
  margin: 0;
}

.dashboard-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 7px;
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.dashboard-meta a:hover {
  background: rgba(36, 118, 232, 0.08);
}

.dashboard-meta a:focus-visible {
  outline: 2px solid rgba(36, 118, 232, 0.42);
  outline-offset: 3px;
}

.dashboard-meta span {
  color: var(--muted);
  font-weight: 760;
}

.dashboard-meta b {
  color: var(--ink);
  font-weight: 850;
}

.dashboard-meta em {
  color: #2476e8;
  font-style: normal;
  font-weight: 850;
}

.airdrop-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(250px, 0.58fr);
  grid-template-areas:
    "main main"
    "info ido"
    "upcoming ido";
  gap: 16px 42px;
  min-height: 326px;
  padding: 41px 44px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 84%, rgba(245, 197, 24, 0.13), transparent 30%),
    linear-gradient(135deg, #fffefa 0%, #ffffff 50%, #fafbfc 100%);
  box-shadow: 0 14px 38px rgba(24, 30, 42, 0.045);
  overflow: hidden;
}

.airdrop-main,
.airdrop-info,
.airdrop-upcoming,
.airdrop-ido-card {
  position: relative;
}

.airdrop-main {
  grid-area: main;
  padding: 0;
}

.section-title-block {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  align-content: start;
  min-width: 0;
}

.section-title-line {
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 0;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 650;
}

.airdrop-info,
.airdrop-upcoming {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 0;
}

.airdrop-info {
  grid-area: info;
}

.airdrop-upcoming {
  grid-area: upcoming;
}

.airdrop-title-logo {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  overflow: visible;
}

.airdrop-title-logo path {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.airdrop-main span,
.strip-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  font-weight: 720;
}

.airdrop-main strong {
  display: block;
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
}

.condition-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 150px));
  gap: 14px;
}

.condition-pair div {
  min-height: 64px;
  padding: 12px 0 10px 16px;
  border-left: 2px solid #ffac13;
  background: transparent;
}

.condition-pair div + div {
  border-left-color: #0f9a73;
}

.condition-pair small,
.ido-topline small {
  display: block;
  color: #8a929d;
  font-size: 12px;
  line-height: 1;
  font-weight: 560;
}

.condition-pair b {
  display: block;
  margin-top: 7px;
  color: #111827;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.today-airdrop-table {
  display: grid;
  gap: 5px;
  padding-top: 2px;
}

.today-airdrop-body {
  display: grid;
  gap: 5px;
}

.today-airdrop-head,
.today-airdrop-row {
  display: grid;
  grid-template-columns: minmax(78px, 1fr) minmax(58px, 0.55fr) minmax(66px, 0.62fr) minmax(54px, 0.48fr) minmax(82px, 0.72fr);
  column-gap: 10px;
  align-items: center;
}

.today-airdrop-head {
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 720;
}

.today-airdrop-row {
  min-height: 30px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
}

.today-airdrop-row[data-status="pending"] span,
.today-airdrop-row.is-empty span,
.today-airdrop-row.is-loading span {
  color: #838b96;
}

.today-airdrop-row + .today-airdrop-row {
  padding-top: 9px;
  border-top: 1px solid rgba(236, 239, 242, 0.9);
}

.today-airdrop-row strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
}

.today-airdrop-head span:last-child,
.today-airdrop-row span:last-child {
  white-space: nowrap;
}

.future-forecast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  min-height: 42px;
  padding-top: 2px;
}

.future-forecast-grid div {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
  padding: 0 18px;
  border-left: 1px dashed var(--line);
}

.future-forecast-grid .airdrop-empty {
  grid-column: 1 / -1;
}

.future-forecast-grid div:first-child {
  padding-left: 0;
  border-left: 0;
}

.future-forecast-grid b {
  display: block;
  color: var(--green);
  font-size: 14px;
  line-height: 1;
  font-weight: 820;
}

.future-forecast-grid span {
  display: block;
  color: #626a77;
  font-size: 12px;
  line-height: 1;
  font-weight: 680;
}

.airdrop-empty span {
  line-height: 1.35;
}

.airdrop-ido-card {
  grid-area: ido;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 0;
  padding: 28px 32px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  background:
    radial-gradient(circle at 88% 86%, rgba(245, 197, 24, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(250, 251, 252, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.airdrop-ido-card:hover {
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 197, 24, 0.2), transparent 34%),
    linear-gradient(135deg, #fffaf0, #fff);
}

.ido-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.ido-topline b {
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
  font-weight: 820;
}

.mini-progress {
  height: 9px;
  border-radius: 999px;
  background: #eee9dc;
  overflow: hidden;
}

.mini-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--yellow);
}

.airdrop-ido-card em {
  color: var(--yellow-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.terminal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 444px;
  gap: 21px;
  align-items: stretch;
  margin-top: 0;
}

.terminal-left {
  display: grid;
  gap: 21px;
  align-content: start;
  min-width: 0;
}

.terminal-panel {
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(24, 30, 42, 0.045);
  overflow: hidden;
}

.chart-terminal {
  min-height: 560px;
}

.terminal-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 38px 42px 15px;
}

.chart-title {
  max-width: 720px;
}

.chart-title-logo {
  flex: 0 0 auto;
  width: 28px;
  height: 24px;
  overflow: visible;
}

.chart-title-logo path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.terminal-panel-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
}

.terminal-panel-head p {
  max-width: 720px;
}

.chart-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 24px 42px 36px;
}

.chart-stats span {
  display: inline-block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.chart-stats b {
  margin-left: 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}

.chart-stats .up,
.token-price .up {
  color: var(--green);
}

.chart-stats .down,
.token-price .down {
  color: var(--red);
}

.terminal-chart-wrap {
  padding: 0 44px;
}

.terminal-chart {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1340 / 520;
  overflow: visible;
}

.member-area {
  fill: url("#memberAreaGradient");
}

.member-line {
  fill: none;
  stroke: var(--chart-members);
  stroke-width: 5.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 8px var(--chart-members-glow));
}

.index-line {
  fill: none;
  stroke: var(--chart-index);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 7px var(--chart-index-glow));
}

.density-bar {
  fill: url("#densityBarGradient");
  opacity: 0.94;
}

.density-label {
  fill: var(--chart-density-label);
  font-size: 10px;
  font-weight: 850;
}

.terminal-axis {
  fill: #626a77;
  font-size: 9px;
  font-weight: 800;
}

.terminal-axis-title {
  fill: #4d5563;
  font-size: 10px;
  font-weight: 850;
}

.terminal-grid-line {
  stroke: var(--line);
  stroke-dasharray: 7 8;
  stroke-width: 1;
}

.terminal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 42px 36px;
  color: #626a77;
  font-size: 12px;
  font-weight: 700;
}

  .chart-bottom-legend {
  justify-content: flex-start;
  padding: 15px 48px 38px;
}

.terminal-legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.legend-line {
  width: 22px;
  height: 3px;
  border-radius: 999px;
}

.legend-line.black {
  background: var(--chart-members);
}

.legend-line.green {
  background: var(--chart-index);
}

.legend-bar {
  width: 18px;
  height: 12px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--chart-density-top), var(--chart-density-bottom));
}

.ido-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 22px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #e7e7e4;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.045);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ido-bar:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(21, 23, 28, 0.055);
}

.ido-bar span {
  color: #68707a;
  font-size: 14px;
  font-weight: 820;
}

.ido-bar strong {
  display: block;
  margin-top: 7px;
  color: #1b1f26;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 950;
}

.ido-metrics {
  display: flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

.ido-metrics span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #fff8df;
  color: #6b737d;
}

.ido-metrics b {
  color: #111827;
  font-weight: 950;
}

.token-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 0;
  padding: 41px 39px 39px;
  background: var(--card);
}

.token-panel::before {
  content: "Alpha";
  position: absolute;
  top: 22px;
  right: -34px;
  color: rgba(22, 25, 32, 0.026);
  font-size: 92px;
  line-height: 1;
  font-weight: 900;
  transform: rotate(-18deg);
  pointer-events: none;
}

.token-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding: 0 2px 36px;
}

.token-title-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-bottom: 3px solid var(--blue);
}

.token-title-icon::before,
.token-title-icon::after,
.token-title-icon i {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--blue);
}

.token-title-icon::before {
  left: 3px;
  height: 20px;
}

.token-title-icon i {
  left: 11px;
  height: 12px;
}

.token-title-icon::after {
  left: 19px;
  height: 16px;
}

.token-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
}

.token-live-pill {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 31px;
  margin-top: 2px;
  border: 1px solid #f0df94;
  border-radius: 8px;
  background: var(--yellow-soft);
  color: var(--yellow-dark);
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}

.token-list {
  display: grid;
  position: relative;
  z-index: 1;
  grid-auto-rows: minmax(70px, auto);
  flex: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.token-loading-row {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 32px;
  border: 1px dashed rgba(245, 197, 24, 0.38);
  border-radius: 18px;
  background: rgba(255, 248, 219, 0.28);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 760;
  text-align: center;
}

.token-loading-row.error {
  border-color: rgba(231, 86, 86, 0.3);
  background: rgba(255, 246, 246, 0.56);
  color: var(--red);
}

.token-row {
  display: grid;
  grid-template-columns: 28px 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line-soft);
}

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

.token-row.top {
  min-height: 75px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 197, 24, 0.36);
  border-radius: 18px;
  background: rgba(255, 248, 219, 0.36);
}

.token-no {
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 780;
  text-align: center;
}

.token-row.top .token-no {
  color: var(--yellow-dark);
}

.token-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #12141a;
  color: #fff;
  font-size: 10px;
  font-weight: 760;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 8px 16px rgba(17, 24, 39, 0.08);
}

.token-logo.image {
  overflow: hidden;
  background: #f1f3f5;
}

.token-logo img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.token-logo.blue {
  background: #10284b;
}

.token-logo.soft {
  background: #eef0f0;
  color: #2b323b;
}

.token-logo.mint {
  background: #e1faf2;
  color: #0a8c6a;
}

.token-logo.mix {
  background: linear-gradient(135deg, #39e0c3, #6f55f4, #e9b520);
  color: #092a22;
}

.token-logo.paper {
  background: #fff9e8;
  color: #a36a0a;
}

.token-name b,
.token-price b {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  font-weight: 780;
}

.token-name > small {
  margin-top: 8px;
}

.token-tags {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin-top: 8px;
}

.token-tags small {
  margin-top: 0;
}

.token-tag {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--yellow);
  color: #3b2b00;
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  white-space: nowrap;
}

.token-tag em {
  color: #1f1800;
  font-style: normal;
  font-weight: 820;
}

.token-tag span {
  color: var(--yellow-dark);
}

.token-tag.muted {
  background: var(--line-soft);
  color: #626a77;
}

.token-row.stock-token-row {
  background: rgba(232, 247, 243, 0.22);
}

.token-row.stock-token-row:nth-child(6) {
  margin-top: 10px;
  border-top: 1px solid rgba(25, 165, 143, 0.3);
}

.token-row.stock-token-row.top {
  border: 1px solid rgba(245, 197, 24, 0.36);
  background: rgba(255, 248, 219, 0.36);
}

.token-traders {
  display: block;
  margin-top: 8px;
  color: #0c6257;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.token-competition-tag {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  min-height: 22px;
  padding: 4px 6px;
  border-radius: 6px;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 860;
  white-space: nowrap;
}

.token-price small {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 680;
}

.token-price small em {
  font-style: normal;
  font-weight: 820;
}

.token-price {
  text-align: right;
  white-space: nowrap;
}

.report-shell {
  width: min(1450px, calc(100% - 56px));
  margin: 0 auto;
  padding: 56px 0 66px;
}

.report-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid #deded9;
}

.report-masthead h1 {
  margin: 0;
  color: #111827;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 950;
}

.report-masthead p {
  margin: 9px 0 0;
  color: #9aa1aa;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 850;
}

.report-meta {
  display: grid;
  gap: 8px;
  color: #858c96;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.report-meta b {
  color: #29313f;
  font-weight: 950;
}

.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(390px, 0.72fr);
  gap: 28px;
  align-items: start;
  margin-top: 38px;
}

.report-left {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.report-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e7e7e4;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.045);
}

.report-card::after {
  content: attr(data-watermark);
  position: absolute;
  right: -14px;
  bottom: -52px;
  z-index: 0;
  color: rgba(17, 24, 39, 0.028);
  font-size: 154px;
  line-height: 1;
  font-weight: 950;
  transform: rotate(-24deg);
  pointer-events: none;
  white-space: nowrap;
}

.report-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 30px 0;
}

.report-title {
  display: flex;
  gap: 12px;
  align-items: center;
}

.report-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
}

.report-icon.amber {
  color: #c69215;
}

.report-icon.blue {
  color: #4c78d8;
}

.report-icon.purple {
  color: #5961d6;
}

.report-card h2 {
  margin: 0;
  color: #151b27;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 950;
}

.report-card-head p {
  margin: 8px 0 0 40px;
  color: #77808b;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 720;
}

.refresh-mark,
.live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  border-radius: 6px;
  background: #f2f3f2;
  color: #8b929c;
  font-size: 12px;
  font-weight: 950;
}

.airdrop-report-card {
  min-height: 500px;
}

.airdrop-report-table {
  position: relative;
  z-index: 1;
  width: calc(100% - 56px);
  margin: 28px;
  border-collapse: collapse;
}

.airdrop-report-table th {
  padding: 0 20px 17px;
  border-bottom: 1px solid #ececea;
  color: #a0a6ae;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  text-align: left;
  white-space: nowrap;
}

.airdrop-report-table td {
  padding: 23px 20px;
  border-bottom: 1px solid #f1f2f2;
  color: #111827;
  font-size: 19px;
  font-weight: 950;
  white-space: nowrap;
}

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

.airdrop-report-table tr.featured {
  outline: 1px solid rgba(245, 181, 27, 0.34);
  outline-offset: -9px;
  background: rgba(255, 248, 223, 0.28);
  box-shadow: inset 0 0 0 1px rgba(245, 181, 27, 0.1);
}

.project-pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 220px;
}

.project-logo {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.project-logo.blue {
  background: #4e4ee8;
}

.project-logo.orange {
  background: #ff821f;
}

.project-logo.black {
  background: #030303;
}

.project-logo.red {
  background: #f04451;
}

.project-pill b {
  display: block;
  color: #151b27;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 950;
}

.project-pill small {
  display: block;
  margin-top: 5px;
  color: #a2a8b1;
  font-size: 13px;
  font-weight: 760;
}

.time-badge {
  display: inline-flex;
  justify-content: center;
  min-width: 54px;
  padding: 7px 10px;
  border-radius: 6px;
  background: #f1f2f2;
  color: #848b95;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.time-badge.live {
  background: #ffac13;
  color: #fff;
}

.trend-report-card {
  min-height: 520px;
}

.trend-head {
  align-items: center;
}

.trend-side-stat {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 2px;
}

.trend-side-stat div {
  padding-left: 20px;
  border-left: 3px solid #111827;
}

.trend-side-stat div + div {
  border-left-color: #16a071;
}

.trend-side-stat span {
  display: block;
  color: #a1a8b1;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}

.trend-side-stat b {
  display: block;
  margin-top: 7px;
  color: #111827;
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}

.trend-side-stat .green {
  color: #16a071;
}

.report-chart-wrap {
  position: relative;
  z-index: 1;
  padding: 24px 30px 10px;
}

.report-chart {
  display: block;
  width: 100%;
  height: 330px;
  overflow: visible;
}

.report-legend {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 30px 18px;
  color: #77808b;
  font-size: 13px;
  font-weight: 850;
}

.report-legend span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.report-ido-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 28px 28px;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid #ececea;
  border-radius: 10px;
  background: rgba(250, 250, 249, 0.92);
  color: inherit;
  text-decoration: none;
}

.report-ido-strip span {
  display: block;
  color: #828995;
  font-size: 12px;
  font-weight: 900;
}

.report-ido-strip b {
  display: block;
  margin-top: 5px;
  color: #151b27;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}

.report-ido-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.report-ido-meta span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border-radius: 6px;
  background: #fff;
}

.report-ido-meta b {
  margin: 0;
  font-size: 13px;
}

.top-token-card {
  min-height: 1046px;
}

.top-token-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  padding: 24px 28px 28px;
}

.top-token-row {
  display: grid;
  grid-template-columns: 26px 50px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 72px;
  padding: 9px 12px;
}

.top-token-row.top {
  min-height: 82px;
  background: rgba(255, 248, 223, 0.2);
}

.top-token-row.top:first-child {
  border-radius: 12px 12px 0 0;
  border-top: 1px solid rgba(245, 181, 27, 0.3);
  border-left: 1px solid rgba(245, 181, 27, 0.3);
  border-right: 1px solid rgba(245, 181, 27, 0.3);
}

.top-token-row.top:nth-child(2) {
  border-left: 1px solid rgba(245, 181, 27, 0.3);
  border-right: 1px solid rgba(245, 181, 27, 0.3);
}

.top-token-row.top:nth-child(3) {
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid rgba(245, 181, 27, 0.3);
  border-left: 1px solid rgba(245, 181, 27, 0.3);
  border-right: 1px solid rgba(245, 181, 27, 0.3);
  margin-bottom: 18px;
}

.top-token-row:not(.top) {
  border-bottom: 1px solid #f1f2f2;
}

.top-token-row:last-child {
  border-bottom: 0;
}

.rank {
  color: #c6cad0;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.top-token-row.top .rank {
  color: #d99b12;
}

.coin-avatar {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #f0f0ee;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  font-size: 11px;
  font-weight: 950;
  overflow: hidden;
}

.coin-avatar.dark {
  background: #050505;
  color: #fff;
}

.coin-avatar.navy {
  background: #0d2547;
  color: #fff;
}

.coin-avatar.soft {
  background: #eff1f2;
  color: #434b56;
}

.coin-avatar.mint {
  background: #e8fbf7;
  color: #12806a;
}

.coin-avatar.mix {
  background: linear-gradient(135deg, #43f0d0, #7c4dff, #ffcf4b);
  color: #062019;
}

.coin-avatar.paper {
  background: #fff9e8;
  color: #a36a0a;
}

.coin-copy b,
.coin-price b {
  display: block;
  color: #141a24;
  font-size: 17px;
  line-height: 1;
  font-weight: 950;
}

.coin-copy small {
  display: inline-flex;
  margin-top: 7px;
  padding: 4px 7px;
  border-radius: 5px;
  background: #ffc915;
  color: #3b2b00;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}

.coin-price {
  text-align: right;
  white-space: nowrap;
}

.coin-price small {
  display: block;
  margin-top: 8px;
  color: #9ca3ad;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
}

.coin-price .up {
  color: #16a071;
}

.coin-price .down {
  color: #d94d59;
}

@media (max-width: 1120px) {
  .grid.home,
  .grid.top-volume,
  .grid.archive,
  .report-head,
  .terminal-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .airdrop-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "info ido"
      "upcoming ido";
  }

  .terminal-grid {
    gap: 21px;
  }

  .airdrop-main {
    grid-column: auto;
  }

  .airdrop-ido-card {
    grid-column: auto;
  }

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

  .top-token-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 100% 0%, rgba(245, 197, 24, 0.1), transparent 18rem),
      var(--bg);
  }

  .shell {
    width: min(100% - 22px, 1440px);
    padding-top: 18px;
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .stamp {
    text-align: left;
    white-space: normal;
  }

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

  .panel-head {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .chart-pad,
  .heatmap {
    padding-inline: 16px;
  }

  .chart {
    height: 230px;
  }

  .bubble-board {
    min-height: 420px;
    margin: 16px;
  }

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

  .rank-price {
    grid-column: 3 / 4;
    text-align: left;
  }

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

  .progress {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .report-shell {
    width: min(100% - 24px, 1450px);
    padding-top: 30px;
  }

  .report-masthead {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .report-masthead h1 {
    font-size: 29px;
  }

  .report-masthead p {
    font-size: 15px;
  }

  .report-meta {
    text-align: left;
    white-space: normal;
  }

  .report-card {
    border-radius: 10px;
  }

  .report-card-head {
    display: grid;
    padding: 22px 18px 0;
  }

  .report-card-head p {
    margin-left: 40px;
  }

  .airdrop-report-table {
    display: block;
    width: auto;
    margin: 20px 18px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .airdrop-report-table th,
  .airdrop-report-table td {
    padding-inline: 14px;
  }

  .trend-head {
    align-items: start;
  }

  .trend-side-stat {
    justify-content: flex-start;
  }

  .report-chart-wrap {
    padding-inline: 18px;
  }

  .report-chart {
    height: 250px;
  }

  .report-legend {
    padding-inline: 18px;
  }

  .report-ido-strip {
    grid-template-columns: 1fr;
    margin-inline: 18px;
  }

  .report-ido-meta {
    justify-content: flex-start;
  }

  .top-token-list {
    padding: 18px;
  }

  .top-token-row {
    grid-template-columns: 24px 46px minmax(0, 1fr);
  }

  .coin-price {
    grid-column: 3 / 4;
    text-align: left;
  }

  .market-shell {
    width: 100%;
    padding:
      max(16px, env(safe-area-inset-top))
      max(12px, env(safe-area-inset-right))
      30px
      max(12px, env(safe-area-inset-left));
  }

  .dashboard-masthead {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
    padding: 4px 0 16px;
  }

  .dashboard-title h1 {
    max-width: 8.8em;
    font-size: 32px;
    line-height: 1.08;
    text-wrap: balance;
  }

  .dashboard-title p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.35;
  }

  .dashboard-meta {
    gap: 8px;
    padding-bottom: 0;
    font-size: 13px;
    white-space: normal;
  }

  .terminal-grid,
  .terminal-left {
    gap: 14px;
  }

  .airdrop-strip {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "info"
      "upcoming"
      "ido";
    gap: 18px;
    min-height: auto;
    padding: 22px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(24, 30, 42, 0.045);
  }

  .airdrop-main {
    padding: 0;
  }

  .airdrop-info,
  .airdrop-upcoming,
  .airdrop-ido-card {
    min-height: 0;
    padding: 0;
  }

  .airdrop-info,
  .airdrop-upcoming {
    padding-inline: 0;
    gap: 13px;
  }

  .airdrop-ido-card {
    gap: 18px;
    padding: 18px;
    border-radius: 14px;
  }

  .airdrop-main strong {
    font-size: 26px;
  }

  .condition-pair {
    grid-template-columns: 1fr;
  }

  .today-airdrop-table {
    gap: 9px;
    overflow: visible;
  }

  .today-airdrop-head {
    display: none;
  }

  .today-airdrop-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
    min-height: 0;
    padding: 4px 0 0;
  }

  .today-airdrop-row strong {
    grid-column: 1 / -1;
    font-size: 20px;
    line-height: 1;
  }

  .today-airdrop-row span {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    min-height: 30px;
    padding: 7px 9px;
    border-radius: 8px;
    background: rgba(245, 246, 248, 0.9);
    color: #313844;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
  }

  .today-airdrop-row span::before {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 11px;
    font-weight: 720;
  }

  .today-airdrop-row span:nth-of-type(1)::before {
    content: "积分";
  }

  .today-airdrop-row span:nth-of-type(2)::before {
    content: "份数";
  }

  .today-airdrop-row span:nth-of-type(3)::before {
    content: "金额";
  }

  .today-airdrop-row span:nth-of-type(4)::before {
    content: "时间";
  }

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

  .future-forecast-grid div {
    gap: 6px;
    min-height: 44px;
    padding: 0 0 11px;
    border-left: 0;
    border-bottom: 1px dashed var(--line);
  }

  .future-forecast-grid div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .terminal-panel,
  .token-list,
  .ido-bar {
    border-radius: 16px;
  }

  .terminal-panel-head,
  .chart-stats,
  .terminal-chart-wrap,
  .terminal-legend {
    padding-inline: 20px;
  }

  .terminal-panel-head,
  .ido-bar {
    grid-template-columns: 1fr;
  }

  .terminal-panel-head {
    display: grid;
    gap: 8px;
    padding-top: 24px;
    padding-bottom: 8px;
  }

  .terminal-panel-head h1,
  .token-head h2 {
    font-size: 24px;
    line-height: 1.05;
  }

  .section-title-line {
    gap: 10px;
  }

  .chart-title-logo,
  .airdrop-title-logo {
    width: 25px;
    height: 25px;
  }

.chart-bottom-legend {
    justify-content: flex-start;
    gap: 10px 14px;
    padding: 14px 20px 24px;
    white-space: normal;
  }

  .chart-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 20px;
  }

  .chart-stats div {
    min-height: 66px;
    padding: 12px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--panel-soft);
  }

  .chart-stats span {
    display: block;
    font-size: 12px;
    line-height: 1.15;
  }

  .chart-stats b {
    display: block;
    margin: 8px 0 0;
    font-size: 18px;
    line-height: 1;
  }

  .terminal-chart-wrap {
    overflow: hidden;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .terminal-chart {
    width: 100%;
    max-width: 100%;
    height: 330px;
    aspect-ratio: auto;
  }

  .terminal-axis {
    font-size: 12px;
  }

  .terminal-axis-title,
  .density-label {
    font-size: 11px;
  }

  .ido-metrics {
    flex-wrap: wrap;
    white-space: normal;
  }

  .token-panel {
    padding: 24px 20px 20px;
  }

  .token-panel::before {
    top: 18px;
    right: -24px;
    font-size: 68px;
  }

  .token-head {
    align-items: center;
    padding: 0 0 20px;
  }

  .token-title-icon {
    width: 24px;
    height: 24px;
  }

  .token-live-pill {
    min-width: 48px;
    height: 28px;
    font-size: 11px;
  }

  .token-row {
    grid-template-columns: 24px 42px minmax(0, 1fr);
    gap: 9px;
    min-height: 66px;
    padding: 10px 0;
  }

  .token-row.top {
    padding-inline: 10px;
  }

  .token-logo {
    width: 42px;
    height: 42px;
  }

  .token-price {
    grid-column: 3 / 4;
    text-align: left;
    white-space: normal;
  }

  .token-name b,
  .token-price b {
    font-size: 14px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .token-tags {
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
  }

  .token-tag,
  .token-competition-tag {
    min-height: 20px;
    padding: 4px 6px;
    border-radius: 5px;
    font-size: 10px;
  }

  .token-price small {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px 8px;
    margin-top: 6px;
    font-size: 10px;
  }
}

@media (max-width: 430px) {
  .market-shell {
    padding-right: max(10px, env(safe-area-inset-right));
    padding-left: max(10px, env(safe-area-inset-left));
  }

  .dashboard-title h1 {
    max-width: 8.2em;
    font-size: 29px;
  }

  .dashboard-title p {
    font-size: 14px;
  }

  .airdrop-strip,
  .terminal-panel,
  .token-panel {
    border-radius: 14px;
  }

  .airdrop-strip {
    padding: 19px 16px;
  }

  .airdrop-main strong {
    font-size: 24px;
  }

  .today-airdrop-row span {
    padding-inline: 8px;
  }

  .future-forecast-grid span {
    line-height: 1.35;
  }

  .terminal-panel-head,
  .chart-stats,
  .terminal-chart-wrap,
  .terminal-legend {
    padding-inline: 16px;
  }

  .chart-stats div {
    min-height: 64px;
    padding: 11px;
  }

  .chart-stats b {
    font-size: 17px;
  }

  .terminal-chart {
    height: 315px;
  }

  .chart-bottom-legend {
    padding-inline: 16px;
  }

  .token-panel {
    padding: 22px 16px 18px;
  }

  .token-row {
    grid-template-columns: 22px 38px minmax(0, 1fr);
    min-height: 64px;
  }

  .token-logo {
    width: 38px;
    height: 38px;
  }

}
