:root {
  --blue: #007bff;
  --cyan: #00d2ff;
  --text: #e1e1e1;
  --sidebar-w: 220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  height: 100%;
  overflow: hidden
}

body {
  background: radial-gradient(circle at top left, #0d1520 0%, #060810 100%);
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .65
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, .04) 2px, rgba(0, 0, 0, .04) 4px)
}



@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false
}

@keyframes rotateBorder {
  to {
    --angle: 360deg
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideInL {
  from {
    opacity: 0;
    transform: translateX(-20px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes logoPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 14px rgba(0, 180, 255, .5)) drop-shadow(0 0 30px rgba(0, 100, 255, .3))
  }

  50% {
    filter: drop-shadow(0 0 24px rgba(0, 210, 255, .85)) drop-shadow(0 0 48px rgba(0, 140, 255, .55))
  }
}

@keyframes bgridShift {
  from {
    background-position: 0 0
  }

  to {
    background-position: 0 40px
  }
}

@keyframes borbPulse {

  0%,
  100% {
    opacity: .7;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.15)
  }
}

@keyframes bstripePulse {

  0%,
  100% {
    opacity: .6
  }

  50% {
    opacity: 1
  }
}

@keyframes bdotBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

@keyframes bbarAnim {

  0%,
  100% {
    transform: scaleY(1);
    opacity: .7
  }

  50% {
    transform: scaleY(.4);
    opacity: 1
  }
}

@keyframes bFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}



/* APP SHELL */

.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  grid-template-rows: 56px 1fr;
  grid-template-areas: "sidebar topbar" "sidebar main";
  height: 100vh;
  position: relative;
  z-index: 2;
}



/* SIDEBAR */

.sidebar {
  grid-area: sidebar;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(22px);
  border-right: 1px solid rgba(0, 120, 255, .13);
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index: 50;
  animation: slideInL .5s cubic-bezier(.22, 1, .36, 1) both;
}

.sb-logo {
  padding: 22px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.sb-logo img {
  width: 120px;
  height: auto;
  mix-blend-mode: screen;
  animation: logoPulse 4s ease-in-out infinite
}

.sb-logo-name {
  font-family: 'Orbitron', monospace;
  font-size: .87rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7)
}

.sb-logo-name span {
  color: var(--cyan)
}

.sb-logo-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(0, 180, 255, .55)
}

.sb-nav {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto
}

.sb-nav::-webkit-scrollbar {
  width: 3px
}

.sb-nav::-webkit-scrollbar-thumb {
  background: rgba(0, 120, 255, .3);
  border-radius: 2px
}

.nav-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  padding: 12px 10px 5px
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  color: rgba(180, 200, 230, .6);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .22s, color .22s, padding-left .22s;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent
}

.nav-item .material-symbols-outlined {
  font-size: 21px;
  color: rgba(0, 150, 255, .4);
  transition: color .22s, transform .28s;
  flex-shrink: 0
}

.nav-item:hover,
.nav-item.active {
  background: rgba(0, 100, 255, .1);
  color: #fff;
  padding-left: 16px;
  border-color: rgba(0, 120, 255, .18)
}

.nav-item:hover .material-symbols-outlined,
.nav-item.active .material-symbols-outlined {
  color: var(--cyan);
  transform: scale(1.1)
}

.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border-radius: 0 2px 2px 0
}

.nav-item.nav-forum .material-symbols-outlined {
  color: #00d2ff !important;
  opacity: 1 !important;
}

.nav-item.nav-forum:hover {
  background: rgba(0, 160, 255, 0.12) !important;
  border-color: rgba(0, 180, 255, .25) !important;
}

/* SUB-NAV */

.nav-group {
  display: flex;
  flex-direction: column;
  gap: 0
}

.nav-item-arrow {
  margin-left: auto;
  font-size: 14px;
  opacity: .3;
  transition: transform .22s, opacity .22s;
  flex-shrink: 0
}

.nav-item.has-sub {
  padding-right: 10px
}

.nav-item.has-sub.open .nav-item-arrow {
  transform: rotate(90deg);
  opacity: .6
}

.nav-sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height .28s cubic-bezier(.22, 1, .36, 1);
  padding-left: 10px
}

.nav-sub.open {
  max-height: 250px
}

.nav-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  margin-bottom: 2px;
  border-radius: 6px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(160, 185, 225, .55);
  transition: background .18s, color .18s;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .055)
}

.nav-sub-item::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: currentColor;
  opacity: .7;
  transition: opacity .18s
}

.nav-sub-item .material-symbols-outlined {
  display: none
}

.nav-sub-item:hover {
  background: rgba(255, 255, 255, .06);
  color: rgba(200, 220, 255, .8)
}

.nav-sub-item:hover::before {
  opacity: 1
}

.nav-sub-item.active {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .12)
}

.sb-bottom {
  padding: 12px 10px;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.sb-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: rgba(0, 220, 100, .04);
  border: 1px solid rgba(0, 220, 100, .1);
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0, 220, 100, .55)
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00dc64;
  box-shadow: 0 0 8px #00dc64;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0
}





.topbar {
  grid-area: topbar;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 40;
}

.topbar-bc {
  font-family: 'Rajdhani', sans-serif;
  font-size: .89rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38)
}

.topbar-bc span {
  color: rgba(0, 200, 255, .75)
}

.topbar-live {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0, 220, 100, .45)
}







.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px
}

.tb-login-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  background: rgba(27, 40, 56, .7);
  border: 1px solid rgba(100, 140, 180, .25);
  border-radius: 8px;
  color: rgba(180, 210, 240, .7);
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  transition: all .22s;
  cursor: pointer;
  white-space: nowrap
}

.tb-login-btn:hover {
  background: rgba(40, 60, 90, .9);
  border-color: rgba(100, 160, 230, .5);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .4)
}

.tb-login-btn svg {
  flex-shrink: 0
}



.tb-user {
  position: relative
}

.tb-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 5px;
  background: rgba(0, 80, 200, .08);
  border: 1px solid rgba(0, 100, 255, .18);
  border-radius: 9px;
  cursor: pointer;
  transition: all .22s;
  min-width: 0
}

.tb-user-btn:hover {
  background: rgba(0, 80, 200, .16);
  border-color: rgba(0, 150, 255, .4)
}

.tb-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(0, 120, 255, .3);
  flex-shrink: 0;
  background: rgba(0, 40, 80, .5)
}

.tb-user-avatar-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 50, 50, .08);
  border: 1px solid rgba(0, 120, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tb-user-avatar-placeholder .material-symbols-outlined {
  font-size: 20px;
  color: rgba(0, 150, 255, .6)
}

.tb-user-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: rgba(200, 220, 255, .85);
  letter-spacing: .03em;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.tb-user-role {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 80, 80, .7);
  line-height: 1
}

.tb-user-role.role-user {
  color: rgba(0, 200, 255, .5)
}

.tb-user-btn .material-symbols-outlined.arr {
  font-size: 16px;
  color: rgba(0, 150, 255, .5);
  transition: transform .22s;
  flex-shrink: 0
}

.tb-user.open .tb-user-btn .arr {
  transform: rotate(180deg)
}



/* dropdown */

.tb-user-drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: rgba(5, 10, 24, .97);
  border: 1px solid rgba(0, 100, 255, .22);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .7), 0 0 0 1px rgba(0, 80, 200, .08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  z-index: 200
}

.tb-user.open .tb-user-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}



.tb-drop-header {
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  gap: 10px
}

.tb-drop-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid rgba(0, 120, 255, .25);
  flex-shrink: 0;
  background: rgba(0, 40, 80, .5)
}

.tb-drop-avatar-ph {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(255, 50, 50, .08);
  border: 1px solid rgba(0, 120, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tb-drop-avatar-ph .material-symbols-outlined {
  font-size: 24px;
  color: rgba(0, 150, 255, .55)
}

.tb-drop-info-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1.2
}

.tb-drop-info-role {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 80, 80, .7);
  margin-top: 2px
}

.tb-drop-info-role.role-user {
  color: rgba(0, 200, 255, .5)
}

.tb-drop-steamid {
  font-family: monospace;
  font-size: .73rem;
  color: rgba(80, 120, 180, .4);
  margin-top: 1px
}



.tb-drop-body {
  padding: 6px 8px
}

.tb-drop-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(160, 185, 220, .65);
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .18s, color .18s;
  text-decoration: none;
  position: relative
}

.tb-drop-item:hover {
  background: rgba(0, 80, 200, .1);
  color: #fff
}

.tb-drop-item .material-symbols-outlined {
  font-size: 19px;
  color: rgba(0, 140, 255, .45);
  flex-shrink: 0;
  transition: color .18s
}

.tb-drop-item:hover .material-symbols-outlined {
  color: var(--cyan)
}





.tb-drop-sep {
  height: 1px;
  background: rgba(255, 255, 255, .05);
  margin: 5px 8px
}

.tb-drop-item.danger {
  color: rgba(255, 100, 100, .6)
}

.tb-drop-item.danger .material-symbols-outlined {
  color: rgba(255, 80, 80, .4)
}

.tb-drop-item.danger:hover {
  background: rgba(200, 0, 0, .1);
  color: rgba(255, 130, 130, .9)
}

.tb-drop-item.danger:hover .material-symbols-outlined {
  color: rgba(255, 100, 100, .8)
}

.tb-drop-item.admin-link .material-symbols-outlined {
  color: rgba(255, 80, 80, .45)
}

.tb-drop-item.admin-link:hover {
  background: rgba(200, 0, 0, .08);
  color: rgba(255, 130, 130, .85)
}



/* Profile settings modal */

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(20px)
}

.profile-modal.open {
  display: flex
}

.profile-box {
  width: calc(100% - 40px);
  max-width: 420px;
  background: rgba(5, 10, 24, .98);
  border: 1px solid rgba(0, 100, 255, .28);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .8);
  overflow: hidden
}

.profile-box-hdr {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.profile-box-hdr h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff
}

.profile-box-close {
  background: none;
  border: none;
  color: rgba(150, 170, 210, .4);
  cursor: pointer;
  padding: 4px;
  border-radius: 5px;
  transition: color .2s
}

.profile-box-close:hover {
  color: #fff
}

.profile-box-close .material-symbols-outlined {
  font-size: 20px
}

.profile-box-body {
  padding: 20px
}

.profile-section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(0, 180, 255, .4);
  margin-bottom: 10px
}

.profile-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px
}

.profile-avatar-big {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(0, 120, 255, .3);
  background: rgba(0, 40, 80, .5);
  flex-shrink: 0
}

.profile-avatar-big-ph {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(0, 80, 200, .18);
  border: 2px solid rgba(0, 120, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.profile-avatar-big-ph .material-symbols-outlined {
  font-size: 34px;
  color: rgba(0, 150, 255, .5)
}

.profile-avatar-actions {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  cursor: pointer;
  transition: all .2s;
  border: none
}

.profile-btn-primary {
  background: rgba(0, 100, 255, .16);
  border: 1px solid rgba(0, 150, 255, .3);
  color: var(--cyan)
}

.profile-btn-primary:hover {
  background: rgba(0, 130, 255, .26);
  border-color: rgba(0, 200, 255, .5)
}

.profile-btn-secondary {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(180, 200, 230, .5)
}

.profile-btn-secondary:hover {
  background: rgba(255, 255, 255, .08)
}

.profile-btn .material-symbols-outlined {
  font-size: 16px
}

.profile-future-block {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px
}

.profile-future-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: .87rem;
  font-weight: 700;
  color: rgba(180, 200, 240, .5);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px
}

.profile-future-title .material-symbols-outlined {
  font-size: 17px;
  color: rgba(0, 150, 255, .35)
}

.profile-future-desc {
  font-size: .8rem;
  color: rgba(100, 130, 180, .4);
  line-height: 1.5
}

.profile-future-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 160, 0, .07);
  border: 1px solid rgba(255, 160, 0, .15);
  color: rgba(255, 180, 0, .55);
  text-transform: uppercase;
  margin-top: 8px
}

.profile-future-tag .material-symbols-outlined {
  font-size: 13px
}





.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px
}

.tb-login-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  background: rgba(27, 40, 56, .7);
  border: 1px solid rgba(100, 140, 180, .25);
  border-radius: 8px;
  color: rgba(180, 210, 240, .7);
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  transition: all .22s;
  cursor: pointer;
  white-space: nowrap
}

.tb-login-btn:hover {
  background: rgba(40, 60, 90, .9);
  border-color: rgba(100, 160, 230, .5);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .4)
}

.tb-login-btn svg {
  flex-shrink: 0
}

.tb-user {
  position: relative
}

.tb-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 5px;
  background: rgba(0, 80, 200, .08);
  border: 1px solid rgba(0, 100, 255, .18);
  border-radius: 9px;
  cursor: pointer;
  transition: all .22s;
  user-select: none
}

.tb-user-btn:hover {
  background: rgba(0, 80, 200, .16);
  border-color: rgba(0, 150, 255, .4)
}

.tb-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(0, 120, 255, .3);
  flex-shrink: 0;
  background: rgba(0, 40, 80, .5)
}

.tb-user-avatar-ph {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 50, 50, .08);
  border: 1px solid rgba(0, 120, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tb-user-avatar-ph .material-symbols-outlined {
  font-size: 20px;
  color: rgba(0, 150, 255, .6)
}

.tb-user-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: rgba(200, 220, 255, .85);
  letter-spacing: .03em;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.tb-user-role {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 80, 80, .7);
  line-height: 1
}

.tb-user-role.role-user {
  color: rgba(0, 200, 255, .5)
}

.tb-user-btn .arr {
  font-size: 16px;
  color: rgba(0, 150, 255, .5);
  transition: transform .22s;
  flex-shrink: 0
}

.tb-user.open .tb-user-btn .arr {
  transform: rotate(180deg)
}

.tb-user-drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 250px;
  background: rgba(5, 10, 24, .97);
  border: 1px solid rgba(0, 100, 255, .22);
  border-radius: 13px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .75), 0 0 0 1px rgba(0, 80, 200, .08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  z-index: 200
}

.tb-user.open .tb-user-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.tb-drop-header {
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  gap: 10px
}

.tb-drop-avatar {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid rgba(0, 120, 255, .25);
  flex-shrink: 0;
  background: rgba(0, 40, 80, .5)
}

.tb-drop-avatar-ph {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: rgba(0, 80, 200, .18);
  border: 1px solid rgba(0, 120, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.tb-drop-avatar-ph .material-symbols-outlined {
  font-size: 24px;
  color: rgba(0, 150, 255, .5)
}

.tb-drop-info {
  min-width: 0
}

.tb-drop-info-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px
}

.tb-drop-info-role {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 80, 80, .7);
  margin-top: 2px
}

.tb-drop-info-role.role-user {
  color: rgba(0, 200, 255, .5)
}

.tb-drop-steamid {
  font-family: monospace;
  font-size: .7rem;
  color: rgba(80, 120, 180, .38);
  margin-top: 1px
}

.tb-drop-body {
  padding: 6px 8px
}

.tb-drop-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(160, 185, 220, .65);
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .18s, color .18s;
  text-decoration: none;
  position: relative
}

.tb-drop-item:hover {
  background: rgba(0, 80, 200, .1);
  color: #fff
}

.tb-drop-item .material-symbols-outlined {
  font-size: 19px;
  color: rgba(0, 140, 255, .4);
  flex-shrink: 0;
  transition: color .18s
}

.tb-drop-item:hover .material-symbols-outlined {
  color: var(--cyan)
}



.tb-drop-sep {
  height: 1px;
  background: rgba(255, 255, 255, .05);
  margin: 5px 8px
}

.tb-drop-item.danger {
  color: rgba(255, 100, 100, .55)
}

.tb-drop-item.danger .material-symbols-outlined {
  color: rgba(255, 80, 80, .38)
}

.tb-drop-item.danger:hover {
  background: rgba(200, 0, 0, .1);
  color: rgba(255, 140, 140, .9)
}

.tb-drop-item.danger:hover .material-symbols-outlined {
  color: rgba(255, 100, 100, .8)
}

.tb-drop-item.admin-link .material-symbols-outlined {
  color: rgba(255, 80, 80, .4)
}

.tb-drop-item.admin-link:hover {
  background: rgba(200, 0, 0, .08);
  color: rgba(255, 140, 140, .85)
}

.tb-drop-item.admin-link:hover .material-symbols-outlined {
  color: rgba(255, 100, 100, .75)
}

/* Profile modal */

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(20px)
}

.profile-modal.open {
  display: flex
}

.profile-box {
  width: calc(100% - 40px);
  max-width: 430px;
  background: rgba(5, 10, 24, .98);
  border: 1px solid rgba(0, 100, 255, .26);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .8);
  overflow: hidden
}

.profile-box-hdr {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.profile-box-hdr h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff
}

.profile-box-close {
  background: none;
  border: none;
  color: rgba(150, 170, 210, .35);
  cursor: pointer;
  padding: 4px;
  border-radius: 5px;
  transition: color .2s;
  display: flex;
  align-items: center
}

.profile-box-close:hover {
  color: #fff
}

.profile-box-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.profile-section-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(0, 180, 255, .38);
  margin-bottom: 6px
}

.profile-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px
}

.profile-avatar-big {
  width: 64px;
  height: 64px;
  border-radius: 13px;
  object-fit: cover;
  border: 2px solid rgba(0, 120, 255, .28);
  background: rgba(0, 40, 80, .5);
  flex-shrink: 0
}

.profile-avatar-big-ph {
  width: 64px;
  height: 64px;
  border-radius: 13px;
  background: rgba(0, 80, 200, .16);
  border: 2px solid rgba(0, 120, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.profile-avatar-big-ph .material-symbols-outlined {
  font-size: 34px;
  color: rgba(0, 150, 255, .45)
}

.profile-avatar-actions {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.prf-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid transparent;
  text-decoration: none
}

.prf-btn-primary {
  background: rgba(0, 100, 255, .15);
  border-color: rgba(0, 150, 255, .28);
  color: var(--cyan)
}

.prf-btn-primary:hover {
  background: rgba(0, 130, 255, .24);
  border-color: rgba(0, 200, 255, .5)
}

.prf-btn-secondary {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .09);
  color: rgba(160, 180, 220, .45)
}

.prf-btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
  color: rgba(200, 215, 240, .65)
}

.prf-btn .material-symbols-outlined {
  font-size: 16px
}

.profile-future-block {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 10px;
  padding: 13px 15px
}

.profile-future-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: rgba(180, 200, 240, .48);
  margin-bottom: 4px
}

.profile-future-title .material-symbols-outlined {
  font-size: 18px;
  color: rgba(0, 150, 255, .32)
}

.profile-future-desc {
  font-size: .79rem;
  color: rgba(100, 130, 180, .38);
  line-height: 1.6
}

.prf-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 160, 0, .07);
  border: 1px solid rgba(255, 160, 0, .14);
  color: rgba(255, 180, 0, .5);
  text-transform: uppercase;
  margin-top: 8px
}

.prf-soon-tag .material-symbols-outlined {
  font-size: 13px
}

/* MAIN scrolls */

.main-content {
  grid-area: main;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.main-content::-webkit-scrollbar {
  width: 5px
}

.main-content::-webkit-scrollbar-track {
  background: transparent
}

.main-content::-webkit-scrollbar-thumb {
  background: rgba(0, 120, 255, .22);
  border-radius: 3px
}

.main-inner::-webkit-scrollbar {
  width: 5px
}

.main-inner::-webkit-scrollbar-track {
  background: transparent
}

.main-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 120, 255, .22);
  border-radius: 3px
}

.main-inner {
  padding: 26px 26px 20px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.main-content::-webkit-scrollbar {
  width: 5px
}

.main-content::-webkit-scrollbar-track {
  background: transparent
}

.main-content::-webkit-scrollbar-thumb {
  background: rgba(0, 120, 255, .22);
  border-radius: 3px
}

.page {
  display: none
}

.page.active {
  display: block;
  animation: fadeUp .4s cubic-bezier(.22, 1, .36, 1) both
}

.page-header {
  margin-bottom: 22px
}

.page-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 24px rgba(0, 140, 255, .4)
}

.page-title span {
  color: var(--cyan)
}

.page-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(150, 180, 220, .35);
  margin-top: 4px
}



/* BANNER */

.fg-banner {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  cursor: default;
  margin-bottom: 26px;
}

.fg-banner .bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0, 80, 180, .28) 0%, transparent 65%), radial-gradient(ellipse 50% 80% at 10% 80%, rgba(0, 200, 255, .08) 0%, transparent 60%), linear-gradient(135deg, #050810 0%, #080e1a 50%, #050912 100%)
}

.fg-banner .bgrid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 120, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 120, 255, .07) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: bgridShift 20s linear infinite;
  mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 80%, transparent 100%)
}

.fg-banner .bscan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, .06) 3px, rgba(0, 0, 0, .06) 4px);
  pointer-events: none;
  z-index: 10
}

.fg-banner .borb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none
}

.fg-banner .borb-1 {
  width: 280px;
  height: 280px;
  background: rgba(0, 100, 255, .22);
  top: -80px;
  right: 80px;
  animation: borbPulse 6s ease-in-out infinite
}

.fg-banner .borb-2 {
  width: 180px;
  height: 180px;
  background: rgba(0, 210, 255, .12);
  bottom: -60px;
  left: 120px;
  animation: borbPulse 8s ease-in-out infinite reverse
}

.fg-banner .borb-3 {
  width: 160px;
  height: 160px;
  background: rgba(80, 0, 200, .1);
  top: 20px;
  left: 40px;
  animation: borbPulse 10s ease-in-out infinite 2s
}

.fg-banner .bstripe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0, 180, 255, .6) 30%, rgba(0, 120, 255, .9) 60%, transparent);
  transform: skewX(-12deg);
  box-shadow: 0 0 20px rgba(0, 160, 255, .5);
  animation: bstripePulse 3s ease-in-out infinite
}

.fg-banner .bstripe-2 {
  left: 54%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 210, 255, .3) 40%, rgba(0, 180, 255, .5) 60%, transparent);
  animation: bstripePulse 3s ease-in-out infinite .5s;
  box-shadow: none
}

.fg-banner .bshimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .04) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 8
}

.fg-banner:hover .bshimmer {
  transform: translateX(200%);
  transition: transform .8s ease
}

.fg-banner .bglowbot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 120, 255, .5) 30%, rgba(0, 210, 255, .8) 50%, rgba(0, 120, 255, .5) 70%, transparent);
  box-shadow: 0 0 10px rgba(0, 160, 255, .4)
}

.fg-banner .bglowtop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04) 30%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, .04) 70%, transparent)
}

.fg-banner .bcorner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 6
}

.fg-banner .bc-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid rgba(0, 180, 255, .45);
  border-left: 2px solid rgba(0, 180, 255, .45);
  border-radius: 4px 0 0 0
}

.fg-banner .bc-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid rgba(0, 180, 255, .45);
  border-right: 2px solid rgba(0, 180, 255, .45);
  border-radius: 0 4px 0 0
}

.fg-banner .bc-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid rgba(0, 180, 255, .45);
  border-left: 2px solid rgba(0, 180, 255, .45);
  border-radius: 0 0 0 4px
}

.fg-banner .bc-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgba(0, 180, 255, .45);
  border-right: 2px solid rgba(0, 180, 255, .45);
  border-radius: 0 0 4px 0
}

.fg-banner .bwave {
  position: absolute;
  bottom: 16px;
  left: 48px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  opacity: .2;
  z-index: 5
}

.fg-banner .bbar {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #00d2ff, #0060ff);
  animation: bbarAnim 1.2s ease-in-out infinite
}

.fg-banner .bbar:nth-child(1) {
  height: 40%
}

.fg-banner .bbar:nth-child(2) {
  height: 70%;
  animation-delay: .1s
}

.fg-banner .bbar:nth-child(3) {
  height: 55%;
  animation-delay: .2s
}

.fg-banner .bbar:nth-child(4) {
  height: 90%;
  animation-delay: .05s
}

.fg-banner .bbar:nth-child(5) {
  height: 60%;
  animation-delay: .15s
}

.fg-banner .bbar:nth-child(6) {
  height: 45%;
  animation-delay: .25s
}

.fg-banner .bbar:nth-child(7) {
  height: 80%;
  animation-delay: .08s
}

.fg-banner .bbar:nth-child(8) {
  height: 50%;
  animation-delay: .18s
}

.fg-banner .bbar:nth-child(9) {
  height: 65%;
  animation-delay: .12s
}

.fg-banner .bbar:nth-child(10) {
  height: 35%;
  animation-delay: .22s
}

.fg-banner .bcontent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 48px;
  z-index: 5
}

.fg-banner .bleft {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: flex-start
}

.fg-banner .btag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #00aadd;
  opacity: 0;
  animation: bFadeUp .6s .1s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .btag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00d2ff;
  box-shadow: 0 0 8px #00d2ff;
  animation: bdotBlink 2s ease-in-out infinite
}

.fg-banner .btitle {
  font-family: 'Orbitron', monospace;
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 30px rgba(0, 140, 255, .5), 0 0 60px rgba(0, 80, 255, .2);
  opacity: 0;
  animation: bFadeUp .6s .22s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .btitle span {
  color: #00d2ff;
  text-shadow: 0 0 20px rgba(0, 210, 255, .8)
}

.fg-banner .bsub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, .4);
  opacity: 0;
  animation: bFadeUp .6s .32s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .bstats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: bFadeUp .6s .42s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .bstat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .91rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(150, 180, 220, .75);
  text-transform: uppercase
}

.fg-banner .bright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
  flex-shrink: 0;
  opacity: 0;
  animation: bFadeUp .6s .5s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .bright img {
  height: 120px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(0, 180, 255, .6)) drop-shadow(0 0 40px rgba(0, 100, 255, .3))
}

.fg-banner canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2
}

@media(max-width:640px) {
  .fg-banner {
    height: 150px
  }

  .fg-banner .btitle {
    font-size: 1.75rem
  }

  .fg-banner .bcontent {
    padding: 0 22px
  }

  .fg-banner .bstats {
    display: none
  }

  .fg-banner .bright img {
    height: 90px
  }
}

.fg-banner .bcta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(0, 100, 255, .25), rgba(0, 60, 180, .35));
  border: 1px solid rgba(0, 150, 255, .55);
  border-radius: 10px;
  padding: 11px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 0 20px rgba(0, 100, 255, .2)
}

.fg-banner .bcta:hover {
  border-color: rgba(0, 210, 255, .8);
  box-shadow: 0 0 30px rgba(0, 150, 255, .45);
  transform: translateY(-2px);
  color: #fff
}



/* CATEGORIES */

.game-cat {
  margin-bottom: 32px
}

.cat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(18, 24, 34, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cat-badge {
  font-family: 'Orbitron', monospace;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
  /* Lśniący neon zachowujący kolor tekstu */
}

.badge-cs2 {
  background: rgba(240, 168, 0, .15);
  border: 1px solid rgba(240, 168, 0, .4);
  color: #f0a800;
}

.badge-csgo {
  background: rgba(241, 134, 0, .15);
  border: 1px solid rgba(241, 134, 0, .4);
  color: #f18600;
}


.badge-css {
  background: rgba(120, 100, 200, .15);
  border: 1px solid rgba(120, 100, 200, .4);
  color: #a07be0;
}

.badge-cs16 {
  background: rgba(0, 120, 255, .15);
  border: 1px solid rgba(0, 120, 255, .4);
  color: #4da6ff;
}

.cat-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7)
}

.cat-meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px
}

.cat-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(100, 140, 200, .6)
}

.cat-total {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0, 200, 255, .5)
}

.cat-total .material-symbols-outlined {
  font-size: 16px
}



/* SERVER GRID */

.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

/* shimmer sweep on hover */
.srv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .06) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0s;
  pointer-events: none;
  z-index: 5;
  border-radius: 10px
}

.srv-card:hover::after {
  transform: translateX(160%);
  transition: transform .5s ease
}


.srv-mapbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  transition: opacity .35s, transform .45s cubic-bezier(.25, 1, .5, 1);
  z-index: 0;
  pointer-events: none;
  transform: scale(1.02);
}

.srv-card:hover .srv-mapbg {
  opacity: .55;
  transform: scale(1.07)
}

/* refined dark overlay to allow better visibility while maintaining contrast */
.srv-mapbg-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.92) 0%, rgba(8, 12, 18, 0.45) 50%, rgba(0, 0, 0, 0.98) 100%);
  z-index: 1;
  pointer-events: none;
}

/* left red accent bar */
.srv-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 3;
  border-radius: 14px 0 0 14px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.srv-card:hover .srv-accent {
  opacity: 1;
  box-shadow: 2px 0 18px currentColor;
}

.gcs2 .srv-accent {
  background: linear-gradient(180deg, #f0a800, #c88800);
  color: #f0a800;
}

.gcs2.srv-card:hover {
  box-shadow: 0 16px 40px rgba(240, 168, 0, 0.15), 0 0 20px rgba(240, 168, 0, 0.08) !important;
  border-color: rgba(240, 168, 0, 0.3) !important;
}

.gcsgo .srv-accent {
  background: linear-gradient(180deg, #f18600, #c86000);
  color: #f18600;
}

.gcsgo.srv-card:hover {
  box-shadow: 0 16px 40px rgba(241, 134, 0, 0.15), 0 0 20px rgba(241, 134, 0, 0.08) !important;
  border-color: rgba(241, 134, 0, 0.3) !important;
}

.gcss .srv-accent {
  background: linear-gradient(180deg, #a07be0, #6040b0);
  color: #a07be0;
}

.gcss.srv-card:hover {
  box-shadow: 0 16px 40px rgba(160, 123, 224, 0.15), 0 0 20px rgba(160, 123, 224, 0.08) !important;
  border-color: rgba(160, 123, 224, 0.3) !important;
}

.gcs16 .srv-accent {
  background: linear-gradient(180deg, #4da6ff, #2060c0);
  color: #4da6ff;
}

.gcs16.srv-card:hover {
  box-shadow: 0 16px 40px rgba(77, 166, 255, 0.15), 0 0 20px rgba(77, 166, 255, 0.08) !important;
  border-color: rgba(77, 166, 255, 0.3) !important;
}



/* map background gradient + PNG */
.srv-card-scan {
  display: none
}

/* map bg themes */

.bg-mirage {
  background-image: linear-gradient(135deg, #c8a060 0%, #8b6230 40%, #3d2a10 100%)
}

.bg-awp {
  background-image: linear-gradient(135deg, #803030 0%, #501818 40%, #1e0808 100%)
}

.bg-aim {
  background-image: linear-gradient(135deg, #285898 0%, #142858 40%, #040e20 100%)
}

.bg-moce {
  background-image: linear-gradient(135deg, #207060 0%, #0e3830 40%, #041412 100%)
}

.bg-arena {
  background-image: linear-gradient(135deg, #483880 0%, #241c48 40%, #0c0a1c 100%)
}

.bg-zombie {
  background-image: linear-gradient(135deg, #386020 0%, #1c3010 40%, #080e04 100%)
}

.bg-deathrun {
  background-image: linear-gradient(135deg, #702020 0%, #3c1010 40%, #180606 100%)
}

.bg-gungame {
  background-image: linear-gradient(135deg, #205878 0%, #103040 40%, #040e16 100%)
}

.bg-ffa {
  background-image: linear-gradient(135deg, #384870 0%, #1c2440 40%, #080c18 100%)
}

.bg-cod {
  background-image: linear-gradient(135deg, #604010 0%, #3a2008 40%, #140a02 100%)
}

.bg-bf2 {
  background-image: linear-gradient(135deg, #4060a0 0%, #203060 40%, #080e24 100%)
}

.bg-dd2 {
  background-image: linear-gradient(135deg, #c0a060 0%, #806028 40%, #30200a 100%)
}

.bg-source {
  background-image: linear-gradient(135deg, #306050 0%, #183028 40%, #060e0a 100%)
}

.bg-fun {
  background-image: linear-gradient(135deg, #508060 0%, #204020 40%, #08100a 100%)
}

.bg-none {
  background-image: none;
  opacity: 0 !important
}

.bg-rotate {
  background-size: cover;
  background-position: center
}

.bg-css {
  background-image: linear-gradient(135deg, #204060 0%, #102030 40%, #040a10 100%)
}

.bg-cs16 {
  background-image: linear-gradient(135deg, #3a2010 0%, #1e1008 40%, #0a0604 100%)
}





/* DEMOS PAGE */

.dtabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap
}

.dtab-btn {
  padding: 7px 18px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  color: rgba(150, 170, 200, .5);
  font-family: 'Poppins', sans-serif;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .22s
}

.dtab-btn.active,
.dtab-btn:hover {
  background: rgba(0, 100, 255, .12);
  border-color: rgba(0, 140, 255, .3);
  color: #fff
}

.dtab-btn.active {
  border-color: rgba(0, 180, 255, .4);
  color: var(--cyan)
}

.dtab-panel {
  display: none
}

.dtab-panel.active {
  display: block
}

/* TILE GRID for demo servers */

.dsrv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px
}

.dsrv-tile {
  background: rgba(6, 9, 18, .88);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
  position: relative
}

.dsrv-tile::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: conic-gradient(from var(--angle), #0080ff, #0040cc, #0066ff, #00aaff, #0080ff);
  z-index: 0;
  padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .07;
  transition: opacity .3s;
  pointer-events: none;
  animation: rotateBorder 4s linear infinite
}

.dsrv-tile:hover {
  border-color: rgba(0, 150, 255, .35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5)
}

.dsrv-tile:hover::before {
  opacity: .32
}

.dsrv-tile.nodemo {
  cursor: default;
  opacity: .45
}

.dsrv-tile.nodemo:hover {
  transform: none;
  box-shadow: none
}

.dsrv-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  z-index: 0;
  pointer-events: none;
  transition: opacity .35s, transform .45s cubic-bezier(.25, 1, .5, 1);
  transform: scale(1.02)
}

.dsrv-tile:hover .dsrv-tile-bg {
  opacity: .55;
  transform: scale(1.07)
}

.dsrv-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, .72) 100%);
  z-index: 1;
  pointer-events: none
}

.dsrv-tile-head {
  padding: 12px 14px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.dsrv-tile-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2a2a2a;
  flex-shrink: 0;
  transition: background .3s, box-shadow .3s
}

.dsrv-tile-led.online {
  background: #00dc64;
  box-shadow: 0 0 8px #00dc64
}

.dsrv-tile-led.offline {
  background: #ff4040
}

.dsrv-tile-name {
  flex: 1;
  font-size: .97rem;
  font-weight: 700;
  color: rgba(220, 235, 255, .95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.dsrv-tile-badge {
  font-family: 'Orbitron', monospace;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0
}

.dsrv-tile-body {
  padding: 10px 14px 12px;
  position: relative;
  z-index: 2
}

.dsrv-tile-pl {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px
}

.dsrv-tile-plnum {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(0, 220, 150, .85);
  line-height: 1
}

.dsrv-tile-plmax {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  color: rgba(100, 140, 180, .45);
  align-self: flex-end;
  margin-bottom: 1px
}

.dsrv-tile-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px
}

.dsrv-tile-barfill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  transition: width .6s cubic-bezier(.22, 1, .36, 1);
  background: linear-gradient(90deg, var(--blue), var(--cyan))
}

.dsrv-tile-ip {
  font-family: 'Rajdhani', sans-serif;
  font-size: .83rem;
  color: rgba(150, 180, 230, .65);
  letter-spacing: .04em
}

.dsrv-tile-foot {
  padding: 8px 14px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2
}

.dsrv-tile-demos {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(0, 180, 255, .5);
  letter-spacing: .05em;
  text-transform: uppercase
}

.dsrv-tile-demos .material-symbols-outlined {
  font-size: 15px
}

.dsrv-tile-nodemo {
  font-size: .75rem;
  color: rgba(100, 130, 180, .25);
  font-style: italic
}



/* BANS PAGE */

.bans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto
}

.ban-card {
  background: rgba(6, 9, 18, .88);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 13px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
  position: relative
}

.ban-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: conic-gradient(from var(--angle), #0080ff, #0040cc, #0066ff, #00aaff, #0080ff);
  z-index: 0;
  padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .07;
  transition: opacity .3s;
  pointer-events: none;
  animation: rotateBorder 4s linear infinite
}

.ban-card:hover {
  border-color: rgba(0, 150, 255, .35);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .5)
}

.ban-card:hover::before {
  opacity: .38
}

.ban-img {
  width: 100%;
  height: 110px;
  overflow: hidden;
  position: relative;
  z-index: 1
}

.ban-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
  transition: opacity .3s, transform .3s
}

.ban-card:hover .ban-img img {
  opacity: .9;
  transform: scale(1.04)
}

.ban-body {
  padding: 14px 16px 16px;
  position: relative;
  z-index: 1
}

.ban-body b {
  display: block;
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.ban-body p {
  font-size: .78rem;
  color: rgba(150, 170, 210, .45);
  line-height: 1.4
}

.ban-goto {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding: 5px 13px;
  background: rgba(0, 100, 255, .1);
  border: 1px solid rgba(0, 130, 255, .22);
  border-radius: 6px;
  color: var(--cyan);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase
}

.ban-tools {
  margin-top: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.ban-tools-hdr {
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .18);
  margin-bottom: 12px
}

.tool-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(6, 9, 18, .7);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .25s, background .25s
}

.tool-item:hover {
  border-color: rgba(0, 130, 255, .28);
  background: rgba(0, 60, 180, .07)
}

.t-ic {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(0, 100, 255, .1);
  border: 1px solid rgba(0, 120, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.t-ic .material-symbols-outlined {
  font-size: 22px;
  color: var(--cyan)
}

.t-inf b {
  display: block;
  font-size: .91rem;
  font-weight: 700;
  color: #fff
}

.t-inf p {
  font-size: .75rem;
  color: rgba(140, 160, 200, .4);
  margin-top: 2px
}

.t-arr {
  margin-left: auto;
  color: rgba(100, 140, 200, .28)
}



/* DEMO PANEL - MODERNIZED */
.demo-panel {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(16px);
}

.demo-panel.open {
  display: flex;
  animation: demoFadeIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes demoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.demo-box {
  width: calc(100% - 48px);
  max-width: 900px;
  max-height: 88vh;
  background: linear-gradient(135deg, #0b0f19 0%, #06090e 100%);
  border: 1px solid rgba(0, 150, 255, .2);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .9), 0 0 30px rgba(0, 150, 255, .1);
  position: relative;
}

.demo-box-hdr {
  padding: 20px 24px;
  background: rgba(4, 7, 16, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}

.demo-box-hdr h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.demo-box-hdr small {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  color: rgba(100, 150, 255, .6);
  margin-top: 4px;
  display: block;
}

.demo-hdr-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-openweb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0, 120, 255, .15);
  border: 1px solid rgba(0, 150, 255, .3);
  border-radius: 8px;
  color: #00d2ff;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
}

.btn-openweb:hover {
  background: rgba(0, 150, 255, .3);
  border-color: #00d2ff;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 150, 255, 0.4);
}

.demo-close {
  padding: 8px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: rgba(200, 215, 255, .7);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.demo-close:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  transform: scale(1.05);
}























.fpill.active,


/* Color palettes for specific maps if matching */
.fpill.mc1 {
  background: rgba(255, 180, 0, .08);
  border-color: rgba(255, 180, 0, .2);
  color: rgba(255, 200, 0, .8);
}

.fpill.mc1:hover,
.fpill.mc1.active {
  background: rgba(255, 180, 0, .2) !important;
  color: #fff !important;
}

.fpill.mc2 {
  background: rgba(0, 200, 100, .08);
  border-color: rgba(0, 200, 100, .2);
  color: rgba(0, 220, 100, .8);
}

.fpill.mc2:hover,
.fpill.mc2.active {
  background: rgba(0, 200, 100, .2) !important;
  color: #fff !important;
}

.fpill.mc3 {
  background: rgba(180, 0, 255, .08);
  border-color: rgba(180, 0, 255, .2);
  color: rgba(200, 50, 255, .8);
}

.fpill.mc3:hover,
.fpill.mc3.active {
  background: rgba(180, 0, 255, .2) !important;
  color: #fff !important;
}

.fpill.mc4 {
  background: rgba(255, 80, 0, .08);
  border-color: rgba(255, 80, 0, .2);
  color: rgba(255, 100, 50, .8);
}

.fpill.mc4:hover,
.fpill.mc4.active {
  background: rgba(255, 80, 0, .2) !important;
  color: #fff !important;
}





.filter-clear.hidden {
  display: none;
}

.demo-count {
  padding: 12px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(100, 150, 255, .5);
  flex-shrink: 0;
}



.demo-list::-webkit-scrollbar {
  width: 6px;
}

.demo-list::-webkit-scrollbar-thumb {
  background: rgba(0, 150, 255, .4);
  border-radius: 3px;
}



























.demo-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  color: rgba(100, 150, 255, .5);
  font-size: 1.1rem;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(0, 150, 255, .2);
  border-top-color: #00d2ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}

.demo-empty {
  text-align: center;
  padding: 50px;
  color: rgba(100, 140, 200, .5);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}

/* OLD FOOTER STYLES REMOVED - see global.css */



/* SERVER DETAIL MODAL */
/* SERVER DETAIL MODAL - MODERNIZED */

.sv-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(16px);
}

.sv-modal.open {
  display: flex;
  animation: modalFadeIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sv-box {
  width: calc(100% - 40px);
  max-width: 520px;
  background: linear-gradient(135deg, #0b0f19 0%, #06090e 100%);
  border: 1px solid rgba(0, 150, 255, .2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .9), 0 0 30px rgba(0, 150, 255, .1);
  position: relative;
}

.sv-box-mapbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity .6s, transform 5s ease-out;
  border-radius: 16px;
  transform: scale(1.05);
}

.sv-modal.open .sv-box-mapbg {
  transform: scale(1);
}

.sv-box-mapoverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.6) 40%, rgba(4, 6, 10, 0.98) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 16px;
}

.sv-box>*:not(.sv-box-mapbg):not(.sv-box-mapoverlay) {
  position: relative;
  z-index: 2;
}

.sv-box-hdr {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sv-box-hdr h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.sv-modal-close {
  padding: 6px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: rgba(200, 215, 255, .7);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.sv-modal-close:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  transform: scale(1.05);
}

.sv-box-body {
  padding: 24px;
}

.sv-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.sv-detail-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(100, 150, 255, .6);
  width: 85px;
  flex-shrink: 0;
}

.sv-detail-val {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sv-players-hdr {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(100, 150, 255, .5);
  margin: 20px 0 10px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 16px;
}

.sv-player-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}

.sv-player-list::-webkit-scrollbar {
  width: 4px;
}

.sv-player-list::-webkit-scrollbar-thumb {
  background: rgba(0, 150, 255, .4);
  border-radius: 4px;
}

.sv-player-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.sv-player-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .02);
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}

.sv-player-item:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .08);
  transform: translateX(2px);
}

.sv-player-name {
  flex: 1;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(220, 235, 255, .9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sv-player-score {
  font-family: 'Orbitron', monospace;
  font-size: .9rem;
  font-weight: 700;
  color: #00d2ff;
  width: 40px;
  text-align: right;
  text-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
}

.sv-player-time {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  color: rgba(140, 160, 200, .5);
  width: 55px;
  text-align: right;
}

.sv-no-players {
  text-align: center;
  padding: 30px;
  color: rgba(100, 140, 200, .4);
  font-size: .95rem;
  font-style: italic;
}

.sv-box-foot {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.3);
}

.sv-conn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(0, 120, 255, .15);
  border: 1px solid rgba(0, 150, 255, .3);
  border-radius: 10px;
  color: #00d2ff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
}

.sv-conn:hover {
  background: rgba(0, 150, 255, .3);
  border-color: #00d2ff;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
}



/* RESPONSIVE */

@media(max-width:800px) {

  :root {
    --sidebar-w: 60px
  }

  .sb-logo-name,
  .sb-logo-tag,
  .nav-lbl,
  .nav-item span:not(.material-symbols-outlined),
  .sb-status span {
    display: none
  }

  .nav-item {
    padding: 11px;
    justify-content: center;
    gap: 0
  }

  .sb-logo {
    padding: 12px 8px
  }

  .sb-logo img {
    width: 36px
  }

  .main-inner {
    padding: 16px 14px 0
  }

  .srv-grid {
    grid-template-columns: 1fr
  }

  .footer-extlinks {
    display: none
  }

}









.sb-lang-select {
  position: relative;
  margin-bottom: 8px
}

.sb-lang-current {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: rgba(0, 80, 200, .07);
  border: 1px solid rgba(0, 100, 255, .15);
  border-radius: 9px;
  cursor: pointer;
  transition: all .2s
}

.sb-lang-current:hover {
  background: rgba(0, 100, 255, .12);
  border-color: rgba(0, 150, 255, .25)
}

.sb-lang-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(180, 200, 240, .6);
  flex: 1
}

.sb-lang-arrow {
  font-size: 16px;
  color: rgba(100, 140, 200, .4);
  transition: transform .2s
}

.sb-lang-dropdown {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(4, 8, 20, .97);
  border: 1px solid rgba(255, 50, 50, .2);
  border-radius: 9px;
  overflow: hidden;
  display: none;
  z-index: 100;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, .6)
}

.sb-lang-dropdown.open {
  display: block
}

.sb-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: .87rem;
  font-weight: 700;
  color: rgba(160, 190, 230, .55);
  transition: background .15s
}

.sb-lang-option:hover {
  background: rgba(0, 80, 200, .1);
  color: #fff
}

.sb-lang-option span:nth-child(2) {
  flex: 1
}

.sb-lang-check {
  color: var(--cyan);
  font-size: .85rem
}

.sb-col .sb-lang-label,
.sb-col .sb-lang-arrow {
  display: none
}

.sb-col #sb-community {
  display: none !important
}

.sb-col .sb-lang-current {
  justify-content: center;
  padding: 8px
}

@media(max-width:800px) {

  .sb-lang-label,
  .sb-lang-arrow {
    display: none !important
  }

  .sb-lang-current {
    justify-content: center;
    padding: 8px
  }
}



/* SVG FLAG ICONS */

.flag-svg {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center
}

.flag-svg svg {
  width: 100%;
  height: 100%
}





.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-shrink: 0;
  z-index: 10;
  position: relative
}



.footer-logo-name {
  font-family: 'Orbitron', monospace;
  font-size: .93rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 3px
}

.footer-logo-name span {
  color: var(--cyan)
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255, 255, 255, .32);
  letter-spacing: .03em
}

.footer-copy a {
  color: rgba(0, 210, 255, .32);
  text-decoration: none;
  transition: color .2s
}

.footer-copy a:hover {
  color: rgba(0, 210, 255, .75)
}

.footer-desc {
  font-size: .79rem;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px
}





.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}





.social-btn {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;
  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, .08);

  background: rgba(255, 255, 255, .03);

  text-decoration: none;
  flex-shrink: 0;

  position: relative;
  overflow: visible;



  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1),

    border-color .25s, box-shadow .25s, background .25s;

}



.social-btn::before {

  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;

  background: radial-gradient(circle at 50% 120%, var(--sc, transparent) 0%, transparent 65%);

  transition: opacity .35s;
  pointer-events: none;
  overflow: hidden;

  border-radius: 12px;

}

.social-btn svg {
  width: 17px;
  height: 17px;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
  flex-shrink: 0;
  position: relative;
  z-index: 1
}





.social-lbl {

  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;

  transform: translateX(-50%) translateY(4px);

  pointer-events: none;

  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;

  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;

  padding: 3px 8px;
  border-radius: 5px;

  background: rgba(8, 14, 30, .92);
  border: 1px solid rgba(255, 255, 255, .1);

  color: rgba(200, 220, 255, .75);

  opacity: 0;

  transition: opacity .18s, transform .18s;

  z-index: 100;

}

.social-lbl::after {

  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  border: 4px solid transparent;
  border-top-color: rgba(8, 14, 30, .92);

}



.social-btn:hover {
  transform: translateY(-3px) scale(1.06)
}

.social-btn:hover svg {
  transform: scale(1.12)
}

.social-btn:hover::before {
  opacity: 1
}

.social-btn:hover .social-lbl {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}



/* Per-platform */

.si-twitch {
  --sc: rgba(145, 70, 255, .4)
}

.si-discord {
  --sc: rgba(88, 101, 242, .4)
}

.si-teamspeak {
  --sc: rgba(26, 140, 255, .4)
}

.si-tiktok {
  --sc: rgba(105, 201, 208, .4)
}

.si-fb {
  --sc: rgba(24, 119, 242, .4)
}

.si-ig {
  --sc: rgba(225, 48, 108, .4)
}



.si-twitch:hover {
  border-color: rgba(145, 70, 255, .65) !important;
  box-shadow: 0 4px 22px rgba(145, 70, 255, .55), 0 0 38px rgba(145, 70, 255, .18) !important
}

.si-discord:hover {
  border-color: rgba(88, 101, 242, .7) !important;
  box-shadow: 0 4px 22px rgba(88, 101, 242, .6), 0 0 38px rgba(88, 101, 242, .2) !important
}

.si-teamspeak:hover {
  border-color: rgba(26, 140, 255, .65) !important;
  box-shadow: 0 4px 22px rgba(26, 140, 255, .55), 0 0 38px rgba(26, 140, 255, .18) !important
}

.si-tiktok:hover {
  border-color: rgba(105, 201, 208, .65) !important;
  box-shadow: 0 4px 22px rgba(105, 201, 208, .5), 0 0 38px rgba(105, 201, 208, .18) !important
}

.si-fb:hover {
  border-color: rgba(24, 119, 242, .65) !important;
  box-shadow: 0 4px 22px rgba(24, 119, 242, .55), 0 0 38px rgba(24, 119, 242, .18) !important
}

.si-ig:hover {
  border-color: rgba(225, 48, 108, .65) !important;
  box-shadow: 0 4px 22px rgba(225, 48, 108, .5), 0 0 38px rgba(225, 48, 108, .18) !important
}

/* Kolorowe tooltip etykiety */

.si-twitch:hover .social-lbl {
  color: #b387ff;
  border-color: rgba(145, 70, 255, .35)
}

.si-discord:hover .social-lbl {
  color: #8b98ff;
  border-color: rgba(88, 101, 242, .35)
}

.si-teamspeak:hover .social-lbl {
  color: #6db8ff;
  border-color: rgba(26, 140, 255, .3)
}

.si-tiktok:hover .social-lbl {
  color: #69c9d0;
  border-color: rgba(105, 201, 208, .3)
}

.si-fb:hover .social-lbl {
  color: #5ba3ff;
  border-color: rgba(24, 119, 242, .3)
}

.si-ig:hover .social-lbl {
  border-color: rgba(225, 48, 108, .3)
}



.ig-lbl {
  color: transparent !important;
  background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important
}

@media(max-width:800px) {

  .site-footer {
    flex-wrap: wrap;
    padding: 14px 16px;
    gap: 12px
  }

  .footer-socials {
    justify-content: flex-end;
    flex: none;
    gap: 8px
  }

}





.wip-container {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px
}

.wip-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.wip-gold {
  background: rgba(255, 180, 0, .08);
  border: 1px solid rgba(255, 180, 0, .2);
  box-shadow: 0 0 40px rgba(255, 180, 0, .08)
}

.wip-purple {
  background: rgba(150, 60, 255, .08);
  border: 1px solid rgba(150, 60, 255, .2);
  box-shadow: 0 0 40px rgba(150, 60, 255, .08)
}

.wip-icon {
  font-size: 40px;
  color: #ffd700
}

.wip-purple .wip-icon {
  color: #b87cff
}

.wip-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .22em;
  padding: 4px 14px;
  border-radius: 5px;
  background: rgba(255, 180, 0, .1);
  border: 1px solid rgba(255, 180, 0, .25);
  color: rgba(255, 200, 0, .7);
  text-transform: uppercase
}

.wip-badge-purple {
  background: rgba(150, 60, 255, .1);
  border-color: rgba(150, 60, 255, .25);
  color: rgba(180, 120, 255, .7)
}

.wip-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .06em;
  text-shadow: 0 0 30px rgba(255, 180, 0, .3)
}

.wip-desc {
  font-size: .97rem;
  color: rgba(160, 185, 220, .5);
  line-height: 1.8;
  max-width: 480px
}

.wip-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%
}

.wip-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(160, 185, 220, .6);
  text-align: left
}

.wip-feat .material-symbols-outlined {
  font-size: 19px;
  color: rgba(255, 180, 0, .5);
  flex-shrink: 0
}

.wip-features-purple .wip-feat .material-symbols-outlined {
  color: rgba(150, 60, 255, .6)
}

.wip-progress {
  width: 100%
}

.wip-progress-label {
  display: flex;
  justify-content: space-between;
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(100, 130, 180, .4);
  margin-bottom: 7px
}

.wip-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, .05);
  border-radius: 3px;
  overflow: hidden
}

.wip-progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s cubic-bezier(.22, 1, .36, 1)
}

.wip-fill-gold {
  background: linear-gradient(90deg, #f18600, #ffd700);
  box-shadow: 0 0 8px rgba(255, 180, 0, .5)
}

.wip-fill-purple {
  background: linear-gradient(90deg, #6020cc, #c060ff);
  box-shadow: 0 0 8px rgba(150, 60, 255, .5)
}





.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 0 40px
}

.faq-header {
  text-align: center;
  margin-bottom: 28px
}

.faq-head-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 100, 255, .08);
  border: 1px solid rgba(0, 120, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px
}

.faq-head-icon .material-symbols-outlined {
  font-size: 28px;
  color: rgba(0, 180, 255, .6)
}

.faq-head-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff
}

.faq-head-title span {
  color: var(--cyan)
}

.faq-head-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(120, 160, 210, .38);
  margin-top: 5px
}

.faq-cats {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.faq-cat-btn {
  padding: 7px 18px;
  background: rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  color: rgba(140, 170, 210, .45);
  font-family: 'Poppins', sans-serif;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .22s
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: rgba(0, 100, 255, .12);
  border-color: rgba(0, 150, 255, .3);
  color: var(--cyan)
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.faq-item {
  background: rgba(6, 10, 22, .85);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 11px;
  overflow: hidden;
  transition: border-color .22s
}

.faq-item:hover {
  border-color: rgba(0, 100, 255, .18)
}

.faq-item.open {
  border-color: rgba(0, 150, 255, .25)
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none
}

.faq-q-icon {
  font-family: 'Orbitron', monospace;
  font-size: .67rem;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(0, 100, 255, .1);
  border: 1px solid rgba(0, 120, 255, .2);
  color: rgba(0, 180, 255, .5);
  flex-shrink: 0;
  letter-spacing: .06em
}

.faq-q-text {
  flex: 1;
  font-size: .97rem;
  font-weight: 600;
  color: rgba(200, 220, 255, .78)
}

.faq-arrow {
  font-size: 20px;
  color: rgba(100, 140, 200, .35);
  transition: transform .25s;
  flex-shrink: 0
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--cyan)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s cubic-bezier(.22, 1, .36, 1)
}

.faq-item.open .faq-a {
  max-height: 300px
}

.faq-a-inner {
  padding: 0 16px 16px 44px;
  font-size: .93rem;
  color: rgba(150, 175, 220, .55);
  line-height: 1.8
}

.faq-a-inner b {
  color: rgba(0, 200, 255, .7);
  font-weight: 700
}

.faq-a-inner code {
  font-family: monospace;
  background: rgba(0, 60, 200, .15);
  padding: 1px 6px;
  border-radius: 4px;
  color: rgba(100, 200, 255, .8);
  font-size: .9rem
}





.sidebar {
  transition: width .3s cubic-bezier(.4, 0, .2, 1);
}

.app-shell {
  transition: grid-template-columns .3s cubic-bezier(.4, 0, .2, 1);
}





.sb-edge {

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;

  cursor: pointer;
  z-index: 10;

  background: linear-gradient(180deg, transparent, rgba(0, 180, 255, .35) 30%, rgba(0, 100, 255, .55) 60%, transparent);

  transition: width .2s, opacity .2s, box-shadow .2s;

  opacity: .6;

}

.sb-edge:hover {

  width: 10px;
  opacity: 1;

  box-shadow: -3px 0 14px rgba(0, 180, 255, .25);

  background: linear-gradient(180deg, transparent, rgba(0, 210, 255, .65) 30%, rgba(0, 150, 255, .9) 60%, transparent);

}

/* Tooltip na edgeu */

.sb-edge::after {

  content: 'Zwiń';

  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);

  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;

  text-transform: uppercase;
  color: rgba(0, 200, 255, .7);

  background: rgba(4, 10, 24, .9);
  border: 1px solid rgba(0, 120, 255, .25);

  padding: 3px 8px;
  border-radius: 5px;
  white-space: nowrap;

  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;

}

.sb-edge:hover::after {
  opacity: 1;
}

body.sb-col .sb-edge::after {
  content: 'Rozwiń';
}





/* collapsed state applied to body */

body.sb-col .app-shell {
  grid-template-columns: 64px 1fr;
}

body.sb-col .sidebar {
  width: 64px;
  overflow: visible;
}

body.sb-col .sb-logo-name,

body.sb-col .sb-logo-tag,

body.sb-col .nav-lbl,

body.sb-col .nav-item-label,

body.sb-col .nav-item-arrow {
  display: none !important;
}





body.sb-col .sb-bottom {

  display: flex !important;

  flex-direction: column;

  align-items: center;

  gap: 6px;

  padding: 10px 0;

  overflow: visible;

}



body.sb-col .sb-lang-label,

body.sb-col .sb-lang-arrow {
  display: none !important;
}

body.sb-col .sb-lang-current {

  background: transparent !important;

  border: none !important;

  padding: 4px !important;

  justify-content: center !important;

  width: 32px;

  height: 28px;

  border-radius: 6px;

  transition: background .2s;

}

body.sb-col .sb-lang-current:hover {

  background: rgba(0, 100, 255, .12) !important;

  border: 1px solid rgba(0, 100, 255, .2) !important;

}



body.sb-col .sb-lang-dropdown {

  left: calc(100% + 8px) !important;

  right: auto !important;

  bottom: 0 !important;

  top: auto !important;

  min-width: 120px;

}



body.sb-col .sb-status {

  background: transparent !important;

  border: none !important;

  padding: 0 !important;

  justify-content: center;

  width: auto;

}

body.sb-col .sb-status span {
  display: none !important;
}



body.sb-col .sb-logo {
  padding: 14px 0;
  align-items: center;
}

body.sb-col .sb-logo img {
  width: 32px;
  height: 32px;
}

body.sb-col .sb-edge {
  opacity: .5;
}

body.sb-col .sb-edge:hover {
  opacity: 1;
}





body.sb-col .nav-item {
  justify-content: center;
  padding: 11px 0;
  position: relative;
}



body.sb-col .nav-item {
  overflow: visible !important;
}

body.sb-col .sb-nav {
  overflow: visible !important;
}



body.sb-col .nav-item .material-symbols-outlined:first-child {
  font-size: 24px;
}





body.sb-col .nav-item:not(.has-sub)::after {

  content: attr(data-tooltip);

  position: absolute;
  left: calc(100% + 10px);
  top: 50%;

  transform: translateY(-50%) translateX(-4px);

  background: rgba(4, 8, 20, .96);
  border: 1px solid rgba(0, 120, 255, .28);

  color: #c8e0ff;
  font-family: 'Rajdhani', sans-serif;
  font-size: .83rem;
  font-weight: 700;

  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;

  padding: 5px 11px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;

  box-shadow: 0 4px 18px rgba(0, 0, 0, .65);

  transition: opacity .15s, transform .15s;

}

body.sb-col .nav-item:not(.has-sub)::before {

  content: '';
  position: absolute;
  left: calc(100% + 4px);
  top: 50%;

  transform: translateY(-50%) translateX(-4px);

  border: 5px solid transparent;
  border-right-color: rgba(0, 120, 255, .28);

  pointer-events: none;
  opacity: 0;
  z-index: 10000;
  transition: opacity .15s, transform .15s;

}

body.sb-col .nav-item:not(.has-sub):hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

body.sb-col .nav-item:not(.has-sub):hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}





body.sb-col .nav-item:not(.has-sub):hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0)
}


body.sb-col .nav-group {
  position: relative;
}

body.sb-col .nav-sub.open {
  position: absolute;
  left: 64px;
  top: 0;
  min-width: 160px;
  max-height: none !important;
  background: rgba(4, 8, 20, .97);
  border: 1px solid rgba(0, 120, 255, .22);
  border-radius: 10px;
  padding: 6px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .7);
  z-index: 200;
  overflow: hidden
}

body.sb-col .nav-sub.open .nav-sub-item {
  padding: 8px 16px;
  font-size: .9rem
}





.streamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  padding: 4px 0 28px;
}

.streamer-card {
  background: rgba(8, 12, 28, .9);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.streamer-card:hover {
  border-color: rgba(145, 70, 255, .5);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(145, 70, 255, .18);
}

.streamer-thumb {
  width: 100%;
  height: 130px;
  background: rgba(145, 70, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.streamer-thumb .material-symbols-outlined {
  font-size: 50px;
  color: rgba(145, 70, 255, .25);
}

.streamer-body {
  padding: 14px 16px;
}

.streamer-name {
  font-family: 'Orbitron', monospace;
  font-size: .97rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.streamer-desc {
  font-size: .87rem;
  color: rgba(150, 175, 220, .48);
  line-height: 1.6;
  margin-bottom: 10px;
  min-height: 30px;
}

.streamer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.streamer-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #9146ff;
  text-decoration: none;
  border: 1px solid rgba(145, 70, 255, .3);
  padding: 5px 11px;
  border-radius: 6px;
  transition: all .2s;
}

.streamer-link:hover {
  background: rgba(145, 70, 255, .15);
  border-color: rgba(145, 70, 255, .6);
}

.streamer-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 80, 80, .8);
}

.streamer-live-dot {
  width: 7px;
  height: 7px;
  background: #f00;
  border-radius: 50%;
  box-shadow: 0 0 6px #f00;
  animation: blink 1.2s ease-in-out infinite;
}

.page-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(140, 170, 220, .3);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  letter-spacing: .12em;
}





.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
  padding: 4px 0 28px;
}

.dl-card {
  background: rgba(8, 12, 28, .9);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.dl-card:hover {
  border-color: rgba(0, 180, 255, .38);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 150, 255, .12);
}

.dl-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 100, 255, .1);
  border: 1px solid rgba(0, 120, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-card-icon .material-symbols-outlined {
  font-size: 23px;
  color: rgba(0, 200, 255, .6);
}

.dl-card-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
}

.dl-card-desc {
  font-size: .85rem;
  color: rgba(150, 175, 220, .5);
  line-height: 1.5;
  flex: 1;
}

.dl-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 100, 255, .12);
  border: 1px solid rgba(0, 150, 255, .25);
  color: var(--cyan);
  font-family: 'Rajdhani', sans-serif;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 13px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  align-self: flex-start;
}

.dl-card-btn:hover {
  background: rgba(0, 150, 255, .22);
  border-color: rgba(0, 200, 255, .5);
}





.admin-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 10px 0 40px;
}

.admin-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 80, 200, .08);
  border: 1px solid rgba(0, 100, 255, .14);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: .87rem;
  color: rgba(0, 180, 255, .5);
}

.admin-notice .material-symbols-outlined {
  font-size: 17px;
  flex-shrink: 0;
}

.admin-section {
  margin-bottom: 28px;
}

.admin-section-hdr {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Orbitron', monospace;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0, 180, 255, .5);
  border-bottom: 1px solid rgba(0, 120, 255, .1);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.admin-section-hdr .material-symbols-outlined {
  font-size: 17px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media(max-width:700px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }
}

.admin-form {
  background: rgba(4, 8, 20, .85);
  border: 1px solid rgba(0, 100, 255, .14);
  border-radius: 12px;
  padding: 16px;
}

.admin-field {
  margin-bottom: 11px;
}

.admin-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .81rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(120, 160, 210, .5);
  display: block;
  margin-bottom: 5px;
}

.admin-input,
.admin-textarea,
.admin-select {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(0, 100, 255, .15);
  border-radius: 6px;
  padding: 8px 11px;
  color: #c8d8f0;
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}

.admin-input:focus,
.admin-textarea:focus,
.admin-select:focus {
  border-color: rgba(0, 180, 255, .4);
}

.admin-textarea {
  resize: vertical;
  min-height: 68px;
}

.admin-select option {
  background: #060a14;
  color: #c8d8f0;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 100, 255, .16);
  border: 1px solid rgba(0, 150, 255, .32);
  color: var(--cyan);
  font-family: 'Rajdhani', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .22s;
  margin-top: 4px;
}

.admin-btn:hover {
  background: rgba(0, 150, 255, .26);
  border-color: rgba(0, 210, 255, .5);
  box-shadow: 0 0 18px rgba(0, 180, 255, .18);
}

.admin-btn .material-symbols-outlined {
  font-size: 15px;
}

.admin-btn-danger {
  background: rgba(180, 0, 0, .14);
  border-color: rgba(255, 60, 60, .28);
  color: rgba(255, 100, 100, .8);
  padding: 4px 9px;
  font-size: .77rem;
  margin-top: 0;
}

.admin-btn-danger:hover {
  background: rgba(200, 0, 0, .24);
  border-color: rgba(255, 60, 60, .55);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(80, 130, 200, .45);
  text-align: left;
  padding: 5px 10px;
  border-bottom: 1px solid rgba(0, 80, 200, .1);
}

.admin-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  font-size: .89rem;
  color: rgba(180, 200, 240, .6);
  vertical-align: middle;
}

.admin-table tr:hover td {
  background: rgba(0, 80, 200, .05);
}

.admin-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 7px;
  border-radius: 4px;
}

.admin-tag-live {
  background: rgba(255, 0, 0, .1);
  border: 1px solid rgba(255, 60, 60, .22);
  color: rgba(255, 90, 90, .8);
}

.admin-tag-off {
  background: rgba(80, 100, 140, .1);
  border: 1px solid rgba(80, 100, 140, .2);
  color: rgba(120, 150, 190, .5);
}

.admin-code {
  font-family: monospace;
  font-size: .83rem;
  color: rgba(0, 200, 255, .6);
  background: rgba(0, 60, 200, .12);
  padding: 2px 6px;
  border-radius: 4px;
  display: block;
  line-height: 1.7;
}






.fg-banner {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  cursor: default;
  margin-bottom: 26px;
}

.fg-banner .bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0, 80, 180, .28) 0%, transparent 65%), radial-gradient(ellipse 50% 80% at 10% 80%, rgba(0, 200, 255, .08) 0%, transparent 60%), linear-gradient(135deg, #050810 0%, #080e1a 50%, #050912 100%)
}

.fg-banner .bgrid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 120, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 120, 255, .07) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: bgridShift 20s linear infinite;
  mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 80%, transparent 100%)
}

.fg-banner .bscan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, .06) 3px, rgba(0, 0, 0, .06) 4px);
  pointer-events: none;
  z-index: 10
}

.fg-banner .borb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none
}

.fg-banner .borb-1 {
  width: 280px;
  height: 280px;
  background: rgba(0, 100, 255, .22);
  top: -80px;
  right: 80px;
  animation: borbPulse 6s ease-in-out infinite
}

.fg-banner .borb-2 {
  width: 180px;
  height: 180px;
  background: rgba(0, 210, 255, .12);
  bottom: -60px;
  left: 120px;
  animation: borbPulse 8s ease-in-out infinite reverse
}

.fg-banner .borb-3 {
  width: 160px;
  height: 160px;
  background: rgba(80, 0, 200, .1);
  top: 20px;
  left: 40px;
  animation: borbPulse 10s ease-in-out infinite 2s
}

.fg-banner .bstripe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0, 180, 255, .6) 30%, rgba(0, 120, 255, .9) 60%, transparent);
  transform: skewX(-12deg);
  box-shadow: 0 0 20px rgba(0, 160, 255, .5);
  animation: bstripePulse 3s ease-in-out infinite
}

.fg-banner .bstripe-2 {
  left: 54%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 210, 255, .3) 40%, rgba(0, 180, 255, .5) 60%, transparent);
  animation: bstripePulse 3s ease-in-out infinite .5s;
  box-shadow: none
}

.fg-banner .bshimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .04) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 8
}

.fg-banner:hover .bshimmer {
  transform: translateX(200%);
  transition: transform .8s ease
}

.fg-banner .bglowbot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 120, 255, .5) 30%, rgba(0, 210, 255, .8) 50%, rgba(0, 120, 255, .5) 70%, transparent);
  box-shadow: 0 0 10px rgba(0, 160, 255, .4)
}

.fg-banner .bglowtop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04) 30%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, .04) 70%, transparent)
}

.fg-banner .bcorner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 6
}

.fg-banner .bc-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid rgba(0, 180, 255, .45);
  border-left: 2px solid rgba(0, 180, 255, .45);
  border-radius: 4px 0 0 0
}

.fg-banner .bc-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid rgba(0, 180, 255, .45);
  border-right: 2px solid rgba(0, 180, 255, .45);
  border-radius: 0 4px 0 0
}

.fg-banner .bc-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid rgba(0, 180, 255, .45);
  border-left: 2px solid rgba(0, 180, 255, .45);
  border-radius: 0 0 0 4px
}

.fg-banner .bc-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgba(0, 180, 255, .45);
  border-right: 2px solid rgba(0, 180, 255, .45);
  border-radius: 0 0 4px 0
}

.fg-banner .bwave {
  position: absolute;
  bottom: 16px;
  left: 48px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  opacity: .2;
  z-index: 5
}

.fg-banner .bbar {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #00d2ff, #0060ff);
  animation: bbarAnim 1.2s ease-in-out infinite
}

.fg-banner .bbar:nth-child(1) {
  height: 40%
}

.fg-banner .bbar:nth-child(2) {
  height: 70%;
  animation-delay: .1s
}

.fg-banner .bbar:nth-child(3) {
  height: 55%;
  animation-delay: .2s
}

.fg-banner .bbar:nth-child(4) {
  height: 90%;
  animation-delay: .05s
}

.fg-banner .bbar:nth-child(5) {
  height: 60%;
  animation-delay: .15s
}

.fg-banner .bbar:nth-child(6) {
  height: 45%;
  animation-delay: .25s
}

.fg-banner .bbar:nth-child(7) {
  height: 80%;
  animation-delay: .08s
}

.fg-banner .bbar:nth-child(8) {
  height: 50%;
  animation-delay: .18s
}

.fg-banner .bbar:nth-child(9) {
  height: 65%;
  animation-delay: .12s
}

.fg-banner .bbar:nth-child(10) {
  height: 35%;
  animation-delay: .22s
}

.fg-banner .bcontent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 48px;
  z-index: 5
}

.fg-banner .bleft {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: flex-start
}

.fg-banner .btag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #00aadd;
  opacity: 0;
  animation: bFadeUp .6s .1s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .btag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00d2ff;
  box-shadow: 0 0 8px #00d2ff;
  animation: bdotBlink 2s ease-in-out infinite
}

.fg-banner .btitle {
  font-family: 'Orbitron', monospace;
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 30px rgba(0, 140, 255, .5), 0 0 60px rgba(0, 80, 255, .2);
  opacity: 0;
  animation: bFadeUp .6s .22s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .btitle span {
  color: #00d2ff;
  text-shadow: 0 0 20px rgba(0, 210, 255, .8)
}

.fg-banner .bsub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, .4);
  opacity: 0;
  animation: bFadeUp .6s .32s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .bstats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: bFadeUp .6s .42s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .bstat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .91rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(150, 180, 220, .75);
  text-transform: uppercase
}

.fg-banner .bright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
  flex-shrink: 0;
  opacity: 0;
  animation: bFadeUp .6s .5s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .bright img {
  height: 120px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(0, 180, 255, .6)) drop-shadow(0 0 40px rgba(0, 100, 255, .3))
}

.fg-banner canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2
}

@media(max-width:640px) {
  .fg-banner {
    height: 150px
  }

  .fg-banner .btitle {
    font-size: 1.75rem
  }

  .fg-banner .bcontent {
    padding: 0 22px
  }

  .fg-banner .bstats {
    display: none
  }

  .fg-banner .bright img {
    height: 90px
  }
}

.fg-banner .bcta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(0, 100, 255, .25), rgba(0, 60, 180, .35));
  border: 1px solid rgba(0, 150, 255, .55);
  border-radius: 10px;
  padding: 11px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 0 20px rgba(0, 100, 255, .2)
}

.fg-banner .bcta:hover {
  border-color: rgba(0, 210, 255, .8);
  box-shadow: 0 0 30px rgba(0, 150, 255, .45);
  transform: translateY(-2px);
  color: #fff
}

.fg-banner .banner-mapdot.active {
  background: rgba(255, 255, 255, .85);
  transform: scale(1.3);
}

.nav-sklep {
  color: rgba(0, 220, 150, .75) !important
}

.nav-sklep .material-symbols-outlined {
  color: rgba(0, 200, 130, .65) !important
}

.nav-sklep:hover,
.nav-sklep.active {
  background: rgba(0, 180, 120, .1) !important;
  color: #00eea8 !important
}


.gcs2 .srv-bar,
.gcs2 .cat-bar {
  background: linear-gradient(90deg, #f0a800, #ffc060) !important
}

.gcsgo .srv-bar,
.gcsgo .cat-bar {
  background: linear-gradient(90deg, #f18600, #ffba50) !important
}

.gcss .srv-bar,
.gcss .cat-bar {
  background: linear-gradient(90deg, #a07be0, #c09aff) !important
}

.gcs16 .srv-bar,
.gcs16 .cat-bar {
  background: linear-gradient(90deg, #4da6ff, #80c8ff) !important
}

.gcs2 .gcsgo .gcss .gcs16 .nav-sub-item.game-cs2 {
  color: #f0a800;
  border-color: rgba(240, 168, 0, .18)
}

.nav-sub-item.game-cs2:hover {
  background: rgba(240, 168, 0, .09) !important;
  border-color: rgba(240, 168, 0, .3) !important
}

.nav-sub-item.game-cs2.active {
  background: rgba(240, 168, 0, .08);
  border-color: rgba(240, 168, 0, .28)
}

.nav-sub-item.game-csgo {
  color: #f18600;
  border-color: rgba(241, 134, 0, .18)
}

.nav-sub-item.game-csgo:hover {
  background: rgba(241, 134, 0, .09) !important;
  border-color: rgba(241, 134, 0, .3) !important
}

.nav-sub-item.game-csgo.active {
  background: rgba(241, 134, 0, .08);
  border-color: rgba(241, 134, 0, .28)
}

.nav-sub-item.game-css {
  color: #a07be0;
  border-color: rgba(160, 123, 224, .18)
}

.nav-sub-item.game-css:hover {
  background: rgba(160, 123, 224, .09) !important;
  border-color: rgba(160, 123, 224, .3) !important
}

.nav-sub-item.game-css.active {
  background: rgba(160, 123, 224, .08);
  border-color: rgba(160, 123, 224, .28)
}

.nav-sub-item.game-cs16 {
  color: #4da6ff;
  border-color: rgba(77, 166, 255, .18)
}

.nav-sub-item.game-cs16:hover {
  background: rgba(77, 166, 255, .09) !important;
  border-color: rgba(77, 166, 255, .3) !important
}

.nav-sub-item.game-cs16.active {
  background: rgba(77, 166, 255, .08);
  border-color: rgba(77, 166, 255, .28)
}


.nav-sub-item.game-cs2,
.nav-sub-item.game-csgo,
.nav-sub-item.game-css,
.nav-sub-item.game-cs16 {
  background-image: none !important
}

.nav-sub-item.game-cs2::before,
.nav-sub-item.game-csgo::before,
.nav-sub-item.game-css::before,
.nav-sub-item.game-cs16::before {
  background-image: none !important;
  content: '' !important;
  display: block !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  background: currentColor !important;
  opacity: .7 !important
}

.nav-sub-item img {
  display: none !important
}


.nav-sub-item.game-cs2 {
  color: #f0a800;
  border-color: rgba(240, 168, 0, .18)
}

.nav-sub-item.game-cs2:hover {
  background: rgba(240, 168, 0, .09) !important;
  border-color: rgba(240, 168, 0, .3) !important
}

.nav-sub-item.game-cs2.active {
  background: rgba(240, 168, 0, .08);
  border-color: rgba(240, 168, 0, .28)
}

/* duplicate removed */

.nav-sub-item.game-css {
  color: #a07be0;
  border-color: rgba(160, 123, 224, .18)
}

.nav-sub-item.game-css:hover {
  background: rgba(160, 123, 224, .09) !important;
  border-color: rgba(160, 123, 224, .3) !important
}

.nav-sub-item.game-css.active {
  background: rgba(160, 123, 224, .08);
  border-color: rgba(160, 123, 224, .28)
}

.nav-sub-item.game-cs16 {
  color: #4da6ff;
  border-color: rgba(77, 166, 255, .18)
}

.nav-sub-item.game-cs16:hover {
  background: rgba(77, 166, 255, .09) !important;
  border-color: rgba(77, 166, 255, .3) !important
}

.nav-sub-item.game-cs16.active {
  background: rgba(77, 166, 255, .08);
  border-color: rgba(77, 166, 255, .28)
}

/* Game icon images in sidebar sub-items */
.nav-sub-item img.sb-game-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
  display: block !important
}

.nav-sub-item:has(.sb-game-icon)::before {
  display: none !important
}

.nav-sub-item.game-inne {
  color: #66bb6a;
  border-color: rgba(102, 187, 106, .18)
}

.nav-sub-item.game-inne:hover {
  background: rgba(102, 187, 106, .09) !important;
  border-color: rgba(102, 187, 106, .3) !important
}

.nav-sub-item.game-inne.active {
  background: rgba(102, 187, 106, .08);
  border-color: rgba(102, 187, 106, .28)
}

/* PREMIUM ACTION BUTTONS & GLOW BAR */
.srv-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.srv-btn-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(200, 215, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.srv-btn-copy:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.srv-btn-copy .material-symbols-outlined {
  font-size: 16px;
}





.srv-connect .material-symbols-outlined {
  font-size: 20px;
}

.srv-barwrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.4);
}

.srv-barbg {
  width: 100%;
  height: 100%;
}

.srv-bar {
  height: 100%;
  width: 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(90deg, #f18600, #ffba50);
  box-shadow: 0 0 10px rgba(241, 134, 0, 0.4);
}

.gcs2 .srv-bar {
  background: linear-gradient(90deg, #f0a800, #ffc060) !important;
  box-shadow: 0 0 10px rgba(240, 168, 0, 0.4);
}

.gcsgo .srv-bar {
  background: linear-gradient(90deg, #f18600, #ffba50) !important;
  box-shadow: 0 0 10px rgba(241, 134, 0, 0.4);
}

#svModalIp {
  cursor: pointer !important;
  text-decoration: none !important;
  color: #00d2ff !important;
  background: rgba(0, 150, 255, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 150, 255, 0.3);
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
}

#svModalIp:hover {
  background: rgba(0, 150, 255, 0.3);
  border-color: #00d2ff;
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 150, 255, 0.3);
}

#svModalIp:active {
  transform: scale(0.95);
}








/* PREMIIUM DEMO ITEM CARDS */










.demo-item:hover
/* PREMIUM MAP & HOUR FILTER PILLS */






/* ========================================= */
/* RADICAL REDESIGN - DEMO CARDS & TABS      */
/* ========================================= */



.demo-daytabs::-webkit-scrollbar {
  height: 4px;
}

.demo-daytabs::-webkit-scrollbar-thumb {
  background: rgba(0, 150, 255, 0.4);
  border-radius: 2px;
}










/* MAP & HOUR FILTERS */

















/* DEMO CARDS (ITEMS) */








.demo-item:hover::after {
  left: 200%;
}



.demo-item:hover .demo-item:hover .demo-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}



.demo-copy:hover {
  background: rgba(0, 120, 255, 0.3);
  color: #fff;
  border-color: #00d2ff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 150, 255, 0.4);
}



.demo-dl:hover {
  background: linear-gradient(135deg, #00c853 0%, #00e676 100%);
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 200, 100, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.4);
}

/* ========================================= */
/* LAYOUT FIXES FOR DEMOS MODAL              */
/* ========================================= */











/* Let the filter area wrap but restrict its max height if there are too many items */


.demo-filters::-webkit-scrollbar {
  width: 6px;
}

.demo-filters::-webkit-scrollbar-thumb {
  background: rgba(0, 150, 255, 0.4);
  border-radius: 3px;
}



.filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}







.filter-clear {
  padding: 6px 14px;
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid rgba(255, 60, 60, 0.4);
  border-radius: 8px;
  color: #ff6060;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s;
}

.filter-clear:hover {
  background: rgba(255, 60, 60, 0.3);
  color: #fff;
  border-color: #ff8080;
}

/* PREMIUM SERVER CARDS (Glassmorphism) */
.srv-card {
  background: rgba(18, 24, 34, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Delikatnie jaśniejsza ramka dla szkła */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 220px;
  z-index: 1;
  cursor: pointer;
}

.srv-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: conic-gradient(from var(--angle), #0080ff, #0040cc, #0066ff, #00aaff, #0080ff);
  z-index: 0;
  padding: 2px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .05;
  /* Subtelniejsza obracająca się linia, by uwydatnić szkło */
  transition: opacity .3s;
  pointer-events: none;
  animation: rotateBorder 4s linear infinite;
}

.srv-card:hover {
  transform: translateY(-6px) scale(1.02);
  /* Lekkie uniesienie na hover */
  z-index: 20;
}

.srv-card:hover::before {
  opacity: .2;
}

.srv-head {
  padding: 16px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.3);
}

.srv-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.srv-body {
  padding: 16px 18px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 115px;
  gap: 6px;
  background: radial-gradient(circle at 20% 80%, rgba(0, 150, 255, 0.08) 0%, transparent 80%);
}

.srv-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.srv-pl-big {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyan);
  text-align: left;
  width: auto;
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.srv-card:hover .srv-pl-big {
  transform: scale(1.15);
  text-shadow: 0 0 35px rgba(0, 210, 255, 0.7);
}

/* BUTTONS IN BODY */
.srv-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
}

.srv-btn-copy {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
}

.srv-btn-copy:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.05);
}

.srv-btn-conn {
  width: 58px;
  height: 38px;
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.25);
  color: #00d2ff;
}

.srv-btn-conn:hover {
  background: rgba(0, 150, 255, 0.2);
  border-color: rgba(0, 150, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
  transform: scale(1.05);
}

.srv-btn .material-symbols-outlined {
  font-size: 18px;
}

.srv-btn-conn .material-symbols-outlined {
  font-size: 22px;
}

.srv-foot {
  display: none;
}

.srv-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #0084ff;
  /* Niebieska ikona */
}

.srv-stat span[id^="pl_big_"] {
  color: #00dc64 !important;
  /* Zielony licznik */
  font-size: 0.95rem;
}

.srv-pl-ic {
  font-size: 14px;
  color: rgba(0, 210, 255, 0.5);
}

.srv-stat-v {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(180, 200, 230, 0.6);
}

.srv-map-info {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
  color: #0084ff;
  /* Niebieska ikona */
}

.srv-map-info span[id^="map_"] {
  color: #fff !important;
  /* Biała mapa */
  font-size: 0.78rem;
  opacity: 0.85;
}

.srv-map-ic {
  font-size: 14px;
  color: rgba(0, 210, 255, 0.5);
  flex-shrink: 0;
}

.srv-map-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(180, 200, 230, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.srv-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.srv-connect {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 120, 255, 0.15);
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 8px;
  padding: 8px 16px;
  color: #00d2ff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.srv-connect:hover {
  background: rgba(0, 150, 255, 0.3);
  border-color: #00d2ff;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 150, 255, 0.3);
}

.srv-btn-join {
  width: auto !important;
  padding: 0 20px !important;
  background: rgba(0, 210, 255, 0.1) !important;
  border: 1px solid rgba(0, 210, 255, 0.3) !important;
  color: #00d2ff !important;
}

.srv-btn-join:hover {
  background: rgba(0, 210, 255, 0.2) !important;
  border-color: #00d2ff !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.srv-btn-join .srv-btn-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* ========================================= */
/* REFINED RADICAL REDESIGN - DEMO MODAL     */
/* ========================================= */

.demo-daytabs {
  padding: 16px 20px 8px;
  display: flex;
  justify-content: center;
  /* Center the date tabs */
  gap: 12px;
  overflow-x: auto;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.demo-daytabs::-webkit-scrollbar {
  height: 4px;
}

.demo-daytabs::-webkit-scrollbar-thumb {
  background: rgba(0, 150, 255, 0.3);
  border-radius: 2px;
}

.demo-daytab {
  padding: 10px 20px;
  background: rgba(15, 20, 35, 0.6);
  border: 1px solid rgba(0, 150, 255, 0.2);
  border-radius: 12px 12px 0 0;
  color: rgba(180, 200, 240, 0.6);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.5);
}

.demo-daytab:hover:not(.active) {
  background: rgba(0, 150, 255, 0.1);
  border-color: rgba(0, 150, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
}

.demo-daytab.active {
  background: linear-gradient(180deg, rgba(0, 120, 255, 0.25) 0%, rgba(0, 60, 180, 0.1) 100%);
  border-color: #00d2ff;
  border-bottom: 2px solid #00d2ff;
  color: #fff !important;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.8);
  box-shadow: 0 -5px 15px rgba(0, 150, 255, 0.2), inset 0 2px 10px rgba(0, 150, 255, 0.2);
  transform: translateY(-4px);
}

.demo-daytab.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #00d2ff;
  box-shadow: 0 0 15px #00d2ff;
}

/* FILTERS SECTION */
.demo-filters {
  padding: 20px 24px;
  background: rgba(4, 7, 14, 0.85);
  border-bottom: 1px solid rgba(0, 150, 255, 0.2);
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-shrink: 0;
  max-height: 200px;
  /* Limit height to prevent list pushing */
  overflow-y: auto;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.5);
}

.demo-filters::-webkit-scrollbar {
  width: 5px;
}

.demo-filters::-webkit-scrollbar-thumb {
  background: rgba(0, 150, 255, 0.3);
  border-radius: 3px;
}

.filter-lbl {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: rgba(0, 150, 255, 0.9);
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(0, 150, 255, 0.3);
}

.fpill {
  padding: 6px 14px;
  background: rgba(0, 150, 255, 0.05);
  border: 1px solid rgba(0, 150, 255, 0.15);
  border-radius: 8px;
  color: rgba(180, 200, 240, 0.75);
  font-size: 0.85rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.fpill:hover {
  background: rgba(0, 150, 255, 0.15);
  border-color: #00bcff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 150, 255, 0.2);
}

.fpill.active {
  background: linear-gradient(135deg, #0080ff 0%, #00d2ff 100%) !important;
  border-color: #fff !important;
  color: #fff !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 210, 255, 0.5);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* LIST AND ITEMS */
.demo-list {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
}

.demo-list::-webkit-scrollbar {
  width: 6px;
}

.demo-list::-webkit-scrollbar-thumb {
  background: rgba(0, 150, 255, 0.4);
  border-radius: 3px;
}

.demo-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(20, 30, 50, 0.8) 0%, rgba(10, 15, 25, 0.9) 100%);
  border: 1px solid rgba(0, 150, 255, 0.1);
  border-left: 4px solid #0080ff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.demo-item:hover {
  background: linear-gradient(90deg, rgba(30, 45, 75, 0.9) 0%, rgba(15, 20, 35, 0.95) 100%);
  border-color: rgba(0, 210, 255, 0.3);
  border-left-width: 6px;
  transform: translateX(8px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 150, 255, 0.15);
}

.demo-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  /* Crucial for visibility/interaction */
}

.demo-item:hover::after {
  animation: shineWipe 0.6s forwards;
}

@keyframes shineWipe {
  to {
    left: 200%;
  }
}

.demo-item-icon {
  font-size: 26px;
  color: #00d2ff;
  background: rgba(0, 150, 255, 0.1);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 150, 255, 0.2);
  transition: all 0.3s;
}

.demo-item:hover .demo-item-icon {
  color: #fff;
  background: #00d2ff;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
  transform: rotate(5deg) scale(1.1);
}

.demo-item-info {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  /* Visibility fix */
}

.demo-item-map {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff !important;
  /* Force high contrast */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.demo-item-dt {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(180, 210, 255, 0.9) !important;
  /* Force high contrast */
  margin-top: 2px;
}

.demo-item-sz {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00e676;
  background: rgba(0, 230, 118, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.demo-copy,
.demo-dl {
  padding: 10px 18px;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.demo-copy {
  background: rgba(0, 150, 255, 0.1);
  border: 1px solid rgba(0, 150, 255, 0.25);
  color: #00d2ff;
}

.demo-copy:hover {
  background: rgba(0, 150, 255, 0.25);
  color: #fff;
  border-color: #00d2ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 150, 255, 0.3);
}

.demo-dl {
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  color: #00e676;
}

.demo-dl:hover {
  background: #00e676;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

/* ========================================= */
/* PREMIUM DESIGN - OTHER SECTION TILES      */
/* ========================================= */

.dsrv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.dsrv-tile {
  position: relative;
  background: rgba(10, 15, 25, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dsrv-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 150, 255, 0.1);
}

.dsrv-tile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  transition: opacity 0.4s;
}

.dsrv-tile:hover .dsrv-tile-bg {
  opacity: 0.25;
}

.dsrv-tile-head {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.dsrv-tile-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
  flex: 1;
}

.dsrv-tile-badge {
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dsrv-tile-body {
  padding: 20px;
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dsrv-tile-pl {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.dsrv-tile-plnum {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.dsrv-tile-plmax {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.dsrv-tile-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

.dsrv-tile-barfill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.dsrv-tile-ip {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.dsrv-tile-foot {
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.dsrv-tile-demos {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.dsrv-tile-foot a {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.2s;
}

.dsrv-tile-foot a:hover {
  filter: brightness(1.5);
  transform: translateX(3px);
}

.dsrv-tile-head .material-symbols-outlined,
.dsrv-tile-head svg,
.dsrv-tile-head img {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* VARIANT: MINECRAFT */
.dsrv-mc {
  border-color: rgba(74, 190, 90, 0.15) !important;
}

.dsrv-mc .dsrv-tile-bg {
  background: linear-gradient(135deg, #1d4a20 0%, #060e08 100%);
}

.dsrv-mc .dsrv-tile-plnum {
  color: #4abe5a;
  text-shadow: 0 0 15px rgba(74, 190, 90, 0.3);
}

.dsrv-mc .dsrv-tile-barfill {
  background: linear-gradient(90deg, #4abe5a, #2d8c3a);
}

.dsrv-mc .dsrv-tile-badge {
  background: rgba(74, 190, 90, 0.1);
  border: 1px solid rgba(74, 190, 90, 0.3);
  color: #4abe5a;
}

.dsrv-mc .dsrv-tile-demos {
  color: rgba(74, 190, 90, 0.8);
}

/* VARIANT: DISCORD */
.dsrv-dc {
  border-color: rgba(88, 101, 242, 0.15) !important;
}

.dsrv-dc .dsrv-tile-bg {
  background: linear-gradient(135deg, #5865f2 0%, #0d0f3a 100%);
}

.dsrv-dc .dsrv-tile-plnum {
  color: #8b98ff;
  text-shadow: 0 0 15px rgba(88, 101, 242, 0.3);
}

.dsrv-dc .dsrv-tile-barfill {
  background: linear-gradient(90deg, #5865f2, #8b98ff);
}

.dsrv-dc .dsrv-tile-badge {
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: #8b98ff;
}

.dsrv-dc .dsrv-tile-demos {
  color: rgba(139, 152, 255, 0.8);
}

/* VARIANT: TEAMSPEAK */
.dsrv-ts {
  border-color: rgba(26, 140, 255, 0.15) !important;
}

.dsrv-ts .dsrv-tile-bg {
  background: linear-gradient(135deg, #1a4a8c 0%, #050d1a 100%);
}

.dsrv-ts .dsrv-tile-plnum {
  color: #4a90d9;
  text-shadow: 0 0 15px rgba(26, 140, 255, 0.3);
}

.dsrv-ts .dsrv-tile-barfill {
  background: linear-gradient(90deg, #1a8cff, #4a90d9);
}

.dsrv-ts .dsrv-tile-badge {
  background: rgba(26, 140, 255, 0.1);
  border: 1px solid rgba(26, 140, 255, 0.3);
  color: #4a90d9;
}

.dsrv-ts .dsrv-tile-demos {
  color: rgba(26, 140, 255, 0.8);
}

.srv-btns-row {
  margin-top: auto;
  display: flex !important;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

.srv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2a2a2a;
  flex-shrink: 0;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.4);
  margin-top: 2px;
}

.srv-dot.online {
  background: #00dc64;
  box-shadow: 0 0 10px #00dc64;
  animation: srv-blink 2.5s ease-in-out infinite;
}

.srv-dot.offline {
  background: #ff4040;
  box-shadow: 0 0 8px rgba(255, 60, 60, 0.6);
}

@keyframes srv-blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.9);
  }
}


/* MAP NAME OVERFLOW & FLEX FIXES */
.srv-map-val {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  min-width: 0 !important;
}

.srv-stat-val {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  min-width: 0 !important;
}

.srv-bottom-info,
.srv-stat,
.srv-map-info {
  min-width: 0 !important;
}

/* LIVE SYNC STATUS ANIMATIONS (SWR / SKELETON LOAD) */
@keyframes fgDotLoading {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 204, 0, 0);
    opacity: 0.5;
  }
}

@keyframes fgDotRetrying {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.5);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 102, 0, 0);
    opacity: 0.5;
  }
}

.srv-dot.loading {
  background: #ffcc00 !important;
  box-shadow: 0 0 8px #ffcc00 !important;
  animation: fgDotLoading 1.5s infinite !important;
}

.srv-dot.retrying {
  background: #ff6600 !important;
  box-shadow: 0 0 8px #ff6600 !important;
  animation: fgDotRetrying 1.5s infinite !important;
}

@keyframes fgTextLoading {

  0%,
  100% {
    opacity: 0.5;
    color: rgba(255, 204, 0, 0.7);
  }

  50% {
    opacity: 1;
    color: #ffcc00;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
  }
}

@keyframes fgTextRetrying {

  0%,
  100% {
    opacity: 0.6;
    color: rgba(255, 102, 0, 0.8);
  }

  50% {
    opacity: 1;
    color: #ff6600;
    text-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
  }
}

.srv-stat-val.is-loading {
  animation: fgTextLoading 1.5s infinite;
  font-size: 0.85rem !important;
  /* downscale for long word "ODPYTYWANIE..." */
  letter-spacing: 0.05em;
}

.srv-stat-val.is-retrying {
  animation: fgTextRetrying 1.5s infinite;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em;
}
/* Constrain Header Logos Globally */
.srv-cat-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdr-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
    justify-content: space-between;
}

.hdr-left {
    margin: 0;
    padding: 0;
    border: none;
}

.srv-cat-hdr img, .cat-head img, .blh-image, .faq-head-icon img, .v2-tab-btn img, .rank-tab img, button[data-target="discord"] img {
    height: 48px !important;
    width: auto !important;
    display: block !important;
    max-width: 150px !important;
    object-fit: contain !important;
}

/* Specific constrained icons */
.rank-tab img, button[data-target="discord"] img {
    height: 18px !important;
}

.footer-logo img {
    height: 32px !important;
    width: auto !important;
}
