/* XGamingServer Panel Slider */
.ps-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.ps-sidebar {
  background: #121212;
  overflow-y: auto;
  max-height: 540px;
  scrollbar-width: thin;
  scrollbar-color: #22c55e #121212;
}
.ps-sidebar::-webkit-scrollbar { width: 6px; }
.ps-sidebar::-webkit-scrollbar-track { background: #121212; }
.ps-sidebar::-webkit-scrollbar-thumb { background: #22c55e; border-radius: 3px; }

.ps-nav-group {
  padding: 10px 16px 4px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(212,222,231,0.4);
  text-transform: uppercase;
  font-weight: 700;
}
.ps-nav-group.first { padding-top: 6px; }

.ps-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  color: #d4dee7;
  transition: all 0.2s;
}
.ps-item i { width: 16px; font-size: 0.85rem; }
.ps-item span { font-size: 0.85rem; }
.ps-item:hover { color: #ffffff; }
.ps-item.active {
  border-left-color: #22c55e;
  background: #1e1e1e;
  color: #ffffff;
}
.ps-item.active i { color: #22c55e; }

.ps-main {
  background: #0a0a0a;
  position: relative;
}
.ps-main-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a0a0a;
}
.ps-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease;
}
.ps-progress {
  height: 3px;
  background: #22c55e;
  width: 0%;
}
.ps-login {
  padding: 16px;
}
.ps-login a { font-size: 0.8rem; }
