* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 45%, #f4f7fb 100%);
  color: #0f172a;
  min-height: 100vh;
}

.hidden {
  display: none !important;
}

.app-shell {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 100vh;
}

.left-panel {
  border-right: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.left-inner {
  padding: 42px 28px;
  position: sticky;
  top: 0;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow.small {
  margin-bottom: 12px;
}

.left-inner h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.left-inner p,
.sub,
.helper,
.balance-note,
.placeholder-card p {
  color: #64748b;
}

.login-card,
.welcome-card,
.card,
.placeholder-card,
.balance-card,
.history-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.login-card,
.welcome-card,
.card,
.history-card {
  padding: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: #ffffff;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.tab {
  flex: 1;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 700;
}

.tab.active {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

h2 {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.field {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

input {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  outline: none;
  font-size: 15px;
  background: #ffffff;
}

input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-weight: 700;
  padding: 15px 22px;
  border-radius: 16px;
  font-size: 15px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.btn.secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}

.alert {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

.alert.error {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.14);
}

.alert.success {
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.14);
}

.right-panel {
  padding: 28px;
}

.dashboard-header {
  margin-bottom: 20px;
}

.balance-card {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.balance-label {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.balance-amount {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1d4ed8;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 20px;
}

.card h3,
.history-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.badge-row {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.75;
}

.terminal {
  background: #0b1220;
  color: #dbeafe;
  border-radius: 18px;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #172033;
}

.terminal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red {
  background: #ef4444;
}

.dot.yellow {
  background: #f59e0b;
}

.dot.green {
  background: #22c55e;
}

.terminal-body {
  padding: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.7;
  min-height: 320px;
  white-space: pre-wrap;
  overflow: auto;
}

.progress-wrap {
  margin-top: 18px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transition: width 1s linear;
}

.summary-box {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #e7eef9;
}

.summary-box.show {
  display: block;
}

.summary-box p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 6px;
}

.history-card {
  margin-top: 20px;
}

.history-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.history-item {
  border: 1px solid #e7eef9;
  background: #f8fbff;
  border-radius: 18px;
  padding: 14px;
}

.history-item strong {
  display: block;
  margin-bottom: 6px;
}

.history-item span {
  display: block;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 4px;
}

.history-empty {
  color: #64748b;
}

.placeholder-shell {
  height: 100%;
  display: grid;
  place-items: center;
}

.placeholder-card {
  padding: 28px;
  max-width: 620px;
}

.status-pill {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

/* WORLD MAP SEARCH MONITOR */

.world-map-box {
  position: relative;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.16), transparent 35%),
    linear-gradient(180deg, #08111f 0%, #0b1220 100%);
  border: 1px solid #172033;
}

.world-map {
  width: 100%;
  height: 100%;
  display: block;
}

.map-land path {
  fill: rgba(96, 165, 250, 0.10);
  stroke: rgba(96, 165, 250, 0.28);
  stroke-width: 2;
}

.scan-line {
  stroke: rgba(56, 189, 248, 0.85);
  stroke-width: 2;
  stroke-dasharray: 10 8;
  animation: dashMove 3s linear infinite;
}

.scan-line.delay-1 {
  animation-delay: 0.4s;
}

.scan-line.delay-2 {
  animation-delay: 0.8s;
}

.scan-line.delay-3 {
  animation-delay: 1.2s;
}

.scan-line.delay-4 {
  animation-delay: 1.6s;
}

.scan-point {
  fill: #60a5fa;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.9));
  animation: pointBlink 2s ease-in-out infinite;
}

.scan-point.main-point {
  fill: #38bdf8;
}

.scan-point.delay-1 {
  animation-delay: 0.2s;
}

.scan-point.delay-2 {
  animation-delay: 0.5s;
}

.scan-point.delay-3 {
  animation-delay: 0.8s;
}

.scan-point.delay-4 {
  animation-delay: 1.1s;
}

.scan-point.delay-5 {
  animation-delay: 1.4s;
}

.pulse-ring {
  fill: none;
  stroke: rgba(56, 189, 248, 0.28);
  stroke-width: 2;
  transform-origin: center;
  animation: mapPulse 3s ease-out infinite;
}

.ring-a {
  animation-delay: 0s;
}

.ring-b {
  animation-delay: 0.8s;
}

.ring-c {
  animation-delay: 1.6s;
}

.world-overlay-label {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #dbeafe;
}

.world-status-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  text-align: center;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 600;
}

.mini-terminal {
  min-height: 220px;
}

@keyframes dashMove {
  from {
    stroke-dashoffset: 0;
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
  to {
    stroke-dashoffset: -36;
    opacity: 0.35;
  }
}

@keyframes pointBlink {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes mapPulse {
  0% {
    opacity: 0.20;
    transform: scale(0.9);
  }
  60% {
    opacity: 0.45;
    transform: scale(1);
  }
  100% {
    opacity: 0.08;
    transform: scale(1.08);
  }
}

@media (max-width: 1080px) {
  .app-shell,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .left-inner {
    position: static;
  }

  .balance-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


.world-map-box {
  position: relative;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at center, rgba(37, 99, 235, 0.16), transparent 35%),
    linear-gradient(180deg, #08111f 0%, #0b1220 100%);
  border: 1px solid #172033;
}

.world-map {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: center center;
}

.map-land path {
  fill: rgba(96, 165, 250, 0.10);
  stroke: rgba(96, 165, 250, 0.28);
  stroke-width: 2;
  transition: 0.3s ease;
}

.scan-line {
  stroke: rgba(56, 189, 248, 0.85);
  stroke-width: 2;
  stroke-dasharray: 10 8;
  animation: dashMove 3s linear infinite;
}

.scan-line.delay-1 { animation-delay: 0.4s; }
.scan-line.delay-2 { animation-delay: 0.8s; }
.scan-line.delay-3 { animation-delay: 1.2s; }
.scan-line.delay-4 { animation-delay: 1.6s; }

.scan-point {
  fill: #60a5fa;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.9));
  animation: pointBlink 2s ease-in-out infinite;
}

.scan-point.main-point {
  fill: #38bdf8;
}

.scan-point.delay-1 { animation-delay: 0.2s; }
.scan-point.delay-2 { animation-delay: 0.5s; }
.scan-point.delay-3 { animation-delay: 0.8s; }
.scan-point.delay-4 { animation-delay: 1.1s; }
.scan-point.delay-5 { animation-delay: 1.4s; }

.pulse-ring {
  fill: none;
  stroke: rgba(56, 189, 248, 0.28);
  stroke-width: 2;
  transform-origin: center;
  animation: mapPulse 3s ease-out infinite;
}

.ring-a { animation-delay: 0s; }
.ring-b { animation-delay: 0.8s; }
.ring-c { animation-delay: 1.6s; }

.world-overlay-label {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #dbeafe;
  z-index: 5;
}

.world-status-text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  text-align: center;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 600;
  z-index: 5;
}

.mini-terminal {
  min-height: 220px;
}

/* aktivizohet kur fillon kerkimi */
.world-map-box.searching {
  box-shadow:
    inset 0 0 80px rgba(56, 189, 248, 0.08),
    0 0 45px rgba(37, 99, 235, 0.16);
}

.world-map-box.searching .world-map {
  animation:
    worldPan 8s ease-in-out infinite alternate,
    worldZoom 4s ease-in-out infinite;
}

.world-map-box.searching .map-land path {
  fill: rgba(96, 165, 250, 0.16);
  stroke: rgba(96, 165, 250, 0.42);
}

.world-map-box.searching .scan-line {
  animation-duration: 1.2s;
  stroke-width: 2.4;
}

.world-map-box.searching .scan-point {
  animation-duration: 0.9s;
}

.world-map-box.searching .pulse-ring {
  animation-duration: 1.6s;
  stroke: rgba(56, 189, 248, 0.45);
}

.world-map-box.searching::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(56,189,248,0.06) 35%,
    rgba(56,189,248,0.14) 50%,
    rgba(255,255,255,0) 65%
  );
  animation: scanSweep 2.2s linear infinite;
  pointer-events: none;
}

@keyframes dashMove {
  from {
    stroke-dashoffset: 0;
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
  to {
    stroke-dashoffset: -36;
    opacity: 0.35;
  }
}

@keyframes pointBlink {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes mapPulse {
  0% {
    opacity: 0.20;
    transform: scale(0.9);
  }
  60% {
    opacity: 0.45;
    transform: scale(1);
  }
  100% {
    opacity: 0.08;
    transform: scale(1.08);
  }
}

@keyframes scanSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes worldPan {
  0% {
    transform: scale(1.02) translateX(0px) translateY(0px);
  }
  25% {
    transform: scale(1.06) translateX(-18px) translateY(4px);
  }
  50% {
    transform: scale(1.1) translateX(14px) translateY(-6px);
  }
  75% {
    transform: scale(1.07) translateX(-10px) translateY(8px);
  }
  100% {
    transform: scale(1.12) translateX(20px) translateY(-4px);
  }
}

@keyframes worldZoom {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.16);
  }
}



.blockchain-monitor {
  position: relative;
  background: radial-gradient(circle at center, #020617, #000);
  overflow: hidden;
}

/* GRID BACKGROUND */
.chain-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridMove 10s linear infinite;
}

@keyframes gridMove {
  from { transform: translateY(0); }
  to { transform: translateY(40px); }
}

/* GLOW EFFECT */
.chain-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(56,189,248,0.12), transparent 60%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* NETWORK */
.chain-network {
  position: absolute;
  inset: 0;
}

/* NODES */
.chain-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 12px #38bdf8;
  animation: nodePulse 1.5s infinite;
}

@keyframes nodePulse {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.6); opacity: 1; }
}

/* NODE POSITIONS */
.node-a { top: 20%; left: 30%; }
.node-b { top: 40%; left: 60%; }
.node-c { top: 70%; left: 40%; }
.node-d { top: 30%; left: 75%; }
.node-e { top: 55%; left: 20%; }
.node-f { top: 80%; left: 70%; }
.node-g { top: 15%; left: 50%; }
.node-h { top: 60%; left: 85%; }

/* LINES */
.chain-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  opacity: 0.7;
  animation: lineMove 2s linear infinite;
}

@keyframes lineMove {
  from { transform: translateX(-50px); }
  to { transform: translateX(50px); }
}

/* LINE POSITIONS */
.line-1 { top: 22%; left: 30%; width: 200px; transform: rotate(20deg); }
.line-2 { top: 40%; left: 40%; width: 180px; transform: rotate(-30deg); }
.line-3 { top: 60%; left: 20%; width: 220px; transform: rotate(15deg); }
.line-4 { top: 35%; left: 60%; width: 150px; transform: rotate(40deg); }
.line-5 { top: 75%; left: 45%; width: 200px; transform: rotate(-20deg); }
.line-6 { top: 50%; left: 70%; width: 140px; transform: rotate(25deg); }

/* INFO */
.blockchain-info {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #38bdf8;
  font-size: 13px;
  font-weight: bold;
}

.blockchain-info .hash {
  font-size: 11px;
  color: #94a3b8;
}

.blockchain-panel {
  position: relative;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 18px;
  background:
    radial-gradient(circle at center, rgba(56, 189, 248, 0.08), transparent 35%),
    linear-gradient(180deg, #030712 0%, #08111f 55%, #020617 100%);
  border: 1px solid #172033;
  box-shadow: inset 0 0 40px rgba(56, 189, 248, 0.04);
}

.bc-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.7;
}

.bc-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(56,189,248,0.10), transparent 30%),
    radial-gradient(circle at 20% 30%, rgba(37,99,235,0.10), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(14,165,233,0.08), transparent 24%);
}

.bc-scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(56,189,248,0.04) 35%,
    rgba(56,189,248,0.18) 50%,
    rgba(255,255,255,0) 65%
  );
  transform: translateX(-120%);
  z-index: 3;
}

.bc-header {
  position: absolute;
  top: 16px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 6;
}

.bc-title {
  color: #dbeafe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.bc-hash {
  color: #94a3b8;
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.bc-network {
  position: absolute;
  inset: 0;
}

.bc-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow:
    0 0 0 5px rgba(56,189,248,0.08),
    0 0 16px rgba(56,189,248,0.85);
  animation: bcNodePulse 2s ease-in-out infinite;
  z-index: 4;
}

.node-a { top: 18%; left: 18%; animation-delay: 0.1s; }
.node-b { top: 26%; left: 38%; animation-delay: 0.5s; }
.node-c { top: 20%; left: 60%; animation-delay: 0.9s; }
.node-d { top: 30%; left: 80%; animation-delay: 1.3s; }
.node-e { top: 48%; left: 24%; animation-delay: 0.4s; }
.node-f { top: 52%; left: 48%; animation-delay: 1s; }
.node-g { top: 46%; left: 72%; animation-delay: 1.5s; }
.node-h { top: 72%; left: 18%; animation-delay: 0.7s; }
.node-i { top: 76%; left: 44%; animation-delay: 1.2s; }
.node-j { top: 70%; left: 74%; animation-delay: 1.7s; }

.bc-link {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.95), transparent);
  transform-origin: left center;
  opacity: 0.8;
  z-index: 2;
  animation: bcLinkFlow 2.4s linear infinite;
}

.link-1 { width: 180px; top: 22%; left: 19%; transform: rotate(14deg); }
.link-2 { width: 170px; top: 25%; left: 40%; transform: rotate(10deg); animation-delay: 0.4s; }
.link-3 { width: 150px; top: 40%; left: 26%; transform: rotate(-8deg); animation-delay: 0.7s; }
.link-4 { width: 170px; top: 48%; left: 48%; transform: rotate(-6deg); animation-delay: 1s; }
.link-5 { width: 185px; top: 63%; left: 19%; transform: rotate(8deg); animation-delay: 1.2s; }
.link-6 { width: 170px; top: 62%; left: 45%; transform: rotate(-4deg); animation-delay: 1.5s; }
.link-7 { width: 120px; top: 34%; left: 68%; transform: rotate(24deg); animation-delay: 1.8s; }
.link-8 { width: 130px; top: 56%; left: 67%; transform: rotate(20deg); animation-delay: 2s; }

.bc-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.bc-core {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #06b6d4;
  box-shadow:
    0 0 0 8px rgba(6,182,212,0.08),
    0 0 24px rgba(6,182,212,0.95);
}

.bc-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(56,189,248,0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bc-ring.ring-1 { width: 70px; height: 70px; }
.bc-ring.ring-2 { width: 120px; height: 120px; }
.bc-ring.ring-3 { width: 180px; height: 180px; }

.bc-stats {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  z-index: 6;
}

.bc-stat {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(56, 189, 248, 0.10);
  backdrop-filter: blur(6px);
}

.bc-stat span {
  display: block;
  color: #94a3b8;
  font-size: 11px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bc-stat strong {
  color: #dbeafe;
  font-size: 16px;
  font-weight: 800;
}

.world-status-text {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  text-align: center;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 600;
  z-index: 6;
}

.blockchain-panel.searching .bc-scan-line {
  animation: bcBeamSweep 1.8s linear infinite;
}

.blockchain-panel.searching .bc-grid {
  animation: bcGridShift 6s linear infinite;
}

.blockchain-panel.searching .bc-ring {
  animation: bcRingPulse 2s ease-out infinite;
}

.blockchain-panel.searching .bc-node {
  animation-duration: 0.9s;
}

.blockchain-panel.searching .bc-link {
  animation-duration: 1.1s;
}

.blockchain-panel.searching {
  box-shadow:
    inset 0 0 70px rgba(56,189,248,0.08),
    0 0 40px rgba(37,99,235,0.16);
}

@keyframes bcNodePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.45);
    opacity: 1;
  }
}

@keyframes bcLinkFlow {
  0% {
    opacity: 0.2;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.3);
  }
  100% {
    opacity: 0.2;
    filter: brightness(1);
  }
}

@keyframes bcBeamSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes bcGridShift {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(34px) translateX(16px);
  }
}

@keyframes bcRingPulse {
  0% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(0.92);
  }
  60% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (max-width: 900px) {
  .bc-stats {
    grid-template-columns: 1fr;
  }
}

