* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


:root {
  --green: #00ff85;
  --background: #010705;
  --border: rgba(0, 255, 133, 0.16);
  --border-strong: rgba(0, 255, 133, 0.30);
  --muted: rgba(255, 255, 255, 0.42);
}


html,
body {
  min-height: 100%;
}


body {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(0, 255, 133, 0.065),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #010604,
      #020906
    );

  color: #ffffff;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  overflow-x: hidden;
}


.container {
  width: 100%;
  max-width: 1450px;

  margin: auto;

  padding:
    45px
    45px
    50px;

  text-align: center;
}


/* HEADER */

.title {
  font-size: 14px;
  font-weight: 700;

  letter-spacing: 9px;

  opacity: 0.88;

  margin-bottom: 17px;
}


.live {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: var(--green);

  font-size: 11px;

  letter-spacing: 2.2px;
}


.live-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 8px var(--green),
    0 0 18px var(--green);

  animation:
    liveBlink
    2s
    ease-in-out
    infinite;
}


@keyframes liveBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}


/* LOGO */

.logo-section {
  height: 315px;

  display: flex;

  align-items: center;

  justify-content: center;
}


.pulse-logo {
  position: relative;

  width: 155px;
  height: 155px;

  display: flex;

  align-items: center;

  justify-content: center;

  transform-origin: center;

  border-radius: 50%;

  filter:
    drop-shadow(
      0 0 15px
      rgba(0, 255, 133, 0.25)
    )
    drop-shadow(
      0 0 45px
      rgba(0, 255, 133, 0.10)
    );
}


.abstract-logo {
  display: block;

  width: 155px;
  height: 155px;

  object-fit: cover;

  border-radius: 50%;
}


.pulse-logo::after {
  content: "";

  position: absolute;

  width: 190px;
  height: 190px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  border:
    1px solid
    rgba(0, 255, 133, 0.08);

  box-shadow:
    0 0 45px
    rgba(0, 255, 133, 0.06);

  pointer-events: none;
}


/* HEARTBEAT */

.pulse-logo.beat {
  animation:
    heartbeat
    0.82s
    cubic-bezier(.2, .8, .3, 1);
}


@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  12% {
    transform:
      scale(
        var(--pulse-strength, 1.10)
      );
  }

  25% {
    transform: scale(1);
  }

  39% {
    transform: scale(1.055);
  }

  52% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}


/* HERO */

.hero h1 {
  font-size:
    clamp(
      44px,
      6vw,
      78px
    );

  line-height: 1;

  letter-spacing: -4px;
}


.hero h1 span {
  color: var(--green);

  text-shadow:
    0 0 25px
    rgba(0, 255, 133, 0.15);
}


.hero p {
  margin-top: 20px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.6;
}


/* STATS */

.stats {
  width: 100%;

  margin-top: 55px;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  border:
    1px solid
    var(--border);

  border-radius: 10px;

  overflow: hidden;

  background:
    rgba(0, 18, 11, 0.20);
}


.stat {
  min-height: 125px;

  padding:
    24px
    12px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-right:
    1px solid
    rgba(0, 255, 133, 0.10);
}


.stat:last-child {
  border-right: none;
}


.stat span,
.wallet-stat span {
  color:
    rgba(255, 255, 255, 0.34);

  font-size: 9px;

  letter-spacing: 2.2px;

  margin-bottom: 11px;
}


.stat strong,
.wallet-stat strong {
  color: var(--green);

  font-size: 20px;

  font-weight: 500;

  text-shadow:
    0 0 14px
    rgba(0, 255, 133, 0.12);
}


.stat small,
.wallet-stat small {
  margin-top: 7px;

  color:
    rgba(255, 255, 255, 0.25);

  font-size: 10px;
}


/* NETWORK */

.network {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 25px;

  padding:
    9px
    16px;

  border:
    1px solid
    rgba(0, 255, 133, 0.14);

  border-radius: 100px;

  color:
    rgba(255, 255, 255, 0.38);

  font-size: 9px;

  letter-spacing: 1.6px;
}


.network-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 10px
    var(--green);
}


.divider {
  color:
    rgba(0, 255, 133, 0.35);
}


/* CHECKER */

.checker {
  width: 100%;

  max-width: 900px;

  margin:
    115px
    auto
    0;

  padding-top: 60px;

  border-top:
    1px solid
    rgba(0, 255, 133, 0.10);
}


.checker-heading {
  margin-bottom: 35px;
}


.checker-eyebrow {
  display: block;

  color: var(--green);

  font-size: 9px;

  letter-spacing: 4px;

  margin-bottom: 14px;
}


.checker h2 {
  font-size:
    clamp(
      30px,
      4vw,
      48px
    );

  letter-spacing: -2px;
}


.checker-heading p {
  margin-top: 14px;

  color: var(--muted);

  font-size: 13px;
}


/* FORM */

.wallet-form {
  width: 100%;

  max-width: 760px;

  margin: auto;

  display: flex;

  gap: 10px;
}


.wallet-form input {
  flex: 1;

  min-width: 0;

  height: 54px;

  padding:
    0
    18px;

  background:
    rgba(0, 255, 133, 0.025);

  border:
    1px solid
    var(--border);

  border-radius: 8px;

  outline: none;

  color: #ffffff;

  font-size: 14px;

  font-family:
    monospace;

  transition:
    border-color .2s,
    box-shadow .2s;
}


.wallet-form input::placeholder {
  color:
    rgba(255, 255, 255, 0.22);
}


.wallet-form input:focus {
  border-color:
    var(--border-strong);

  box-shadow:
    0 0 20px
    rgba(0, 255, 133, 0.06);
}


.wallet-form button {
  height: 54px;

  padding:
    0
    28px;

  border: none;

  border-radius: 8px;

  background: var(--green);

  color: #001b0e;

  font-weight: 800;

  font-size: 11px;

  letter-spacing: 1.5px;

  cursor: pointer;

  transition:
    transform .15s,
    box-shadow .15s,
    opacity .15s;
}


.wallet-form button:hover {
  transform:
    translateY(-1px);

  box-shadow:
    0 0 25px
    rgba(0, 255, 133, 0.18);
}


.wallet-form button:disabled {
  opacity: 0.5;

  cursor: default;

  transform: none;
}


/* MESSAGE */

.checker-message {
  min-height: 30px;

  margin-top: 16px;

  color: var(--muted);

  font-size: 12px;
}


.checker-message.error {
  color: #ff6b6b;
}


/* RESULTS */

.wallet-result {
  margin-top: 25px;

  border:
    1px solid
    var(--border);

  border-radius: 10px;

  overflow: hidden;

  background:
    rgba(0, 18, 11, 0.22);
}


.hidden {
  display: none;
}


.checked-address {
  padding:
    18px
    20px;

  border-bottom:
    1px solid
    rgba(0, 255, 133, 0.10);

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;
}


.checked-address span {
  color:
    rgba(255, 255, 255, 0.30);

  font-size: 8px;

  letter-spacing: 2px;
}


.checked-address strong {
  color:
    rgba(255, 255, 255, 0.72);

  font-size: 11px;

  font-family:
    monospace;

  font-weight: 400;

  word-break: break-all;
}


.wallet-stats {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);
}


.wallet-stat {
  min-height: 135px;

  padding:
    25px
    15px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-right:
    1px solid
    rgba(0, 255, 133, 0.10);
}


.wallet-stat:last-child {
  border-right: none;
}


.checker-note {
  padding: 14px;

  border-top:
    1px solid
    rgba(0, 255, 133, 0.08);

  color:
    rgba(255, 255, 255, 0.25);

  font-size: 9px;

  letter-spacing: 1px;
}


/* FOOTER */

footer {
  margin-top: 90px;

  color:
    rgba(255, 255, 255, 0.18);

  font-size: 8px;

  letter-spacing: 2px;
}


footer span {
  margin:
    0
    8px;

  color:
    rgba(0, 255, 133, 0.25);
}


/* TABLET */

@media (max-width: 900px) {

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

  .stat {
    border-bottom:
      1px solid
      rgba(0, 255, 133, 0.10);
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .container {
    padding:
      35px
      18px
      40px;
  }


  .title {
    font-size: 12px;

    letter-spacing: 6px;
  }


  .logo-section {
    height: 260px;
  }


  .pulse-logo,
  .abstract-logo {
    width: 125px;
    height: 125px;
  }


  .pulse-logo::after {
    width: 155px;
    height: 155px;
  }


  .hero h1 {
    letter-spacing: -2px;
  }


  .hero p {
    max-width: 320px;

    margin:
      18px
      auto
      0;
  }


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


  .stat {
    border-right: none;
  }


  .checker {
    margin-top: 80px;

    padding-top: 50px;
  }


  .wallet-form {
    flex-direction: column;
  }


  .wallet-form button {
    width: 100%;
  }


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


  .wallet-stat {
    border-right: none;

    border-bottom:
      1px solid
      rgba(0, 255, 133, 0.10);
  }


  .wallet-stat:last-child {
    border-bottom: none;
  }


  .checked-address {
    flex-direction: column;
  }

}


/* CENTER FIX */

header {
  text-align: center;
  justify-content: center;
  align-items: center;
}

header .title,
header .live {
  text-align: center;
}

.hero {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero h1,
.hero p {
  text-align: center;
}

.network {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

footer {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


/* CENTER ADDRESS CHECKER */

.checker {
  text-align: center !important;
}

.checker-heading {
  text-align: center !important;
}

.checker-heading .checker-eyebrow,
.checker-heading h2,
.checker-heading p {
  text-align: center !important;
}

.wallet-form {
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ========================================
   CONTINUOUS NETWORK HEARTBEAT
   Added for transaction-range pulse speed.
   Existing logo size and appearance remain.
======================================== */

.pulse-logo.network-pulse {
  animation:
    heartbeat
    var(--network-pulse-duration, 1.8s)
    cubic-bezier(.2, .8, .3, 1)
    infinite;
}


/* ========================================
   EXTENDED NETWORK ACTIVITY
======================================== */

.activity-section {
  width: 100%;
  max-width: 1200px;

  margin:
    105px
    auto
    0;

  padding-top: 60px;

  border-top:
    1px solid
    rgba(0, 255, 133, 0.10);

  text-align: center;
}


.activity-heading {
  width: 100%;

  margin-bottom: 35px;

  text-align: center;
}


.activity-eyebrow {
  display: block;

  color: var(--green);

  font-size: 9px;

  letter-spacing: 4px;

  margin-bottom: 14px;
}


.activity-heading h2 {
  font-size:
    clamp(
      30px,
      4vw,
      48px
    );

  letter-spacing: -2px;

  text-align: center;
}


.activity-stats {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  border:
    1px solid
    var(--border);

  border-radius: 10px;

  overflow: hidden;

  background:
    rgba(0, 18, 11, 0.20);
}


.activity-stat {
  min-height: 125px;

  padding:
    24px
    12px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  border-right:
    1px solid
    rgba(0, 255, 133, 0.10);
}


.activity-stat:last-child {
  border-right: none;
}


.activity-stat span {
  color:
    rgba(255, 255, 255, 0.34);

  font-size: 9px;

  letter-spacing: 2.2px;

  margin-bottom: 11px;
}


.activity-stat strong {
  color: var(--green);

  font-size: 20px;

  font-weight: 500;

  text-shadow:
    0 0 14px
    rgba(0, 255, 133, 0.12);
}


.activity-stat small {
  margin-top: 7px;

  color:
    rgba(255, 255, 255, 0.25);

  font-size: 10px;
}


/* 7-DAY CHART */

.activity-chart-box {
  width: 100%;

  margin-top: 22px;

  padding:
    22px
    20px
    20px;

  border:
    1px solid
    var(--border);

  border-radius: 10px;

  background:
    rgba(0, 18, 11, 0.20);
}


.activity-chart-header {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 25px;
}


.activity-chart-header span {
  color:
    rgba(255, 255, 255, 0.50);

  font-size: 9px;

  letter-spacing: 2.2px;
}


.activity-chart-header small {
  color:
    rgba(255, 255, 255, 0.22);

  font-size: 8px;

  letter-spacing: 1.6px;
}


.activity-chart {
  width: 100%;

  min-height: 210px;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 12px;
}


.activity-chart-loading {
  width: 100%;

  align-self: center;

  color:
    rgba(255, 255, 255, 0.28);

  font-size: 10px;

  letter-spacing: 1.5px;

  text-align: center;
}


.activity-bar-item {
  flex: 1;

  min-width: 0;

  height: 190px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-end;

  gap: 8px;
}


.activity-bar-value {
  color:
    rgba(255, 255, 255, 0.48);

  font-size: 9px;

  white-space: nowrap;
}


.activity-bar-track {
  width: 100%;
  max-width: 72px;

  height: 135px;

  display: flex;

  align-items: flex-end;

  justify-content: center;

  border-radius: 6px;

  background:
    rgba(0, 255, 133, 0.025);

  overflow: hidden;
}


.activity-bar {
  width: 100%;

  min-height: 2px;

  background:
    linear-gradient(
      180deg,
      rgba(0, 255, 133, 0.85),
      rgba(0, 255, 133, 0.25)
    );

  box-shadow:
    0 0 15px
    rgba(0, 255, 133, 0.10);

  transition:
    height .35s ease;
}


.activity-bar-date {
  color:
    rgba(255, 255, 255, 0.28);

  font-size: 8px;

  letter-spacing: 1px;

  white-space: nowrap;
}


/* ACTIVITY TABLET */

@media (max-width: 900px) {

  .activity-section {
    max-width: 100%;
  }


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


  .activity-stat {
    border-bottom:
      1px solid
      rgba(0, 255, 133, 0.10);
  }


  .activity-chart {
    gap: 7px;
  }


  .activity-bar-value {
    font-size: 8px;
  }

}


/* ACTIVITY MOBILE */

@media (max-width: 600px) {

  .activity-section {
    margin-top: 80px;

    padding-top: 50px;
  }


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


  .activity-stat {
    border-right: none;
  }


  .activity-chart-box {
    padding:
      20px
      10px
      16px;
  }


  .activity-chart-header {
    flex-direction: column;

    justify-content: center;

    gap: 7px;

    text-align: center;
  }


  .activity-chart {
    min-height: 180px;

    gap: 4px;
  }


  .activity-bar-item {
    height: 165px;

    gap: 6px;
  }


  .activity-bar-track {
    height: 110px;
  }


  .activity-bar-value {
    font-size: 7px;
  }


  .activity-bar-date {
    font-size: 7px;

    letter-spacing: 0;
  }

}


/* ABSTRACT PULSE HEADER POSITION + SIZE */

header {
  padding-top: 16px;
}

.title {
  font-size: 18px;
  letter-spacing: 10px;
  margin-bottom: 22px;
}


/* FINAL STATS SPACING + NETWORK CENTER */

.stats {
  width: calc(100% - 16px) !important;
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.network {
  display: flex !important;
  width: max-content !important;
  margin: 25px auto 0 !important;
  justify-content: center !important;
  text-align: center !important;
}


/* EQUAL SPACING INSIDE TOP STATS */

.stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats .stat > span {
  margin: 0 0 14px 0 !important;
  line-height: 1 !important;
}

.stats .stat > strong {
  margin: 0 0 14px 0 !important;
  line-height: 1 !important;
}

.stats .stat > small {
  margin: 0 !important;
  line-height: 1 !important;
}


/* ========================================
   WALLET CHECKER — TX SENT TODAY
   Existing visual language retained.
======================================== */

.wallet-stats {
  grid-template-columns:
    repeat(3, 1fr);
}
/* ========================================
   ABSTRACT PULSE SHARE CARD
   Additive only.
======================================== */

.share-pulse {
  padding:
    34px
    24px
    28px;

  border-top:
    1px solid
    rgba(0, 255, 133, 0.08);

  text-align: center;
}


.share-pulse-eyebrow {
  display: block;

  margin-bottom: 20px;

  color: var(--green);

  font-size: 9px;

  letter-spacing: 4px;
}


.share-card-wrap {
  width: 100%;

  max-width: 760px;

  margin:
    0
    auto;

  border-radius: 10px;

  overflow: hidden;

  background:
    rgba(0, 18, 11, 0.20);

  box-shadow:
    0 0 35px
    rgba(0, 255, 133, 0.05);
}


.share-card {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 9;

  background: #010705;
}


.share-actions {
  display: flex;

  justify-content: center;

  gap: 10px;

  margin-top: 20px;
}


.share-action {
  min-width: 150px;

  height: 46px;

  padding:
    0
    22px;

  border:
    1px solid
    rgba(0, 255, 133, 0.22);

  border-radius: 8px;

  background:
    rgba(0, 255, 133, 0.025);

  color:
    rgba(255, 255, 255, 0.72);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;

  cursor: pointer;

  transition:
    transform .15s,
    border-color .15s,
    box-shadow .15s,
    background .15s;
}


.share-action:hover {
  transform:
    translateY(-1px);

  border-color:
    rgba(0, 255, 133, 0.42);

  box-shadow:
    0 0 22px
    rgba(0, 255, 133, 0.07);
}


.share-action.primary {
  border-color: var(--green);

  background: var(--green);

  color: #001b0e;
}


.share-action.primary:hover {
  box-shadow:
    0 0 25px
    rgba(0, 255, 133, 0.18);
}


.share-message {
  min-height: 18px;

  margin-top: 13px;

  color:
    rgba(255, 255, 255, 0.34);

  font-size: 10px;

  letter-spacing: 0.7px;
}


/* SHARE CARD MOBILE */

@media (max-width: 600px) {

  .share-pulse {
    padding:
      28px
      12px
      24px;
  }


  .share-actions {
    flex-direction: column;

    width: 100%;
  }


  .share-action {
    width: 100%;
  }

}
