:root {
  color-scheme: dark;
  --bg: #000;
  --panel: rgba(3, 7, 5, 0.96);
  --panel-strong: #030504;
  --line: rgba(255, 255, 255, 0.11);
  --line-green: rgba(0, 245, 155, 0.28);
  --text: #f7fff9;
  --muted: #87938d;
  --green: #00f59b;
  --green-soft: rgba(0, 245, 155, 0.11);
  --red: #ff6464;
  --amber: #ffb84d;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 1px solid var(--line-green);
  border-radius: 0;
  color: var(--text);
  background: var(--green-soft);
  cursor: pointer;
  font-weight: 800;
  padding: 11px 14px;
}

button:hover {
  background: rgba(0, 245, 155, 0.18);
}

.button-link,
.scan-wallet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-green);
  border-radius: 0;
  color: var(--text);
  background: var(--green-soft);
  cursor: pointer;
  font-weight: 800;
  padding: 11px 14px;
}

.button-link:hover,
.scan-wallet:hover {
  background: rgba(0, 245, 155, 0.18);
}

input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  padding: 12px 14px;
}

input:focus {
  border-color: var(--line-green);
}

.shell {
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 34px;
}

.topbar,
.brand,
nav,
.hero,
.panel-heading,
.search-row,
footer {
  display: flex;
  align-items: center;
}

.topbar,
.hero,
.panel-heading,
footer {
  justify-content: space-between;
  gap: 24px;
}

.topbar {
  margin-bottom: 12px;
}

.brand {
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-green);
  border-radius: 0;
  color: var(--green);
  background: var(--green-soft);
  font-size: 12px;
}

nav {
  gap: 10px;
  flex-wrap: wrap;
}

nav a {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

nav a:hover {
  border-color: var(--line-green);
  color: var(--text);
}

.hero {
  margin-bottom: 14px;
  padding: 0 0 2px;
}

.wallet-page-hero {
  margin: 12px 0 22px;
}

/* Wallet detail page heading — scoped smaller than the global h1
   (global is clamp(44px,4.9vw,78px); this is ~3 type-scale steps down). */
.wallet-page-hero h1 {
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.wallet-title-row,
.wallet-actions {
  display: flex;
  align-items: center;
}

.wallet-title-row {
  justify-content: space-between;
  gap: 18px;
}

.wallet-actions {
  gap: 12px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 4px;
  font-size: clamp(44px, 4.9vw, 78px);
  line-height: .92;
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--green);
}

h2 {
  margin-bottom: 0;
  font-size: 22px;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.hero-card,
.stat-card,
.panel,
.state,
.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 42%, rgba(0, 245, 155, .06), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: none;
}

.hero-card span,
.stat-label,
.metric-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.hero-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.stats-grid .stat-card:nth-child(1) .stat-line {
  display: block;
}

.stat-card {
  position: relative;
  min-height: 86px;
  padding: 16px 18px 14px 72px;
  overflow: hidden;
}

.stat-card strong {
  display: inline-block;
  margin-top: 5px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1;
}

.stat-icon {
  position: absolute;
  left: 18px;
  top: 27px;
  color: var(--green);
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.stat-line em {
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.stat-line small {
  color: var(--muted);
  font-size: 10px;
}

.stat-spark {
  position: absolute;
  right: 12px;
  bottom: 7px;
  width: 92px;
  height: 16px;
  opacity: .52;
}

.stat-spark path {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.panel {
  overflow: hidden;
  margin-bottom: 16px;
}

.panel-heading {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.leaderboard-actions,
.period-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.period-tabs {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 4px;
  background: rgba(255, 255, 255, 0.025);
}

.period-tab {
  border-color: transparent;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  padding: 8px 11px;
}

.period-tab:hover,
.period-tab.active {
  color: var(--text);
  border-color: var(--line-green);
  background: var(--green-soft);
}

.panel-heading.compact {
  padding-bottom: 12px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 11px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, .02);
  font-weight: 800;
}

.filter-chip::before {
  content: "▽";
  margin-right: 9px;
  color: var(--muted);
}

.filter-chip::after {
  content: "⌄";
  margin-left: 18px;
  color: var(--muted);
}

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

table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
}

.x-link {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  flex: 0 0 auto;
}

.x-link:hover {
  color: var(--text);
  border-color: var(--line-green);
  background: var(--green-soft);
}

th,
td {
  padding: 8px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

tbody tr:hover {
  background: rgba(0, 245, 155, 0.045);
}

.leaderboard-row {
  cursor: pointer;
}

.leaderboard-row:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

.rank {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line-green);
  border-radius: 0;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 900;
}

.wallet-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
}

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

.wallet-name-line {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.avatar {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-green);
  border-radius: 0;
  color: var(--green);
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 900;
  overflow: hidden;
  position: relative;
}

.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  z-index: 1;
}

.avatar span {
  position: relative;
  z-index: 0;
}

.primary {
  display: block;
  font-weight: 900;
  max-width: 140px;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secondary {
  display: block;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  margin-top: 3px;
}

.wallet-address-copy {
  display: block;
  width: max-content;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 0;
  text-align: left;
}

.wallet-address-copy:hover,
.wallet-address-copy.copied {
  color: var(--green);
  background: transparent;
}

.last-trade-cell {
  white-space: nowrap;
}

.profit {
  color: var(--green);
  font-weight: 900;
}

.loss {
  color: var(--red);
  font-weight: 900;
}

.muted {
  color: var(--muted);
}

.global-status {
  min-height: 17px;
  margin: -8px 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.search-row {
  gap: 10px;
  padding: 0 24px 22px;
}

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

.state.error {
  border-color: rgba(255, 100, 100, 0.38);
  color: #ffb1b1;
}

.detail-card {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.wallet-profile-panel {
  margin-bottom: 18px;
}

.wallet-profile-panel .state {
  margin: 0;
}

.wallet-hero-card,
.wallet-summary-head {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 35%, rgba(0, 245, 155, .055), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.wallet-hero-card {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.7fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
}

.wallet-profile-main {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.wallet-avatar {
  display: grid;
  place-items: center;
  position: relative;
  width: 116px;
  height: 116px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 36px rgba(0, 245, 155, .12);
}

.wallet-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wallet-avatar span {
  position: relative;
  z-index: 0;
}

.wallet-name-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.wallet-name-line h3 {
  margin: 0;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(28px, 3vw, 42px);
}

.wallet-copy {
  display: block;
  margin: 8px 0 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 16px;
}

.wallet-copy:hover,
.wallet-copy.copied {
  color: var(--green);
  background: transparent;
}

.rank-badge {
  display: inline-flex;
  border: 1px solid var(--line-green);
  padding: 6px 10px;
  color: var(--green);
  background: var(--green-soft);
  font-weight: 900;
}

.wallet-hero-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}

.wallet-hero-stats div {
  min-height: 78px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.wallet-hero-stats span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-hero-stats strong {
  display: block;
  font-size: clamp(21px, 2vw, 31px);
}

.wallet-summary-head {
  margin-top: 18px;
  padding: 22px 26px 10px;
  border-bottom: 0;
  background: transparent;
}

.wallet-detail-head,
.trade-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wallet-detail-head h3 {
  margin-bottom: 4px;
}

.full-address {
  word-break: break-all;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-green);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.good-pill {
  color: var(--green);
  border-color: var(--line-green);
}

.bad-pill {
  color: var(--red);
  border-color: rgba(255, 100, 100, 0.35);
  background: rgba(255, 100, 100, 0.08);
}

.muted-pill {
  color: var(--muted);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0 26px 26px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background:
    radial-gradient(circle at 82% 35%, rgba(0, 245, 155, .04), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.metric {
  position: relative;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 20px 16px 86px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.metric strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1;
}

.metric-icon {
  position: absolute;
  left: 22px;
  top: 26px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-green);
  border-radius: 50%;
  color: var(--green);
}

.metric-icon::before {
  content: "◇";
  font-size: 22px;
}

.metric-icon-chart::before { content: "▱"; }
.metric-icon-coin::before { content: "$"; }
.metric-icon-nodes::before { content: "⌘"; }
.metric-icon-target::before { content: "◎"; }
.metric-icon-swap::before { content: "⇄"; }
.metric-icon-cart::before { content: "▱"; }
.metric-icon-trophy::before { content: "♕"; }
.metric-icon-flame::before { content: "♢"; }

.loss-metric .metric-icon {
  color: var(--red);
  border-color: rgba(255, 100, 100, .42);
}

.loss-metric .metric-spark path {
  stroke: var(--red);
}

.metric-spark {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  width: calc(100% - 40px);
  height: 24px;
  opacity: .78;
}

.metric-spark path {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.feed {
  padding: 0 18px 18px;
}

.trade-table {
  min-width: 1180px;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.018);
}

.trade-row {
  display: grid;
  grid-template-columns: 90px minmax(160px, 1.15fr) 110px minmax(150px, 1fr) 110px 140px minmax(190px, 1.15fr) minmax(130px, .8fr) 130px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

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

.trade-row > span {
  min-width: 0;
  padding: 8px 14px;
  color: rgba(247, 255, 249, .82);
  font-size: 13px;
  word-break: break-word;
}

.trade-head {
  min-height: 38px;
  background: rgba(255, 255, 255, 0.025);
}

.trade-head > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trade-token strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trade-side {
  justify-self: start;
  margin-left: 14px;
  border: 1px solid var(--line);
  padding: 5px 10px !important;
  font-size: 12px !important;
  font-weight: 900;
  line-height: 1;
}

.buy-trade .trade-side {
  color: var(--green);
  border-color: var(--line-green);
  background: var(--green-soft);
}

.sell-trade .trade-side {
  color: var(--amber);
  border-color: rgba(255, 184, 77, .32);
  background: rgba(255, 184, 77, .08);
}

.trade-row code {
  color: rgba(247, 255, 249, .78);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.pnl-cell {
  font-weight: 800;
}

.hidden {
  display: none;
}

footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero,
  .topbar,
  .wallet-title-row,
  .wallet-hero-card,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .wallet-hero-card {
    display: flex;
  }

  .wallet-hero-stats {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wallet-hero-stats div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 8px 0 0;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .shell {
    width: min(100% - 28px, 1380px);
  }

  .topbar {
    align-items: stretch;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    padding: 8px 6px;
    font-size: 12px;
    white-space: nowrap;
  }

  .table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 26px, 640px);
  }

  h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

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

  .hero {
    gap: 14px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .panel,
  .stat-card,
  .tool-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  table {
    min-width: 760px;
  }

  th,
  td {
    padding: 8px 10px;
  }

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

  .wallet-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .wallet-actions .button-link,
  .wallet-actions button {
    width: 100%;
  }

  .wallet-hero-card {
    padding: 18px;
  }

  .wallet-profile-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .wallet-avatar {
    width: 88px;
    height: 88px;
  }

  .wallet-name-line h3 {
    max-width: 260px;
    font-size: 28px;
  }

  .wallet-hero-stats,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .wallet-hero-stats div {
    min-height: auto;
    padding: 12px 0;
  }

  .wallet-summary-head {
    padding: 18px 18px 8px;
  }

  .metric-grid {
    gap: 12px;
    padding: 0 18px 18px;
  }

  .metric {
    min-height: 128px;
    padding: 22px 18px 46px 76px;
  }

  .stat-card {
    padding-right: 14px;
  }

  .stat-line {
    flex-wrap: wrap;
    gap: 8px;
  }

  .panel-heading,
  .search-row {
    align-items: stretch;
    flex-direction: column;
  }

  .leaderboard-actions,
  .period-tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .wallet-detail-head,
  .trade-main {
    flex-direction: column;
  }

  .feed {
    overflow-x: visible;
  }

  .trade-table {
    min-width: 0;
    border: 0;
    background: transparent;
  }

  .trade-head {
    display: none;
  }

  .trade-row {
    grid-template-columns: 82px 1fr;
    gap: 0;
    margin-bottom: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
  }

  .trade-row > span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .trade-row > span:not(.trade-side):not(.trade-token)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .trade-side {
    margin-left: 10px;
    grid-row: span 8;
  }
}

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

/* ───────────── Light theme (matches main site; pref via localStorage) ───────────── */
html.light-theme{
  color-scheme: light;
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --line: #e0e0e0;
  --line-green: rgba(0,170,68,0.28);
  --text: #111111;
  --muted: #666666;
  --green: #00aa44;
  --green-soft: rgba(0,170,68,0.10);
  --shadow: 0 22px 70px rgba(0,0,0,0.12);
}
html.light-theme body{ background:#ffffff; color:#111111; }
/* Solana gradient on the "SolMemeHub" brand text (light theme) */
html.light-theme .brand span:not(.brand-mark){
  background: linear-gradient(90deg, #9945FF, #14F195);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
