.status-node-card {
  transition: transform 0.18s cubic-bezier(0.4,0.2,0.2,1), box-shadow 0.18s;
}
.status-node-card:hover {
  transform: scale(1.018);
  box-shadow: 0 4px 24px 0 #3faaff33;
  z-index: 2;
}
.status-node-metric-bar-fill {
  transition: width 0.7s cubic-bezier(0.4,0.2,0.2,1);
  box-shadow: 0 0 8px 0 #3faaff80, 0 0 0 0 #3faaff;
  animation: statusGlow 2.2s infinite linear;
}

@keyframes statusGlow {
  0% {
    box-shadow: 0 0 8px 0 #3faaff80, 0 0 0 0 #3faaff;
  }
  50% {
    box-shadow: 0 0 16px 4px #3faaffcc, 0 0 0 0 #3faaff;
  }
  100% {
    box-shadow: 0 0 8px 0 #3faaff80, 0 0 0 0 #3faaff;
  }
}

.status-node-metric-bar-fill {
  transition: width 0.7s cubic-bezier(0.4,0.2,0.2,1);
}
.status-dashboard-bg {
  background: #151f2e;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
  padding: 32px 24px 24px 24px;
  margin-bottom: 48px;
  color: #fff;
}

.status-dashboard-title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}

.status-dashboard-operational {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 28px;
  justify-content: center;
}

.status-dashboard-dot {
  width: 14px;
  height: 14px;
  background: #2ecc40;
  border-radius: 50%;
  margin-right: 15px;
  box-shadow: 0 0 8px #2ecc40, 0 0 0 0 #2ecc40;
  position: relative;
  animation: status-dot-pulse 1.2s infinite;
}

@keyframes status-dot-pulse {
  0% {
    box-shadow: 0 0 8px #2ecc40, 0 0 0 0 #2ecc40;
  }
  70% {
    box-shadow: 0 0 8px #2ecc40, 0 0 0 12px rgba(46,204,64,0);
  }
  100% {
    box-shadow: 0 0 8px #2ecc40, 0 0 0 0 #2ecc40;
  }
}

.status-dashboard-dot-loading {
  background: #009DE1 !important;
  box-shadow: 0 0 8px #009DE1, 0 0 0 0 #009DE1;
  animation: status-dot-pulse-loading 1.2s infinite !important;
}

@keyframes status-dot-pulse-loading {
  0% {
    box-shadow: 0 0 8px #009DE1, 0 0 0 0 #009DE1;
  }
  70% {
    box-shadow: 0 0 8px #009DE1, 0 0 0 12px rgba(0,157,225,0);
  }
  100% {
    box-shadow: 0 0 8px #009DE1, 0 0 0 0 #009DE1;
  }
}

.status-dashboard-cards {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.status-dashboard-card {
  background: #19253a;
  border-radius: 12px;
  padding: 24px 32px;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
  flex: 1 1 180px;
}

.status-dashboard-card-value {
  font-size: 2.1rem;
  font-weight: 700;
  color: #4da3ff;
  margin-bottom: 6px;
}

.status-dashboard-card-label {
  font-size: 1.05rem;
  color: #bfcbe6;
  font-weight: 500;
}

.status-dashboard-hetrix {
  background: #19253a;
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
}

.status-dashboard-hetrix-info {
  color: #4da3ff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.status-dashboard-hetrix-desc {
  color: #bfcbe6;
  font-size: 1rem;
}

.status-dashboard-hetrix-btn {
  background: #4da3ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
}
.status-dashboard-hetrix-btn:hover {
  background: #3576b8;
}

@media (max-width: 1024px) {
  .status-dashboard-title {
    font-size: 2.2rem;
  }
  
  .status-node-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  
  .status-node-metrics {
    flex-direction: column;
    gap: 12px;
  }
  
  .status-node-info {
    max-width: 100%;
  }
  
  .status-node-history {
    text-align: left;
    white-space: normal;
  }
  
  .status-node-btn {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .status-dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 14px;
  }
  
  .status-dashboard-card {
    min-width: unset;
    padding: 18px 16px;
  }
  
  .status-dashboard-bg {
    padding: 20px 16px;
    margin-bottom: 40px;
  }
  
  .status-nodes-bg {
    padding: 20px 16px;
  }
  
  .status-dashboard-hetrix {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .status-dashboard-hetrix-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .status-dashboard-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .status-dashboard-operational {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .status-dashboard-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .status-dashboard-card {
    padding: 16px;
  }
  
  .status-dashboard-card-value {
    font-size: 1.8rem;
  }
  
  .status-dashboard-card-label {
    font-size: 0.95rem;
  }
  
  .status-dashboard-bg {
    padding: 16px 12px;
    border-radius: 12px;
    margin-bottom: 30px;
  }
  
  .status-nodes-bg {
    padding: 16px 12px;
    border-radius: 12px;
  }
  
  .status-nodes-title {
    font-size: 1.25rem;
    padding: 16px 0;
  }
  
  .status-node-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    min-height: unset;
  }
  
  .status-node-info {
    max-width: 100%;
    width: 100%;
  }
  
  .status-node-name {
    font-size: 1.1rem;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }
  
  .status-node-premium {
    margin-left: 0;
    margin-top: 4px;
    display: inline-block;
  }
  
  .status-node-metrics {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  
  .status-node-metric {
    width: 100%;
  }
  
  .status-node-metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .status-node-metric-bar {
    height: 10px;
    margin-bottom: 6px;
  }
  
  .status-node-metric-value {
    font-size: 1rem;
  }
  
  .status-node-history {
    width: 100%;
    text-align: left;
    white-space: normal;
    font-size: 0.9rem;
  }
  
  .status-node-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    white-space: normal;
  }
  
  .status-dashboard-hetrix {
    padding: 16px;
    flex-direction: column;
    gap: 16px;
  }
  
  .status-dashboard-hetrix-info {
    font-size: 1.05rem;
    text-align: center;
  }
  
  .status-dashboard-hetrix-desc {
    font-size: 0.95rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .status-dashboard-title {
    font-size: 1.6rem;
  }
  
  .status-dashboard-bg {
    padding: 12px 8px;
    margin-bottom: 48px;
  }
  
  .status-nodes-bg {
    padding: 12px 8px;
  }
  
  .status-node-card {
    padding: 12px;
  }
  
  .status-dashboard-card {
    padding: 12px;
  }
  
  .status-dashboard-card-value {
    font-size: 1.6rem;
  }
  
  .status-nodes-subtitle-row .status-nodes-subtitle {
    padding: 6px 16px;
    font-size: 1rem;
  }
}

.status-nodes-bg {
  background: #151f2e;
  border-radius: 18px;
  padding: 32px 24px 24px 24px;
  margin-bottom: 24px;
  color: #fff;
}

.status-nodes-title {
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
  color: #4da3ff;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #1a2340 0%, #233b5e 100%);
  border-radius: 12px;
  border: 1px solid #232b44;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
  padding: 22px 0 22px 0;
  margin-bottom: 18px;
}

.status-nodes-subtitle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.status-nodes-subtitle-row .status-nodes-subtitle {
  background: linear-gradient(90deg, #233b5e 0%, #1a2340 100%);
  color: #4da3ff;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 32px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
  border: 1px solid #232b44;
  margin: 0 0;
}
.status-nodes-subtitle-row .status-nodes-subtitle-sep {
  display: none;
}

.status-nodes-subtitle {
  text-align: center;
  color: #bfcbe6;
  font-size: 1.08rem;
  margin-bottom: 18px;
}

.status-nodes-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.status-node-card {
  background: #19253a;
  border-radius: 12px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: 1.0fr 2.0fr 0.6fr 0.7fr;
  align-items: center;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
  min-height: 90px;
  gap: 0 18px;
}

.status-node-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: 220px;
  overflow: hidden;
}

.status-node-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #4da3ff;
  margin-bottom: 2px;
  max-width: 220px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.status-node-premium {
  background: #233b5e;
  color: #bfcbe6;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 2px 10px;
  margin-left: 6px;
}

.status-node-online {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  color: #2ecc40;
  font-weight: 600;
  margin-top: 2px;
}

.status-node-dot {
  width: 12px;
  height: 12px;
  background: #2ecc40;
  border-radius: 50%;
  margin-right: 7px;
  box-shadow: 0 0 8px #2ecc40;
}

.status-node-dot-offline {
  width: 12px;
  height: 12px;
  background: #e53935;
  border-radius: 50%;
  margin-right: 7px;
  box-shadow: 0 0 8px #e53935;
}

.status-node-metrics {
  display: flex;
  gap: 18px;
  width: 100%;
  min-width: 0;
  max-width: unset;
}

.status-node-metric {
  flex: 1 1 0;
  min-width: 0;
  max-width: unset;
}

.status-node-metric-label {
  color: #bfcbe6;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.status-node-metric-bar {
  background: #233b5e;
  border-radius: 6px;
  height: 8px;
  width: 100%;
  margin-bottom: 4px;
  overflow: hidden;
}

.status-node-metric-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #4da3ff 60%, #3576b8 100%);
}

.status-node-metric-value {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

.status-node-history {
  color: #bfcbe6;
  font-size: 0.95rem;
  margin-right: 0;
  max-width: 100%;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.status-node-btn {
  background: #4da3ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 18px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.10);
  max-width: 100%;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  justify-self: end;
  margin-right: 0;
}
.status-node-btn:hover {
  background: #3576b8;
}

@media (max-width: 900px) {
  .status-node-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px;
    min-height: unset;
  }
  .status-node-info {
    max-width: unset;
    width: 100%;
  }
  .status-node-name {
    max-width: unset;
    white-space: normal;
    text-overflow: unset;
  }
  .status-node-metrics {
    max-width: unset;
    width: 100%;
    gap: 12px;
  }
  .status-node-metric {
    max-width: unset;
    min-width: unset;
  }
  .status-node-history {
    max-width: unset;
    white-space: normal;
    text-overflow: unset;
  }
  .status-node-btn {
    max-width: unset;
    white-space: normal;
    text-overflow: unset;
    width: 100%;
  }
}

.status-node-offline-text {
  color: #e53935 !important;
  font-weight: bold;
}
.status-dashboard-dot-offline {
  background: #e53935 !important;
  box-shadow: 0 0 8px #e53935, 0 0 0 0 #e53935;
  animation: status-dot-pulse-offline 1.2s infinite;
}
@keyframes status-dot-pulse-offline {
  0% {
    box-shadow: 0 0 8px #e53935, 0 0 0 0 #e53935;
  }
  70% {
    box-shadow: 0 0 8px #e53935, 0 0 0 12px rgba(229,57,53,0);
  }
  100% {
    box-shadow: 0 0 8px #e53935, 0 0 0 0 #e53935;
  }
}
.status-node-dot {
  margin-left: -3px !important;
}
.status-node-online {
  margin-left: 8px !important;
}