:root {
  color-scheme: dark;
  font-family: "Segoe UI Variable", "Segoe UI", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
  --bg: #0b0e11;
  --bg-2: #14171d;
  --panel: rgba(22, 24, 29, 0.78);
  --panel-strong: rgba(28, 31, 38, 0.92);
  --yellow: #f0b90b;
  --yellow-2: #f8d12f;
  --yellow-dim: rgba(240, 185, 11, 0.4);
  --orange: var(--yellow);
  --orange-2: var(--yellow-2);
  --orange-dim: var(--yellow-dim);
  --teal: #f0b90b;
  --teal-soft: rgba(240, 185, 11, 0.16);
  --text: #f5f5f5;
  --muted: #9aa0a6;
  --faint: #68707a;
  --line: rgba(240, 185, 11, 0.3);
  --line-soft: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
  background: var(--bg);
  color: var(--text);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.app-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 13px),
    repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 8% 0%, rgba(240, 185, 11, 0.18), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(246, 207, 69, 0.1), transparent 26%),
    linear-gradient(145deg, #171a20 0%, #0b0e11 42%, #11151b 70%, #080a0d 100%);
}

.app-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0 42%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(240, 185, 11, 0.045), rgba(0, 0, 0, 0.38));
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(340px, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(22px, 4vw, 56px);
  border: 1px solid var(--line);
  border-inline: 0;
  background:
    linear-gradient(180deg, rgba(24, 26, 32, 0.96), rgba(11, 14, 17, 0.9)),
    rgba(8, 10, 13, 0.92);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.34), inset 0 -1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(168px, 16vw, 230px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(240, 185, 11, 0.16));
}

.main-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 52px;
}

.main-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: #aaa9a6;
  font-size: 16px;
  font-weight: 760;
  text-decoration: none;
}

.main-nav a.active {
  color: var(--orange-2);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -1px;
  left: -26px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  box-shadow: 0 0 18px var(--orange);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.network-button,
.wallet-button,
.social-link,
.reward-row button,
.connect-note button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.network-button {
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(14, 14, 14, 0.72);
}

.social-link {
  width: 42px;
  min-height: 42px;
  border: 1px solid rgba(240, 185, 11, 0.46);
  color: var(--yellow-2);
  background: rgba(240, 185, 11, 0.07);
}

.social-link svg,
.mobile-dapp-bar svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.coin-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 42%, rgba(255, 255, 255, 0.9) 42% 56%, transparent 56%),
    var(--orange-2);
}

.chevron {
  color: var(--muted);
  font-size: 16px;
}

.wallet-button {
  gap: 9px;
  min-width: 138px;
  padding: 0 18px;
  border: 1px solid var(--orange);
  color: var(--yellow-2);
  background: linear-gradient(180deg, rgba(240, 185, 11, 0.18), rgba(240, 185, 11, 0.05));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.wallet-glyph {
  width: 19px;
  height: 14px;
  border: 2px solid var(--orange);
  border-radius: 3px;
}

.network-button:hover,
.wallet-button:hover,
.social-link:hover,
.reward-row button:hover,
.connect-note button:hover,
.text-button:hover {
  transform: translateY(-1px);
  border-color: var(--orange-2);
  box-shadow: 0 0 24px rgba(240, 185, 11, 0.2);
}

.app-shell {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto;
  padding: 26px 0 14px;
}

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

.panel,
.metric-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.06);
}

.panel::before,
.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 0 0, rgba(240, 185, 11, 0.1), transparent 34%);
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 110px;
  padding: 22px;
}

.metric-card > * {
  position: relative;
  z-index: 1;
}

.metric-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(240, 185, 11, 0.13);
}

.metric-icon::before,
.metric-icon::after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0.82;
}

.metric-icon {
  position: relative;
}

.metric-icon::before {
  inset: 10px;
  border-radius: 3px;
  background: var(--orange);
}

.metric-icon.bars::before {
  inset: auto auto 10px 11px;
  width: 4px;
  height: 13px;
  box-shadow: 7px -6px 0 var(--orange), 14px -11px 0 var(--orange);
}

.metric-icon.flame::before {
  inset: 9px 12px 9px 12px;
  border-radius: 70% 25% 65% 35%;
  transform: rotate(45deg);
}

.metric-icon.users::before {
  inset: 10px 9px auto;
  height: 10px;
  border-radius: 999px 999px 4px 4px;
  box-shadow: 0 8px 0 -2px var(--orange);
}

.metric-icon.pie::before {
  inset: 10px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 75%, transparent 75% 100%);
}

.metric-icon.vault::before {
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 34%, var(--orange) 36% 58%, transparent 60%);
}

.metric-card span,
.reward-row span,
.treasury-card span,
.mini-ledger dt,
.pool-readout small,
.buyer-block small,
.last-buy span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 660;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 820;
  line-height: 1.1;
}

.metric-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.up {
  color: var(--teal) !important;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 0.95fr);
  gap: 14px;
  margin-top: 22px;
}

.fomo-panel {
  min-height: 396px;
  padding: 24px 24px 26px;
}

.panel > * {
  position: relative;
  z-index: 1;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.title-line {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

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

h1,
h2 {
  color: #f8f8f4;
  font-weight: 830;
  letter-spacing: 0;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 22px;
}

.title-line a,
.card-heading a {
  color: var(--orange-2);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
}

.title-line a::after {
  content: "↗";
  margin-left: 7px;
}

.fomo-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 52px;
  margin-top: 30px;
}

.pool-readout strong {
  display: block;
  color: var(--orange-2);
  font-size: clamp(48px, 5.2vw, 64px);
  font-weight: 880;
  line-height: 0.98;
}

.pool-readout strong span {
  color: #b5b5b5;
  font-size: 34px;
  font-weight: 680;
}

.pool-readout > small {
  display: block;
  margin-top: 12px;
  color: #dfdfdc;
  font-size: 17px;
}

.buyer-block {
  margin-top: 28px;
}

.buyer-block span,
.buyer-block b,
.buyer-block small {
  display: block;
}

.buyer-block b {
  margin-top: 8px;
  color: #d7d7d4;
  font-size: 24px;
  font-weight: 760;
}

.buyer-block small {
  margin-top: 6px;
}

.countdown-card {
  padding-top: 12px;
  text-align: left;
}

.countdown-card > span {
  display: block;
  color: #c5c5c1;
  font-size: 14px;
  text-align: center;
}

.countdown-card > strong {
  display: block;
  margin-top: 8px;
  color: var(--orange-2);
  font-size: clamp(52px, 5.8vw, 66px);
  font-weight: 840;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 28px rgba(240, 185, 11, 0.22);
}

.time-labels {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 8px;
  color: #c8c8c4;
}

.last-buy {
  margin-top: 20px;
}

.last-buy span,
.last-buy b {
  display: block;
}

.last-buy b {
  margin-top: 8px;
  color: #cfcfcb;
  font-size: 17px;
  font-weight: 580;
}

.round-progress {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.progress-head span {
  color: #cfcfcb;
  font-size: 14px;
}

.progress-track {
  position: relative;
  height: 16px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 185, 11, 0.16), rgba(240, 185, 11, 0.07));
  box-shadow: inset 0 0 0 1px rgba(240, 185, 11, 0.22);
}

.progress-track span {
  position: absolute;
  inset: 4px auto 4px 4px;
  width: 70%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f0b90b, #f8d12f);
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.48);
}

.progress-track i {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #f8d12f;
  border-radius: 50%;
  background: #f0b90b;
  transform: translate(-50%, -50%);
}

.progress-track i:nth-child(2) { left: 0%; }
.progress-track i:nth-child(3) { left: 50%; }
.progress-track i:nth-child(4) { left: 73%; }
.progress-track i:nth-child(5) { left: 100%; }

.progress-times {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #9e9e9a;
  font-size: 14px;
  line-height: 1.5;
}

.rewards-panel {
  min-height: 396px;
  padding: 24px 22px;
}

.panel-header.side {
  margin-bottom: 14px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  color: #e8e8e3;
  font-size: 22px;
  background: transparent;
}

.reward-row {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 14px;
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
}

.reward-row + .reward-row {
  margin-top: 12px;
}

.reward-row strong {
  display: block;
  margin-top: 12px;
  color: #e8e8e5;
  font-size: 30px;
  font-weight: 820;
}

.reward-row strong small {
  color: #b9b9b5;
  font-size: 18px;
  font-weight: 620;
}

.reward-row p {
  margin-top: 8px;
  color: #b3b3af;
}

.reward-row button {
  align-self: center;
  min-height: 54px;
  border: 1px solid var(--orange);
  color: #181a20;
  background: linear-gradient(180deg, #f8d12f, #f0b90b);
  box-shadow: 0 0 28px rgba(240, 185, 11, 0.32);
}

.reward-row b {
  grid-column: 2;
  color: var(--orange-2);
  font-size: 14px;
  text-align: center;
}

.reward-row.teal strong {
  color: var(--teal);
}

.reward-row.teal button {
  color: var(--teal);
  border-color: rgba(240, 185, 11, 0.72);
  background: linear-gradient(180deg, rgba(240, 185, 11, 0.14), rgba(240, 185, 11, 0.04));
  box-shadow: 0 0 22px rgba(240, 185, 11, 0.16);
}

.connect-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.connect-note span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.connect-note button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--orange);
  color: var(--yellow-2);
  background: rgba(240, 185, 11, 0.06);
}

.treasury-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
  gap: 10px;
  margin-top: 12px;
}

.treasury-card {
  min-height: 264px;
  padding: 22px;
}

.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.card-heading h2 {
  font-size: 20px;
}

.help {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: #aaa;
  font-size: 12px;
}

.split-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 24px;
}

.split-stats > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.split-stats strong,
.ledger-body strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 780;
}

.teal-stat strong {
  color: var(--teal);
}

.orange-stat strong,
.ledger-body strong,
.ledger-body b {
  color: var(--orange-2);
}

.split-stats small,
.ledger-body small {
  display: block;
  margin-top: 8px;
  color: #a8a8a4;
  font-size: 14px;
}

.card-rule {
  height: 1px;
  margin: 42px 0 22px;
  background: rgba(255, 255, 255, 0.14);
}

.mini-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.mini-ledger div {
  min-width: 0;
}

.mini-ledger dt,
.mini-ledger dd {
  display: block;
  margin: 0;
}

.mini-ledger dd {
  margin-top: 7px;
  color: #e3e3df;
  font-size: 17px;
}

.ledger-body {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  margin-top: 12px;
}

.ledger-body span {
  display: block;
  margin-top: 12px;
}

.ledger-body b {
  display: block;
  margin-top: 8px;
  color: #b9b9b5;
  font-size: 20px;
  font-weight: 540;
}

.hidden-wallet-data {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.app-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 clamp(22px, 4vw, 56px);
  border: 1px solid var(--line);
  border-inline: 0;
  background: rgba(8, 8, 8, 0.88);
}

.app-footer p {
  color: #9d9d99;
  font-size: 14px;
  text-decoration: none;
}

.mobile-dapp-bar {
  display: none;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: rgba(16, 16, 16, 0.95);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.article-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 80px;
}

.rules-article {
  padding: clamp(22px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(18, 18, 18, 0.84);
  box-shadow: var(--shadow);
}

.article-kicker {
  margin: 0 0 10px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rules-article h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 72px);
}

.rules-article h2 {
  margin: 38px 0 12px;
  color: #f4f0df;
  font-size: 25px;
}

.rules-article p {
  margin: 0 0 16px;
  color: #d1d1cc;
  font-size: 16px;
  line-height: 1.95;
}

.rules-article .lead {
  color: #efefea;
  font-size: 18px;
}

@media (max-width: 1120px) {
  .app-header {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 16px;
  }

  .main-nav,
  .header-actions {
    justify-content: flex-start;
  }

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

  .dashboard-grid,
  .treasury-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 82px;
  }

  .app-shell {
    width: min(100% - 22px, 1320px);
    padding-top: 14px;
  }

  .brand-logo {
    width: clamp(138px, 46vw, 178px);
    max-height: 42px;
  }

  .main-nav {
    gap: 26px;
  }

  .header-actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header-actions .social-link {
    display: none;
  }

  .network-button,
  .wallet-button {
    flex: 1 1 0;
    min-width: 0;
  }

  .overview,
  .fomo-body,
  .split-stats,
  .ledger-body,
  .mini-ledger {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 96px;
    padding: 18px;
  }

  .fomo-panel,
  .rewards-panel,
  .treasury-card {
    padding: 18px;
  }

  .pool-readout strong,
  .countdown-card > strong {
    font-size: 46px;
  }

  .fomo-body {
    gap: 24px;
  }

  .countdown-card > span,
  .countdown-card > strong {
    text-align: left;
  }

  .time-labels {
    justify-content: flex-start;
  }

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

  .reward-row b {
    grid-column: 1;
    text-align: left;
  }

  .split-stats > div + div {
    padding-left: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .app-footer {
    padding-block: 18px;
  }

  .mobile-dapp-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(240, 185, 11, 0.42);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(24, 26, 32, 0.94), rgba(11, 14, 17, 0.96));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.56), 0 0 28px rgba(240, 185, 11, 0.14);
    backdrop-filter: blur(18px);
  }

  .mobile-dapp-bar a,
  .mobile-dapp-bar button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 50px;
    border: 1px solid rgba(240, 185, 11, 0.36);
    border-radius: 8px;
    color: #e7c656;
    font-size: 11px;
    font-weight: 820;
    text-decoration: none;
    background: rgba(240, 185, 11, 0.055);
  }

  .mobile-dapp-bar button {
    color: #aaa6a0;
    background: rgba(240, 185, 11, 0.045);
  }

  .mobile-dapp-bar button.active {
    color: #fff8db;
    border-color: rgba(240, 185, 11, 0.86);
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.3), rgba(240, 185, 11, 0.12));
    box-shadow: 0 0 20px rgba(240, 185, 11, 0.2);
  }

  .tab-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
  }

  .tab-icon::before,
  .tab-icon::after {
    content: "";
    position: absolute;
    display: block;
  }

  .overview-icon::before {
    inset: 3px;
    border: 2px solid currentColor;
    border-radius: 4px;
    box-shadow: 0 6px 0 -3px currentColor;
  }

  .fomo-icon::before {
    inset: 2px 5px;
    border-radius: 70% 30% 70% 35%;
    background: currentColor;
    transform: rotate(45deg);
  }

  .rewards-icon::before {
    inset: 3px;
    border: 2px solid currentColor;
    border-radius: 50%;
  }

  .rewards-icon::after {
    left: 7px;
    top: 6px;
    width: 4px;
    height: 8px;
    border-radius: 99px;
    background: currentColor;
  }

  .treasury-icon::before {
    left: 2px;
    right: 2px;
    bottom: 3px;
    height: 11px;
    border: 2px solid currentColor;
    border-radius: 3px;
  }

  .treasury-icon::after {
    left: 5px;
    top: 1px;
    width: 8px;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background: currentColor;
  }

  .overview:not(.mobile-active),
  .fomo-panel:not(.mobile-active),
  .rewards-panel:not(.mobile-active),
  .treasury-grid:not(.mobile-active) {
    display: none;
  }

  .dashboard-grid {
    display: block;
  }

  .treasury-grid.mobile-active,
  .overview.mobile-active {
    display: grid;
  }

  .fomo-panel.mobile-active,
  .rewards-panel.mobile-active {
    display: block;
  }
}
