body {
  background: linear-gradient(135deg, #0a0a0a 0%, #181818 100%);
  color: #e5e5fa;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.header {
  display: flex;
  align-items: center;
  background: #181818;
  padding: 32px 68px 24px 68px;
  border-radius: 24px;
  margin: 32px auto 24px auto;
  max-width: 1420px;
  box-shadow: 0 8px 32px #000a;
  position: relative;
}
.logo {
  width: 150px;
  height: 150px;
  margin-right: 32px;
}
.header-content {
  flex: 1;
}
.header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.status-badge {
  background: #222;
  color: #a78bfa;
  border-radius: 8px;
  padding: 4px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 8px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px #0005;
}
.status-badge.encrypted {
  background: #222;
  color: #a78bfa;
}
.status-badge.online {
  background: #222;
  color: #a78bfa;
}
.status-badge.right {
  float: right;
  margin-left: auto;
}
.highlight {
  color: #a78bfa;
  font-weight: 900;
  letter-spacing: 2px;
}
.header-content h1 {
  font-size: 2.3rem;
  margin: 0;
  font-weight: 800;
  text-shadow: 0 2px 8px #0007;
}
.subtitle {
  color: inherit !important;
  opacity: 1 !important;
  display: inline !important;
  visibility: visible !important;
  font-size: inherit !important;
  line-height: normal !important;
}

.status-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin: 40px auto 0 auto;
  max-width: 1400px;
}
.card {
  background: #181818;
  border-radius: 18px;
  padding: 40px 48px 32px 48px;
  min-width: 260px;
  text-align: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 24px #0007;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: #a78bfa;
}
.card-label {
  color: #a78bfa;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.card-value {
  font-size: 2.1rem;
  font-weight: 800;
  color: #e5e5fa;
  letter-spacing: 1px;
}
.player-list-section {
  background: #181818;
  border-radius: 24px;
  margin: 40px auto;
  max-width: 1400px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 4px 24px #000a;
}
.player-list-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.icon.user {
  width: 32px;
  height: 32px;
  margin-bottom: 0;
  margin-right: 8px;
}
.player-list-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #a78bfa;
  letter-spacing: 1px;
}
.player-list-sub {
  font-size: 0.95rem;
  color: #a78bfa;
  margin-top: 2px;
}
.player-list-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
#search {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #222;
  color: #e5e5fa;
  margin-right: 8px;
  outline: none;
  transition: box-shadow 0.2s;
}
#search:focus {
  box-shadow: 0 0 0 2px #a78bfa;
}
#player-count-badge, .badge {
  background: #a78bfa;
  color: #181818;
  border-radius: 8px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 4px;
}
.player-list {
  width: 100%;
  border-collapse: collapse;
  background: #181818;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px #0005;
}
.player-list th, .player-list td {
  padding: 14px 18px;
  text-align: left;
}
.player-list th {
  background: #222;
  color: #a78bfa;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
}
.player-list tr:nth-child(even) {
  background: #181818;
}
.player-list tr:nth-child(odd) {
  background: #222;
}
.player-list td {
  color: #e5e5fa;
  font-size: 1.08rem;
  font-weight: 500;
}
.ping-badge {
  background: #222;
  color: #a78bfa;
  border-radius: 8px;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ping-badge svg {
  width: 18px;
  height: 18px;
  fill: #a78bfa;
}
@media (max-width: 900px) {
  .header, .status-cards, .player-list-section {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .status-cards {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .card {
    min-width: 180px;
    padding: 24px 12px;
  }
}
