/* soulmask.css — page-specific art only */
/* Shared structural styles live in server-page.css */

.tribesman-left {
  position: absolute;
  bottom: 0;
  left: 20px;
  max-height: 450px;
  pointer-events: none;
}
.tribesman-right {
  position: absolute;
  bottom: 0;
  right: 20px;
  max-height: 450px;
  pointer-events: none;
}
.headdress-left {
  position: absolute;
  left: 45px;
  top: 15px;
  max-height: 300px;
  pointer-events: none;
}
.headdress-right {
  position: absolute;
  right: 45px;
  top: 15px;
  max-height: 300px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .tribesman-left,
  .tribesman-right,
  .headdress-left,
  .headdress-right { display: none; }
}

.cluster-status {
  width: min(100%, 660px);
  margin: 8px auto 44px;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 5;
}

#serverStatus {
  width: min(100%, 660px);
  margin: 0 auto 20px;
  padding: 0 16px;
  box-sizing: border-box;
  line-height: 1.5;
  position: relative;
  z-index: 5;
}

.cluster-status.is-hidden {
  display: none;
}

.cluster-server {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(0, 204, 204, 0.2);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(6, 14, 16, 0.78), rgba(4, 10, 12, 0.62));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  text-align: left;
}

.cluster-server > div:first-child {
  min-width: 0;
}

.cluster-server-name {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cluster-server-map {
  margin-top: 4px;
  opacity: 0.8;
  font-size: 0.92em;
}

.cluster-server-offline {
  color: #ff6b6b;
  font-weight: 700;
  white-space: nowrap;
}

.cluster-server-online {
  color: #9dffb3;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(157, 255, 179, 0.22);
}

@media (max-width: 640px) {
  #serverStatus {
    width: 100%;
    padding: 0;
  }

  .cluster-status {
    width: 100%;
    margin-bottom: 32px;
  }

  .cluster-server {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
  }
}

