: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-sklep .material-symbols-outlined {
  color: #00eea8 !important;
  opacity: 1 !important;
}

.nav-item.nav-sklep:hover {
  background: rgba(0, 238, 168, 0.1) !important;
  color: #fff !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: 0 6px
}

.nav-sub.open {
  max-height: 220px
}

.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: flex;
  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 {
  padding: 26px 26px 20px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.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
}

.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: .87rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(150, 180, 220, .55);
  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: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.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
}

.badge-cs2 {
  background: rgba(241, 134, 0, .12);
  border: 1px solid rgba(241, 134, 0, .3);
  color: #f18600
}

.badge-csgo {
  background: rgba(0, 180, 100, .1);
  border: 1px solid rgba(0, 180, 100, .25);
  color: #00c46e
}

.badge-css {
  background: rgba(120, 100, 200, .1);
  border: 1px solid rgba(120, 100, 200, .25);
  color: #a07be0
}

.badge-cs16 {
  background: rgba(0, 120, 255, .12);
  border: 1px solid rgba(0, 120, 255, .3);
  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: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(100, 140, 200, .4)
}

.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(285px, 1fr));
  gap: 14px
}









.srv-mapbg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .07;
  transition: opacity .3s;
  z-index: 0;
  pointer-events: none
}

.srv-card:hover .srv-mapbg {
  opacity: .14
}

/* 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-generic {
  background-image: linear-gradient(135deg, #203060 0%, #101830 40%, #040810 100%)
}

/* card inner */


.srv-gbadge {
  font-family: 'Orbitron', monospace;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0
}

.gcs2 .srv-gbadge {
  background: rgba(241, 134, 0, .15);
  border: 1px solid rgba(241, 134, 0, .3);
  color: #f18600
}

.gcsgo .srv-gbadge {
  background: rgba(0, 180, 100, .1);
  border: 1px solid rgba(0, 180, 100, .25);
  color: #00c46e
}

.gcss .srv-gbadge {
  background: rgba(120, 100, 200, .1);
  border: 1px solid rgba(120, 100, 200, .25);
  color: #a07be0
}

.gcs16 .srv-gbadge {
  background: rgba(0, 120, 255, .12);
  border: 1px solid rgba(0, 120, 255, .3);
  color: #4da6ff
}



.srv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2a2a2a;
  flex-shrink: 0;
  transition: background .3s, box-shadow .3s
}

.srv-dot.online {
  background: #00dc64;
  box-shadow: 0 0 9px #00dc64;
  animation: blink 2.5s ease-in-out infinite
}

.srv-dot.offline {
  background: #ff4040;
  box-shadow: 0 0 6px rgba(255, 60, 60, .4)
}



.srv-statsrow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.srv-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(120, 150, 200, .45)
}

.srv-stat .material-symbols-outlined {
  font-size: 15px;
  color: rgba(0, 150, 255, .38)
}

.srv-stat-v {
  color: rgba(200, 225, 255, .75)
}

.srv-barwrap {
  margin-top: 8px
}

.srv-barbg {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .05);
  border-radius: 2px;
  overflow: hidden
}

.srv-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  width: 0;
  transition: width .6s cubic-bezier(.22, 1, .36, 1)
}

.srv-bartxt {
  font-family: 'Rajdhani', sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(100, 140, 200, .35);
  margin-top: 3px
}



.srv-iplbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(100, 130, 180, .3);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}





.srv-connect .material-symbols-outlined {
  font-size: 16px
}

/* DEMOS PAGE */
.dtabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap
}

.dtabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.dtab-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 10px;
  background: rgba(10, 14, 26, .7);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 9px;
  color: rgba(130, 155, 195, .5);
  font-family: 'Rajdhani', sans-serif;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .22s;
  position: relative;
  overflow: hidden
}

.dtab-btn .dtab-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 5px;
  opacity: .55;
  transition: opacity .22s, transform .22s;
  flex-shrink: 0
}

.dtab-btn:hover {
  background: rgba(20, 30, 50, .8);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(200, 220, 255, .7)
}

.dtab-btn:hover .dtab-logo {
  opacity: .85;
  transform: scale(1.06)
}

/* per-game active colors */
.dtab-btn.active.gcs2 {
  background: rgba(240, 168, 0, .1);
  border-color: rgba(240, 168, 0, .45);
  color: #f0a800;
  box-shadow: 0 4px 18px rgba(240, 168, 0, .12)
}

.dtab-btn.active.gcs2 .dtab-logo {
  opacity: 1
}

.dtab-btn.active.gcsgo {
  background: rgba(168, 200, 122, .1);
  border-color: rgba(168, 200, 122, .4);
  color: #a8c87a;
  box-shadow: 0 4px 18px rgba(168, 200, 122, .1)
}

.dtab-btn.active.gcsgo .dtab-logo {
  opacity: 1
}

.dtab-btn.active.gcss {
  background: rgba(79, 195, 247, .1);
  border-color: rgba(79, 195, 247, .4);
  color: #4fc3f7;
  box-shadow: 0 4px 18px rgba(79, 195, 247, .1)
}

.dtab-btn.active.gcss .dtab-logo {
  opacity: 1
}

.dtab-btn.active.gcs16 {
  background: rgba(129, 199, 132, .1);
  border-color: rgba(129, 199, 132, .4);
  color: #81c784;
  box-shadow: 0 4px 18px rgba(129, 199, 132, .1)
}

.dtab-btn.active.gcs16 .dtab-logo {
  opacity: 1
}

/* hover per-game */
.dtab-btn.gcs2:hover {
  border-color: rgba(240, 168, 0, .25);
  color: rgba(240, 168, 0, .75)
}

.dtab-btn.gcsgo:hover {
  border-color: rgba(168, 200, 122, .22);
  color: rgba(168, 200, 122, .75)
}

.dtab-btn.gcss:hover {
  border-color: rgba(79, 195, 247, .22);
  color: rgba(79, 195, 247, .75)
}

.dtab-btn.gcs16:hover {
  border-color: rgba(129, 199, 132, .22);
  color: rgba(129, 199, 132, .75)
}

.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: .06;
  z-index: 0;
  pointer-events: none;
  transition: opacity .3s
}

.dsrv-tile:hover .dsrv-tile-bg {
  opacity: .13
}

.dsrv-tile-head {
  padding: 12px 14px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.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: .91rem;
  font-weight: 700;
  color: rgba(210, 225, 255, .88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.dsrv-tile-badge {
  font-family: 'Orbitron', monospace;
  font-size: .61rem;
  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: 1
}

.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: .73rem;
  color: rgba(100, 130, 180, .3);
  letter-spacing: .04em
}

.dsrv-tile-foot {
  padding: 8px 14px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1
}

.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-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-brand {
  display: block
}

.footer-logo-name {
  font-family: 'Orbitron', monospace;
  font-size: .87rem;
  font-weight: 900;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 3px
}

.footer-logo-name span {
  color: var(--cyan)
}

.footer-copy {
  font-size: .73rem;
  color: rgba(255, 255, 255, .16);
  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: .71rem;
  color: rgba(100, 130, 180, .28);
  margin-top: 1px
}

.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
}

.news-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px 0 40px
}

.news-header {
  text-align: center;
  margin-bottom: 28px
}

.news-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
}

.news-head-icon .material-symbols-outlined {
  font-size: 28px;
  color: rgba(0, 180, 255, .6)
}

.news-head-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff
}

.news-head-title span {
  color: var(--cyan)
}

.news-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
}

.news-channels {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  margin-top: 10px;
}

.news-ch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  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: 'Rajdhani', sans-serif;
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .22s
}

.news-ch-btn:hover,
.news-ch-btn.active {
  background: rgba(0, 100, 255, .12);
  border-color: rgba(0, 150, 255, .3);
  color: var(--cyan)
}

.news-ch-btn .material-symbols-outlined {
  font-size: 17px
}

.news-feed {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.news-empty {
  text-align: center;
  padding: 50px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem;
  color: rgba(100, 130, 180, .35);
  letter-spacing: .1em
}

.news-empty .material-symbols-outlined {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
}

.news-card {
  background: rgba(6, 10, 22, .88);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
  overflow: hidden;
  transition: all .22s;
  animation: fadeUp .4s cubic-bezier(.22, 1, .36, 1) both;
  cursor: pointer;
}

.news-card-body {
  max-height: 0;
  opacity: 0;
  padding: 0 16px 0 62px;
  font-size: .93rem;
  color: rgba(140, 165, 210, .58);
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.news-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 62px;
  border-top: 1px solid transparent;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.news-card.expanded .news-card-body {
  max-height: 2000px;
  opacity: 1;
  padding: 0 16px 12px 62px;
  margin-top: 8px;
}

.news-card.expanded .news-card-footer {
  max-height: 100px;
  opacity: 1;
  padding: 8px 16px 12px 62px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  margin-top: 2px;
}

.news-card.expanded {
  border-color: rgba(0, 120, 255, .3);
  background: rgba(8, 14, 30, .95);
}

.news-card:hover {
  border-color: rgba(0, 120, 255, .22);
  box-shadow: 0 4px 24px rgba(0, 60, 200, .12)
}

.news-card-img {
  width: 100%;
  height: 110px;
  overflow: hidden
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75
}

.news-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 8px
}

.news-card-avatar {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.news-card-avatar .material-symbols-outlined {
  font-size: 18px
}

.news-card-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.news-card-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 150, 255, .4);
  transition: transform .3s ease, color .3s ease;
}

.news-card.expanded .news-card-toggle-icon {
  transform: rotate(180deg);
  color: var(--cyan);
}

.news-card-row1 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
  flex-wrap: wrap
}

.news-card-author {
  font-family: 'Rajdhani', sans-serif;
  font-size: .91rem;
  font-weight: 700;
  color: rgba(200, 220, 255, .75)
}

.news-card-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid currentColor
}

.news-card-time {
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  color: rgba(100, 130, 180, .38);
  margin-left: auto;
  white-space: nowrap;
  padding-top: 1px
}

.news-card-title {
  padding: 0 16px 6px 62px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(220, 235, 255, .9);
  letter-spacing: .02em;
  line-height: 1.35
}

.news-card-body {
  padding: 0 16px 12px 62px;
  font-size: .93rem;
  color: rgba(140, 165, 210, .58);
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word
}

.news-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 12px 62px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  margin-top: 2px
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  transition: all .18s;
  border: 1px solid rgba(0, 150, 255, .22);
  padding: 4px 11px;
  border-radius: 6px;
  background: rgba(0, 100, 255, .07)
}

.news-card-link:hover {
  background: rgba(0, 100, 255, .16);
  border-color: rgba(0, 200, 255, .4)
}

.news-card-link .material-symbols-outlined {
  font-size: 15px
}

.cat-general .news-card-avatar {
  background: rgba(150, 150, 200, .1);
  border: 1px solid rgba(150, 150, 200, .22)
}

.cat-general .news-card-avatar .material-symbols-outlined,
.cat-general .news-card-badge {
  color: rgba(170, 170, 220, .7)
}

.cat-cs2 .news-card-avatar {
  background: rgba(241, 134, 0, .1);
  border: 1px solid rgba(241, 134, 0, .22)
}

.cat-cs2 .news-card-avatar .material-symbols-outlined,
.cat-cs2 .news-card-badge {
  color: rgba(241, 154, 30, .8)
}

.cat-cs2 .news-card:hover {
  border-color: rgba(241, 134, 0, .22) !important
}

.cat-csgo .news-card-avatar {
  background: rgba(0, 200, 100, .1);
  border: 1px solid rgba(0, 200, 100, .22)
}

.cat-csgo .news-card-avatar .material-symbols-outlined,
.cat-csgo .news-card-badge {
  color: rgba(0, 210, 110, .75)
}

.cat-css .news-card-avatar {
  background: rgba(150, 100, 220, .1);
  border: 1px solid rgba(150, 100, 220, .22)
}

.cat-css .news-card-avatar .material-symbols-outlined,
.cat-css .news-card-badge {
  color: rgba(170, 120, 230, .75)
}

.cat-cs16 .news-card-avatar {
  background: rgba(80, 160, 255, .1);
  border: 1px solid rgba(80, 160, 255, .22)
}

.cat-cs16 .news-card-avatar .material-symbols-outlined,
.cat-cs16 .news-card-badge {
  color: rgba(100, 175, 255, .8)
}

.cat-serwery .news-card-avatar {
  background: rgba(0, 200, 200, .1);
  border: 1px solid rgba(0, 200, 200, .22)
}

.cat-serwery .news-card-avatar .material-symbols-outlined,
.cat-serwery .news-card-badge {
  color: rgba(0, 210, 210, .75)
}

.cat-eventy .news-card-avatar {
  background: rgba(255, 180, 0, .1);
  border: 1px solid rgba(255, 180, 0, .22)
}

.cat-eventy .news-card-avatar .material-symbols-outlined,
.cat-eventy .news-card-badge {
  color: rgba(255, 190, 20, .8)
}

.cat-aktualizacje .news-card-avatar {
  background: rgba(0, 200, 100, .1);
  border: 1px solid rgba(0, 200, 100, .22)
}

.cat-aktualizacje .news-card-avatar .material-symbols-outlined,
.cat-aktualizacje .news-card-badge {
  color: rgba(0, 215, 110, .75)
}

.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: 'Zwin';
  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: 'Rozwin';
}


/* 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 {
  display: none;
}

body.sb-col .sidebar {
  overflow: visible;
}

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-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: 7px 12px;
  white-space: nowrap;
  margin-bottom: 2px
}

.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;
}


/* Removed legacy shop button overrides to fix border issues */

.sb-logo {
  cursor: pointer
}

.sb-logo:hover {
  opacity: .82;
  transition: opacity .2s
}

.gcs2 .srv-bar {
  background: linear-gradient(90deg, #f18600, #ffb040) !important
}

.gcsgo .srv-bar {
  background: linear-gradient(90deg, #00c46e, #00ff8a) !important
}

.gcss .srv-bar {
  background: linear-gradient(90deg, #a07be0, #c09aff) !important
}

.gcs16 .srv-bar {
  background: linear-gradient(90deg, #4da6ff, #80c8ff) !important
}

/* hover glow kart w kolorze kategorii */
.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: rgb(186 106 106 / 26%)
}

.nav-sub-item.game-csgo:hover {
  background: rgb(186 106 106 / 9%) !important;
  border-color: rgb(186 106 106 / 30%) !important
}

.nav-sub-item.game-csgo.active {
  background: rgb(186 106 106 / 8%);
  border-color: rgba(143, 186, 106, .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)
}


/* 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)
}

#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 */
.srv-card {
  background: linear-gradient(135deg, rgba(16, 22, 36, 0.95) 0%, rgba(8, 12, 20, 0.98) 100%);
  border: 1px solid rgba(0, 150, 255, 0.15);
  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.6);
}

.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: .15;
  transition: opacity .3s;
  pointer-events: none;
  animation: rotateBorder 4s linear infinite;
}

.srv-card:hover {
  border-color: rgba(0, 210, 255, 0.4);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 150, 255, 0.2);
}

.srv-card:hover::before {
  opacity: .5;
}

.srv-head {
  padding: 18px 20px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  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.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.srv-body {
  padding: 16px 20px;
  position: relative;
  z-index: 1;
}

.srv-foot {
  padding: 12px 20px 16px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.1);
}

.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);
}

/* ========================================= */
/* 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 NEWS PAGE — Editorial Cyberpunk Override
══════════════════════════════════════════════════ */

/* ── FILTER TABS ────────────────────────────────── */
.news-channels {
  display: flex; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.news-ch-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px;
  background: rgba(8,12,26,0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  color: rgba(150,175,220,0.45);
  font-family: 'Orbitron', monospace;
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.28s cubic-bezier(0.22,1,0.36,1);
  backdrop-filter: blur(8px);
}
.news-ch-btn:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.14); transform: translateY(-2px); }
.news-ch-btn.active {
  background: rgba(0,229,255,0.06);
  border-color: rgba(0,229,255,0.4); color: #00e5ff;
  box-shadow: 0 0 18px rgba(0,229,255,0.12), 0 4px 12px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.news-ch-btn .material-symbols-outlined { font-size: 15px; opacity: 0.7; }
.news-ch-btn.active .material-symbols-outlined { opacity: 1; }
[data-ch="general"].active    { border-color:rgba(170,180,220,0.5); color:rgba(210,220,255,1); box-shadow:0 0 18px rgba(170,180,220,0.15); }
[data-ch="aktualizacje"].active { border-color:rgba(0,238,168,0.5); color:rgba(0,238,168,1); box-shadow:0 0 18px rgba(0,238,168,0.15); }
[data-ch="eventy"].active     { border-color:rgba(255,170,0,0.5); color:rgba(255,185,50,1); box-shadow:0 0 18px rgba(255,170,0,0.18); }
[data-ch="serwery"].active    { border-color:rgba(0,210,255,0.5); color:rgba(0,210,255,1); box-shadow:0 0 18px rgba(0,210,255,0.15); }

/* ── NEWS FEED ──────────────────────────────────── */
.news-feed { gap: 10px; }

/* ── NEWS CARD ──────────────────────────────────── */
.news-card {
  background: rgba(10,13,24,0.94);
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid var(--cat-color, rgba(0,229,255,0.5));
  border-radius: 12px; overflow: hidden; cursor: pointer;
  animation: ncFadeUp 0.4s cubic-bezier(0.22,1,0.36,1) both;
  transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
}
@keyframes ncFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.news-card:hover {
  border-color: rgba(255,255,255,0.1);
  border-left-color: var(--cat-color, rgba(0,229,255,0.9));
  box-shadow: 0 6px 28px rgba(0,0,0,0.45), -1px 0 12px -2px var(--cat-color, rgba(0,229,255,0.25));
  transform: translateX(3px);
}
.cat-general      { --cat-color: rgba(170,170,220,0.75); }
.cat-inne         { --cat-color: rgba(170,170,220,0.75); }
.cat-aktualizacje { --cat-color: rgba(0,215,110,0.85); }
.cat-eventy       { --cat-color: rgba(255,190,20,0.9); }
.cat-serwery      { --cat-color: rgba(0,210,210,0.85); }
.cat-cs2          { --cat-color: rgba(241,134,0,0.9); }
.cat-csgo         { --cat-color: rgba(0,200,100,0.85); }
.cat-css          { --cat-color: rgba(170,120,230,0.85); }
.cat-cs16         { --cat-color: rgba(100,175,255,0.9); }

/* ── TOP ROW ────────────────────────────────────── */
.news-card-top { display:flex; align-items:center; gap:12px; padding:16px 16px 10px; }
.news-card-avatar {
  width:38px; height:38px; border-radius:10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition: border-color 0.25s;
}
.news-card:hover .news-card-avatar { border-color: var(--cat-color, rgba(0,229,255,0.4)); }
.news-card-avatar .material-symbols-outlined { font-size:19px; color: var(--cat-color, rgba(0,229,255,0.8)); }
.news-card-meta { flex:1; min-width:0; }
.news-card-row1 { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:3px; }
.news-card-author { font-family:'Poppins',sans-serif; font-size:13px; font-weight:600; color:rgba(210,225,255,0.85); }
.news-card-badge {
  font-family:'Orbitron',monospace; font-size:8px; font-weight:800;
  letter-spacing:1.2px; text-transform:uppercase;
  padding:3px 8px; border-radius:5px;
  border: 1px solid var(--cat-color, rgba(0,229,255,0.5));
  color: var(--cat-color, rgba(0,229,255,1));
  background: rgba(255,255,255,0.02);
}
.news-card-time { font-family:'Rajdhani',sans-serif; font-size:11px; font-weight:600; color:rgba(120,145,190,0.35); white-space:nowrap; margin-left:auto; }
.news-card-toggle-icon {
  width:28px; height:28px; border-radius:7px;
  background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all 0.25s;
}
.news-card-toggle-icon .material-symbols-outlined { font-size:18px; color:rgba(150,175,220,0.3); transition:transform 0.32s cubic-bezier(0.22,1,0.36,1), color 0.25s; }
.news-card.expanded .news-card-toggle-icon .material-symbols-outlined { transform:rotate(180deg); color:var(--cat-color,rgba(0,229,255,0.8)); }
.news-card:hover .news-card-toggle-icon { border-color:rgba(255,255,255,0.1); }

/* ── TITLE ──────────────────────────────────────── */
.news-card-title {
  padding: 2px 16px 14px 66px;
  font-family:'Poppins',sans-serif; font-size:16px; font-weight:700;
  color:rgba(230,240,255,0.92); line-height:1.4; transition: color 0.25s;
}
.news-card:hover .news-card-title { color:#fff; }

/* ── BODY (collapse/expand) ─────────────────────── */
.news-card-body {
  max-height:0; overflow:hidden; padding:0;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
}
.news-card.expanded .news-card-body {
  max-height:70000px;
  padding: 0 16px 14px 66px;
  font-size:14px; color:rgba(145,170,215,0.62); line-height:1.8;
  white-space:pre-wrap; word-break:break-word;
}

/* ── FOOTER ─────────────────────────────────────── */
.news-card-footer { display:none; padding:10px 16px 14px 66px; border-top:1px solid rgba(255,255,255,0.04); }
.news-card.expanded .news-card-footer { display:flex; }
.news-card-link {
  display:inline-flex; align-items:center; gap:5px;
  font-family:'Rajdhani',sans-serif; font-size:11px; font-weight:700;
  letter-spacing:1px; text-transform:uppercase;
  color:var(--cat-color,rgba(0,229,255,0.9)); text-decoration:none;
  border:1px solid var(--cat-color,rgba(0,229,255,0.35));
  padding:5px 13px; border-radius:7px; background:rgba(255,255,255,0.02); transition:all 0.22s;
}
.news-card-link:hover { background:rgba(255,255,255,0.06); }
.news-card-link .material-symbols-outlined { font-size:14px; }

/* ── IMAGE ──────────────────────────────────────── */
.news-card-img { width:100%; height:130px; overflow:hidden; border-bottom:1px solid rgba(255,255,255,0.05); }
.news-card-img img { width:100%; height:100%; object-fit:cover; opacity:0.6; transition:opacity 0.3s, transform 0.5s; }
.news-card:hover .news-card-img img { opacity:0.75; transform:scale(1.03); }

/* Staggered entrance */
.news-card:nth-child(1) { animation-delay:0ms; }
.news-card:nth-child(2) { animation-delay:80ms; }
.news-card:nth-child(3) { animation-delay:160ms; }
.news-card:nth-child(4) { animation-delay:240ms; }
.news-card:nth-child(5) { animation-delay:320ms; }

/* ════════════════════════════════════════════════════
   NC2 — Nowe karty newsów (grid accordion, dowolna długość treści)
══════════════════════════════════════════════════ */

@keyframes nc2In {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Category accent colors */
.cat-general      { --cc: rgba(175,185,225,.85); --cat-rgb: 175,185,225; }
.cat-inne         { --cc: rgba(175,185,225,.85); --cat-rgb: 175,185,225; }
.cat-aktualizacje { --cc: rgba(0,238,168,.9);   --cat-rgb: 0,238,168; }
.cat-eventy       { --cc: rgba(255,170,0,.95); --cat-rgb: 255,170,0; }
.cat-serwery      { --cc: rgba(0,210,255,.9);   --cat-rgb: 0,210,255; }
.cat-cs2          { --cc: rgba(241,134,0,.95);  --cat-rgb: 241,134,0; }
.cat-csgo         { --cc: rgba(0,210,120,.9);   --cat-rgb: 0,210,120; }
.cat-css          { --cc: rgba(170,120,230,.9);  --cat-rgb: 170,120,230; }
.cat-cs16         { --cc: rgba(100,175,255,.95); --cat-rgb: 100,175,255; }

/* ── CARD SHELL ─────────────────────────────────── */
.nc2 {
  background: rgba(10,13,26,0.95);
  border: 1px solid rgba(255,255,255,0.055);
  border-left: 3px solid var(--cc, rgba(0,229,255,.6));
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  animation: nc2In 0.45s cubic-bezier(0.22,1,0.36,1) both;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}

.nc2:hover {
  border-color: rgba(255,255,255,0.1);
  border-left-color: var(--cc, rgba(0,229,255,.9));
  box-shadow: 0 6px 30px rgba(0,0,0,0.5),
              -2px 0 14px -4px var(--cc, rgba(0,229,255,.3));
  transform: translateX(3px);
}

/* ── HEADER (klikalna strefa toggle) ────────────── */
.nc2-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px 10px;
  cursor: pointer;
  user-select: none;
}

/* Avatar icon */
.nc2-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s;
}
.nc2:hover .nc2-avatar,
.nc2.open .nc2-avatar {
  background: rgba(255,255,255,0.07);
  border-color: var(--cc, rgba(0,229,255,.4));
}
.nc2-avatar .material-symbols-outlined {
  font-size: 19px;
  color: var(--cc, rgba(0,229,255,.85));
}

/* Meta block */
.nc2-meta { flex: 1; min-width: 0; }
.nc2-meta-row {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 3px;
}
.nc2-author {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(215,228,255,0.88);
}
.nc2-badge {
  font-family: 'Orbitron', monospace;
  font-size: 8px; font-weight: 800;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 5px;
  border: 1px solid var(--cc, rgba(0,229,255,.5));
  color: var(--cc, rgba(0,229,255,1));
  background: rgba(255,255,255,0.02);
}
.nc2-time {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 600;
  color: rgba(110,140,190,.35);
  letter-spacing: 0.3px;
}

/* Chevron button */
.nc2-chevron {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer;
  transition: all 0.25s;
  color: rgba(150,175,220,.35);
}
.nc2-chevron .material-symbols-outlined {
  font-size: 19px;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), color 0.25s;
}
.nc2.open .nc2-chevron {
  background: rgba(255,255,255,0.07);
  border-color: var(--cc, rgba(0,229,255,.35));
}
.nc2.open .nc2-chevron .material-symbols-outlined {
  color: var(--cc, rgba(0,229,255,.9));
}
.nc2-chevron:hover { background: rgba(255,255,255,0.07); }

/* ── TITLE (klikalna) ───────────────────────────── */
.nc2-title {
  padding: 0 16px 12px 66px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700; line-height: 1.45;
  color: rgba(230,240,255,.93);
  cursor: pointer; user-select: none;
  transition: color 0.25s;
}
.nc2:hover .nc2-title,
.nc2.open .nc2-title { color: #fff; }

/* ── ACCORDION (grid trick — dowolna długość!) ──── */
.nc2-collapser {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nc2.open .nc2-collapser {
  grid-template-rows: 1fr;
}
.nc2-inner {
  overflow: hidden;
  border-top: 0px solid transparent;
  transition: border-color 0.25s;
}
.nc2.open .nc2-inner {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── OBRAZ ──────────────────────────────────────── */
.nc2-img {
  overflow: hidden; max-height: 280px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nc2-img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.65; display: block;
  transition: opacity 0.35s, transform 0.5s;
}
.nc2:hover .nc2-img img { opacity: 0.8; transform: scale(1.02); }

/* ── TREŚĆ ──────────────────────────────────────── */
.nc2-content {
  padding: 12px 20px 18px 66px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(215, 230, 255, 0.75);
  font-family: 'Poppins', sans-serif;
  white-space: pre-wrap;
  word-break: break-word;
}
.nc2-content a {
  color: var(--cc, rgba(0,229,255,.9));
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.1);
  transition: border-color 0.2s, color 0.2s;
}
.nc2-content a:hover {
  border-bottom-color: var(--cc, rgba(0,229,255,.6));
}

/* ── FOOTER (zewnętrzny link) ───────────────────── */
.nc2-footer {
  padding: 10px 20px 16px 66px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.nc2-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.1px; text-transform: uppercase;
  text-decoration: none;
  color: var(--cc, rgba(0,229,255,.9));
  border: 1px solid var(--cc, rgba(0,229,255,.3));
  padding: 6px 14px; border-radius: 7px;
  background: rgba(255,255,255,0.02);
  transition: all 0.22s;
}
.nc2-link:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 16px -5px var(--cc, rgba(0,229,255,.5));
}
.nc2-link .material-symbols-outlined { font-size: 14px; }

/* ── EMPTY STATE ────────────────────────────────── */
.nc2-empty {
  text-align: center; padding: 50px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem; letter-spacing: .1em;
  color: rgba(100,130,180,.35);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.nc2-empty .material-symbols-outlined { font-size: 40px; opacity: .18; }

/* ── UTILS: Deep-link highlight & Outlines ─────── */
.nc2, .nc2-hdr, .nc2-chevron {
  outline: none !important;
}

.nc2-highlighted {
  animation: nc2HighlightFlash 2s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes nc2HighlightFlash {
  0%   { box-shadow: 0 0 0 0px transparent; border-color: rgba(255,255,255,0.05); }
  15%  { box-shadow: 0 0 0 2px var(--cc, #00e5ff), 0 0 20px rgba(var(--cat-rgb, 0,229,255), 0.3); border-color: var(--cc); }
  100% { box-shadow: 0 0 0 0px transparent; border-color: rgba(255,255,255,0.05); }
}
