:root {
  --cas-ink: #1e1e1e;
  --cas-ink-soft: #2e373b;
  --cas-paper: #f7f7fb;
  --cas-white: #ffffff;
  --cas-purple: #5d47ff;
  --cas-purple-mid: #846dff;
  --cas-purple-soft: #a36cff;
  --cas-coral: #f05f40;
  --cas-green: #42d392;
  --cas-red: #ff6b81;
  --cas-muted: #707281;
  --cas-border: rgba(30, 30, 30, 0.12);
  --cas-radius: 24px;
  --cas-shadow: 0 22px 65px rgba(33, 23, 87, 0.14);
}

.cas-token-page {
  color: var(--cas-ink);
  background: var(--cas-paper);
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow: hidden;
}

.cas-token-page *,
.cas-token-page *::before,
.cas-token-page *::after {
  box-sizing: border-box;
}

.cas-token-page a {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cas-token-page a:focus-visible,
.cas-token-page button:focus-visible,
.cas-token-page select:focus-visible {
  outline: 3px solid var(--cas-purple-soft);
  outline-offset: 3px;
}

.cas-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.cas-hero {
  position: relative;
  min-height: 780px;
  padding: 150px 0 96px;
  color: var(--cas-white);
  background:
    radial-gradient(circle at 78% 38%, rgba(132, 109, 255, 0.32), transparent 27%),
    radial-gradient(circle at 10% 92%, rgba(240, 95, 64, 0.13), transparent 22%),
    linear-gradient(135deg, #17151f 0%, #211b3d 52%, #1e1e1e 100%);
  isolation: isolate;
}

.cas-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.cas-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.cas-hero__content {
  position: relative;
  z-index: 2;
}

.cas-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #d8d3ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cas-eyebrow img {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(132, 109, 255, 0.38);
}

.cas-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--cas-white);
  font-size: clamp(56px, 8vw, 105px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.cas-hero h1::after {
  content: "ERC-20";
  display: inline-block;
  margin-left: 18px;
  color: var(--cas-purple-mid);
  font-size: 0.19em;
  letter-spacing: 0.08em;
  vertical-align: top;
}

.cas-hero__lead {
  max-width: 720px;
  margin: 0 0 28px;
  color: #c9c6d4;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.cas-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.cas-badges li {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #eeecf8;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.cas-contract {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 14px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
}

.cas-contract > span:first-child {
  color: #aaa6b9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cas-contract code {
  max-width: 330px;
  overflow: hidden;
  color: #eeeaff;
  background: transparent;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cas-refresh,
.cas-range-group button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.cas-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cas-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cas-button:hover,
.cas-button:focus {
  color: var(--cas-white);
  text-decoration: none;
  transform: translateY(-2px);
}

.cas-button--primary {
  color: var(--cas-white);
  background: linear-gradient(135deg, var(--cas-purple), var(--cas-purple-soft));
  box-shadow: 0 12px 30px rgba(93, 71, 255, 0.3);
}

.cas-button--ghost {
  color: var(--cas-white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.cas-hero__visual {
  position: relative;
  min-height: 500px;
}

.cas-token-medallion {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 250px;
  height: 250px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 22px rgba(93, 71, 255, 0.07),
    0 35px 80px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(132, 109, 255, 0.28);
  transform: translate(-50%, -50%);
}

.cas-token-medallion img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.cas-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cas-orbit--outer {
  width: 470px;
  height: 470px;
  border-style: dashed;
}

.cas-orbit--inner {
  width: 350px;
  height: 350px;
}

.cas-node {
  position: absolute;
  z-index: 4;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ddd8ff;
  background: rgba(30, 30, 30, 0.86);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 750;
}

.cas-node--one {
  top: 12%;
  right: 5%;
}

.cas-node--two {
  bottom: 18%;
  left: 0;
}

.cas-node--three {
  right: 0;
  bottom: 10%;
}

.cas-section {
  position: relative;
  padding: 105px 0;
}

.cas-section--light {
  color: var(--cas-ink);
  background: var(--cas-paper);
}

.cas-section--ink {
  color: var(--cas-white);
  background:
    radial-gradient(circle at 10% 20%, rgba(93, 71, 255, 0.17), transparent 25%),
    var(--cas-ink);
}

.cas-section--terminal {
  color: var(--cas-white);
  background: linear-gradient(180deg, #24202f 0%, #16151b 100%);
}

.cas-section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--cas-purple);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cas-section--ink .cas-section-label,
.cas-section--terminal .cas-section-label {
  color: #a99cff;
}

.cas-token-page h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.cas-prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 85px;
  align-items: start;
}

.cas-prose {
  color: #555764;
  font-size: 18px;
  line-height: 1.75;
}

.cas-prose p {
  margin: 0 0 20px;
  font-size: inherit;
  line-height: inherit;
}

.cas-specs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0;
  margin: 72px 0 0;
  overflow: hidden;
  border: 1px solid var(--cas-border);
  border-radius: var(--cas-radius);
  background: var(--cas-white);
  box-shadow: 0 14px 40px rgba(33, 23, 87, 0.07);
}

.cas-specs > div {
  min-width: 0;
  padding: 25px 20px;
  border-right: 1px solid var(--cas-border);
}

.cas-specs > div:last-child {
  border-right: 0;
}

.cas-specs dt {
  margin-bottom: 8px;
  color: var(--cas-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cas-specs dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--cas-ink);
  font-size: 16px;
  font-weight: 850;
}

.cas-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 65px;
  align-items: end;
}

.cas-section-heading p {
  margin: 0;
  color: #b7b4c2;
  font-size: 17px;
  line-height: 1.7;
}

.cas-allocation {
  padding: 30px;
  margin: 62px 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--cas-radius);
  background: rgba(255, 255, 255, 0.04);
}

.cas-allocation__bar {
  display: flex;
  height: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.cas-allocation__initial {
  min-width: 42px;
  background: var(--cas-coral);
}

.cas-allocation__reserve {
  background: linear-gradient(90deg, var(--cas-purple), var(--cas-purple-soft));
}

.cas-allocation__legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.cas-allocation__legend > div {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 10px;
}

.cas-allocation__legend strong {
  color: var(--cas-white);
  font-size: 22px;
}

.cas-allocation__legend small {
  color: #aaa7b4;
  font-size: 13px;
}

.cas-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cas-dot--initial {
  background: var(--cas-coral);
}

.cas-dot--reserve {
  background: var(--cas-purple-mid);
}

.cas-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cas-feature {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.cas-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 12px;
  color: #c7beff;
  background: rgba(132, 109, 255, 0.17);
}

.cas-feature h3 {
  margin: 0 0 12px;
  color: var(--cas-white);
  font-size: 19px;
  font-weight: 800;
}

.cas-feature p {
  margin: 0;
  color: #aaa7b4;
  font-size: 14px;
  line-height: 1.65;
}

.cas-terminal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 35px;
}

.cas-terminal-heading p {
  max-width: 650px;
  margin: 16px 0 0;
  color: #aaa7b4;
  font-size: 16px;
}

.gecko-attribution {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex: 0 0 auto;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.gecko-attribution:hover,
.gecko-attribution:focus {
  border-color: rgba(132, 109, 255, 0.65);
  text-decoration: none;
  transform: translateY(-2px);
}

.gecko-attribution span {
  color: #9692a2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gecko-attribution img {
  width: 184px;
  height: auto;
}

.cas-terminal {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  background: #1e1e1e;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.cas-terminal::before {
  display: block;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cas-purple), var(--cas-purple-mid), var(--cas-purple-soft));
}

.cas-terminal__toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(210px, 0.8fr) auto;
  gap: 18px;
  align-items: end;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cas-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cas-control > span {
  color: #8f8c99;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cas-control select {
  width: 100%;
  height: 42px;
  padding: 0 38px 0 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #f4f1ff;
  background: #29272e;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
}

.cas-control select:disabled {
  color: #8c8994;
  cursor: wait;
}

.cas-range-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 42px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: #29272e;
}

.cas-range-group button {
  padding: 0 13px;
  border-radius: 7px;
  color: #aaa7b4;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
}

.cas-range-group button.is-active {
  color: var(--cas-white);
  background: var(--cas-purple);
}

.cas-refresh {
  height: 42px;
  padding: 0 17px;
  border-radius: 10px;
  color: var(--cas-white);
  background: var(--cas-purple);
  font-size: 12px;
  font-weight: 800;
}

.cas-refresh:hover:not(:disabled) {
  background: #725eff;
}

.cas-refresh:disabled {
  color: #716e79;
  background: #302e35;
  cursor: not-allowed;
}

.cas-refresh.is-loading i {
  animation: cas-spin 800ms linear infinite;
}

.cas-market-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cas-market-stats > div {
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cas-market-stats > div:last-child {
  border-right: 0;
}

.cas-market-stats span {
  display: block;
  margin-bottom: 7px;
  overflow: hidden;
  color: #888591;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.cas-market-stats strong {
  display: block;
  overflow: hidden;
  color: #f6f3ff;
  font-size: clamp(14px, 1.45vw, 19px);
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cas-market-stats strong.is-positive {
  color: var(--cas-green);
}

.cas-market-stats strong.is-negative {
  color: var(--cas-red);
}

.cas-chart {
  padding: 25px 26px 18px;
}

.cas-chart__meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.cas-chart__meta > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.cas-chart__meta strong {
  color: var(--cas-white);
  font-size: 15px;
}

.cas-chart__meta span {
  color: #817e89;
  font-size: 11px;
}

.cas-chart__canvas-wrap {
  position: relative;
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    #1b1b1b;
  background-size: 64px 64px;
}

.cas-chart canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.cas-chart__empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  color: #86828f;
  font-size: 13px;
  text-align: center;
}

.cas-chart__empty[hidden] {
  display: none;
}

.cas-chart__tooltip {
  position: absolute;
  z-index: 5;
  min-width: 174px;
  padding: 10px 12px;
  border: 1px solid rgba(132, 109, 255, 0.42);
  border-radius: 10px;
  color: #dad7e5;
  background: rgba(28, 27, 31, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  line-height: 1.65;
  pointer-events: none;
  white-space: pre-line;
}

.cas-terminal__footer {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 14px 26px 20px;
  color: #777480;
  font-size: 10px;
}

.cas-terminal__footer p {
  margin: 0;
  font-size: inherit;
}

.cas-terminal__footer [data-terminal-status] {
  color: #aaa6b5;
}

.cas-noscript {
  padding: 16px 26px;
  margin: 0;
  color: #ffd1c7;
  background: rgba(240, 95, 64, 0.09);
  font-size: 13px;
}

.cas-source-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 85px;
  align-items: start;
}

.cas-source-grid p {
  margin: 20px 0 0;
  color: #62636e;
}

.cas-source-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--cas-border);
  list-style: none;
}

.cas-source-list li {
  border-bottom: 1px solid var(--cas-border);
}

.cas-source-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  color: var(--cas-ink);
  font-size: 15px;
  font-weight: 780;
}

.cas-source-list a:hover,
.cas-source-list a:focus {
  color: var(--cas-purple);
  text-decoration: none;
}

.cas-disclaimer {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  margin-top: 70px;
  border: 1px solid rgba(93, 71, 255, 0.18);
  border-radius: 18px;
  color: #4e4f59;
  background: rgba(93, 71, 255, 0.055);
}

.cas-disclaimer > i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--cas-purple);
  font-size: 20px;
}

.cas-disclaimer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cas-ink);
}

.cas-disclaimer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

@keyframes cas-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .cas-hero {
    min-height: auto;
    padding-top: 125px;
  }

  .cas-hero__grid {
    grid-template-columns: 1fr;
  }

  .cas-hero__visual {
    display: none;
  }

  .cas-prose-grid,
  .cas-section-heading,
  .cas-source-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cas-specs {
    grid-template-columns: repeat(3, 1fr);
  }

  .cas-specs > div:nth-child(3) {
    border-right: 0;
  }

  .cas-specs > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--cas-border);
  }

  .cas-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cas-market-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .cas-market-stats > div:nth-child(3) {
    border-right: 0;
  }

  .cas-market-stats > div:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 767px) {
  .cas-shell {
    width: min(100% - 28px, 1180px);
  }

  .cas-hero {
    padding: 105px 0 70px;
  }

  .cas-hero h1 {
    font-size: clamp(50px, 19vw, 76px);
  }

  .cas-hero h1::after {
    display: block;
    margin: 16px 0 0 3px;
    font-size: 14px;
  }

  .cas-contract {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cas-contract code {
    max-width: 100%;
  }

  .cas-hero__actions {
    display: grid;
  }

  .cas-section {
    padding: 75px 0;
  }

  .cas-token-page h2 {
    font-size: clamp(34px, 10vw, 47px);
  }

  .cas-specs {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 42px;
  }

  .cas-specs > div,
  .cas-specs > div:nth-child(3) {
    border-right: 1px solid var(--cas-border);
    border-bottom: 1px solid var(--cas-border);
  }

  .cas-specs > div:nth-child(even) {
    border-right: 0;
  }

  .cas-specs > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .cas-allocation {
    padding: 22px;
    margin-top: 42px;
  }

  .cas-allocation__legend {
    grid-template-columns: 1fr;
  }

  .cas-feature-grid {
    grid-template-columns: 1fr;
  }

  .cas-terminal-heading {
    align-items: start;
    flex-direction: column;
  }

  .gecko-attribution {
    align-items: flex-start;
  }

  .cas-terminal__toolbar {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cas-market-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cas-market-stats > div,
  .cas-market-stats > div:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cas-market-stats > div:nth-child(even) {
    border-right: 0;
  }

  .cas-market-stats > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .cas-chart {
    padding: 20px 14px 12px;
  }

  .cas-chart__meta {
    align-items: start;
    flex-direction: column;
  }

  .cas-chart__canvas-wrap {
    height: 340px;
  }

  .cas-terminal__footer {
    flex-direction: column;
    gap: 8px;
    padding: 12px 20px 18px;
  }

  .cas-disclaimer {
    margin-top: 50px;
  }
}

@media (max-width: 420px) {
  .cas-specs,
  .cas-market-stats {
    grid-template-columns: 1fr;
  }

  .cas-specs > div,
  .cas-specs > div:nth-child(even),
  .cas-market-stats > div,
  .cas-market-stats > div:nth-child(even) {
    border-right: 0;
    border-bottom: 1px solid var(--cas-border);
  }

  .cas-market-stats > div,
  .cas-market-stats > div:nth-child(even) {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .cas-specs > div:last-child,
  .cas-market-stats > div:last-child {
    border-bottom: 0;
  }
}

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