:root {
  --blue: #007bff;
  --cyan: #00d2ff;
  --purple: #9646ff;
  --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)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  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))
  }

  50% {
    filter: drop-shadow(0 0 24px rgba(0, 210, 255, .85))
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes topFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes topProgress {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes premiumFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
  }
}

@keyframes pulseBlue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â 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;
  transition: grid-template-columns .3s cubic-bezier(.4, 0, .2, 1)
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â 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;
  transition: width .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);
  opacity: .6;
  transition: width .2s, opacity .2s
}

.sb-edge:hover {
  width: 10px;
  opacity: 1
}

.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);
  text-decoration: none
}

.sb-logo img {
  width: 120px;
  height: auto;
  mix-blend-mode: screen;
  animation: logoPulse 4s ease-in-out infinite
}

.sb-logo-name {
  font-family: 'Orbitron', monospace;
  font-size: .87rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7)
}

.sb-logo-name span {
  color: var(--cyan)
}

.sb-logo-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(0, 180, 255, .55)
}

.sb-nav {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto
}

.sb-nav::-webkit-scrollbar {
  width: 3px
}

.sb-nav::-webkit-scrollbar-thumb {
  background: rgba(0, 120, 255, .3);
  border-radius: 2px
}

.nav-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  padding: 12px 10px 5px
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
  color: rgba(180, 200, 230, .6);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .22s, color .22s, padding-left .22s;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent
}

.nav-item .material-symbols-outlined {
  font-size: 21px;
  color: rgba(0, 150, 255, .4);
  transition: color .22s, transform .28s;
  flex-shrink: 0
}

.nav-item:hover,
.nav-item.active {
  background: rgba(0, 100, 255, .1);
  color: #fff;
  padding-left: 16px;
  border-color: rgba(0, 120, 255, .18)
}

.nav-item:hover .material-symbols-outlined,
.nav-item.active .material-symbols-outlined {
  color: var(--cyan);
  transform: scale(1.1)
}

.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  border-radius: 0 2px 2px 0
}

.nav-item.nav-forum .material-symbols-outlined {
  color: #00d2ff !important;
  opacity: 1 !important;
}

.nav-item.nav-forum:hover {
  background: rgba(0, 160, 255, 0.12) !important;
  border-color: rgba(0, 180, 255, .25) !important;
}

.nav-group {
  display: flex;
  flex-direction: column
}

.nav-item-arrow {
  margin-left: auto;
  font-size: 14px;
  opacity: .3;
  transition: transform .22s;
  flex-shrink: 0
}

.nav-item.has-sub.open .nav-item-arrow {
  transform: rotate(90deg);
  opacity: .7
}

.nav-sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s cubic-bezier(.22, 1, .36, 1);
  padding-left: 10px
}

.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)
}

.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)
}

.nav-sklep {
  color: rgba(0, 220, 150, .75) !important
}

.nav-sklep .material-symbols-outlined {
  color: rgba(0, 200, 130, .65) !important
}

.nav-sklep:hover {
  background: rgba(0, 180, 120, .1) !important;
  color: #00eea8 !important
}

/* collapsed */
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,
body.sb-col .sb-logo {
  display: none !important
}

body.sb-col .nav-item {
  justify-content: center;
  padding: 11px 0;
  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;
  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 .sb-bottom {
  align-items: center;
  padding: 10px 0;
  overflow: visible
}

body.sb-col .sb-lang-current {
  background: transparent !important;
  border: none !important;
  padding: 4px !important;
  justify-content: center !important
}

body.sb-col .sb-lang-label,
body.sb-col .sb-lang-arrow {
  display: none !important
}

body.sb-col .sb-lang-dropdown {
  left: calc(100% + 8px) !important;
  right: auto !important;
  bottom: 0 !important;
  min-width: 120px
}

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;
  transition: opacity .15s, transform .15s
}

body.sb-col .nav-item:not(.has-sub):hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0)
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ă„ąĂ„â€žĂ„â€šĂ‹ÂÄ‚ËĂ˘â€šÂ¬ÄąË‡Ä‚â€šĂ‚Â¬Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ă„ąĂ„â€žĂ„â€šĂ‹ÂÄ‚ËĂ˘â€šÂ¬ÄąË‡Ä‚â€šĂ‚Â¬ FLYOUT dla has-sub (Serwery, Dema) Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ă„ąĂ„â€žĂ„â€šĂ‹ÂÄ‚ËĂ˘â€šÂ¬ÄąË‡Ä‚â€šĂ‚Â¬Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ă„ąĂ„â€žĂ„â€šĂ‹ÂÄ‚ËĂ˘â€šÂ¬ÄąË‡Ä‚â€šĂ‚Â¬ */
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
}

body.sb-col .sb-bottom {
  align-items: center;
  padding: 10px 0;
  overflow: visible
}

body.sb-col .sb-lang-current {
  background: transparent !important;
  border: none !important;
  padding: 4px !important;
  justify-content: center !important
}

body.sb-col .sb-lang-label,
body.sb-col .sb-lang-arrow {
  display: none !important
}

body.sb-col .sb-lang-dropdown {
  left: calc(100% + 8px) !important;
  right: auto !important;
  bottom: 0 !important;
  min-width: 120px
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â SIDEBAR LANG Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.sb-bottom {
  padding: 12px 10px;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.sb-lang-select {
  position: relative
}

.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)
}

.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)
}

.sb-lang-dropdown {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(4, 8, 20, .97);
  border: 1px solid rgba(0, 100, 255, .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
}

.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%
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â TOPBAR Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.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 22px;
  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-right {
  display: flex;
  align-items: center;
  gap: 10px
}

.topbar-live {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0, 200, 100, .6)
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #00e060;
  border-radius: 50%;
  box-shadow: 0 0 8px #00e060;
  animation: blink 1.8s ease-in-out infinite
}

.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
}

.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
}

.tb-user-btn:hover {
  background: rgba(0, 80, 200, .14)
}

.tb-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(0, 120, 255, .3);
  flex-shrink: 0
}

.tb-user-avatar-ph {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(0, 80, 200, .2);
  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);
  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)
}

.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
}

.tb-user.open .tb-user-btn .arr {
  transform: rotate(180deg)
}

.tb-user-drop {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  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);
  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-ph {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(0, 80, 200, .2);
  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-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid rgba(0, 120, 255, .25);
  flex-shrink: 0
}

.tb-drop-info-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: #fff
}

.tb-drop-info-role {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 80, 80, .7)
}

.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)
}

.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;
  cursor: pointer;
  transition: background .18s, color .18s;
  text-decoration: none
}

.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)
}

.tb-drop-item.danger:hover {
  background: rgba(200, 30, 30, .12);
  color: #ff6b6b
}

.tb-drop-item.danger .material-symbols-outlined {
  color: rgba(200, 60, 60, .5)
}

.tb-drop-item.admin-link {
  color: rgba(255, 170, 0, .7)
}

.tb-drop-item.admin-link .material-symbols-outlined {
  color: rgba(255, 150, 0, .5)
}

.tb-drop-sep {
  height: 1px;
  background: rgba(255, 255, 255, .05);
  margin: 5px 8px
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â MAIN Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.main-content {
  grid-area: main;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.main-inner {
  padding: 16px 20px 30px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden
}

.main-inner::-webkit-scrollbar {
  width: 5px
}

.main-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 120, 255, .2);
  border-radius: 3px
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â WELCOME Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.welcome-bar {
  background: linear-gradient(135deg, rgba(0, 40, 100, .55) 0%, rgba(0, 20, 60, .4) 100%);
  border: 1px solid rgba(0, 120, 255, .18);
  border-radius: 13px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0
}

.welcome-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 255, .55) 30%, rgba(0, 220, 255, .85) 50%, rgba(0, 180, 255, .55) 70%, transparent)
}

.wb-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 100, 255, .1);
  border: 1px solid rgba(0, 130, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.wb-icon .material-symbols-outlined {
  font-size: 24px;
  color: rgba(0, 180, 255, .7)
}

.wb-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em
}

.wb-title span {
  color: var(--cyan)
}

.wb-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0, 180, 255, .38);
  margin-top: 2px
}

.wb-actions {
  margin-left: auto;
  display: flex;
  gap: 7px;
  flex-shrink: 0
}

.wb-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .22s;
  white-space: nowrap
}

.wb-btn-primary {
  background: rgba(0, 130, 255, .15);
  border: 1px solid rgba(0, 150, 255, .28);
  color: var(--cyan)
}

.wb-btn-primary:hover {
  background: rgba(0, 150, 255, .26);
  border-color: rgba(0, 200, 255, .5)
}

.wb-btn-ghost {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(180, 200, 230, .45)
}

.wb-btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  color: rgba(200, 220, 255, .7)
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â TICKER Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.ticker-wrap {
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(0, 120, 255, .12);
  border-radius: 9px;
  padding: 0 14px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  flex-shrink: 0
}

.ticker-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0, 200, 255, .55);
  white-space: nowrap;
  border-right: 1px solid rgba(0, 120, 255, .18);
  padding-right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0
}

.ticker-label .blink-dot {
  width: 5px;
  height: 5px;
  background: #00d2ff;
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite
}

.ticker-inner {
  overflow: hidden;
  flex: 1;
  height: 100%
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
  height: 100%;
  align-items: center;
  line-height: 1
}

.ticker-item {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(180, 210, 255, .5);
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  vertical-align: middle
}

.ticker-item .ti-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â DASH GRID Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  animation: fadeUp .4s ease both
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â WIDGET BASE Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.widget {
  background: rgba(5, 9, 20, .88);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s
}

.widget-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  flex-shrink: 0
}

.widget-hdr-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s
}

.widget-hdr-icon .material-symbols-outlined {
  font-size: 16px;
  transition: color .3s
}

.widget-title {
  font-family: 'Orbitron', monospace;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  flex: 1
}

.widget-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0
}

.widget-body {
  padding: 10px 12px;
  flex: 1;
  overflow: hidden
}

.widget-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(100, 140, 200, .38);
  text-decoration: none;
  transition: color .2s, background .2s;
  flex-shrink: 0
}

.widget-link:hover {
  background: rgba(0, 80, 200, .06);
  color: rgba(0, 200, 255, .65)
}

.widget-link .material-symbols-outlined {
  font-size: 14px
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â TOP GRACZY WIDGET Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â€šÂ¬ÄąË‡Ä‚â€šĂ‚Â¬Ă„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ă„ąĂ˘â‚¬ż siatka kategorii Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.top-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 0
}

.top-cat {
  padding: 12px 14px;
  border-right: 1px solid rgb(241 0 0 / 4%);
  display: flex;
  flex-direction: column;
  gap: 6px
}

.top-cat:last-child {
  border-right: none
}

.top-cat-hdr {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  margin-bottom: 4px;
  flex-shrink: 0
}

.top-cat-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.top-cat-icon .material-symbols-outlined {
  font-size: 15px
}

.top-cat-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain
}

.top-cat-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  flex: 1;
  white-space: nowrap
}

.top-cat-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .025)
}

.top-cat-row:last-child {
  border-bottom: none
}

.top-cat-pos {
  font-family: 'Orbitron', monospace;
  font-size: 1.03rem;
  font-weight: 900;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  color: rgba(100, 140, 200, .3)
}

.top-cat-pos.p1 {
  color: #f0d820;
  text-shadow: 0 0 6px rgba(240, 200, 32, .45)
}

.top-cat-pos.p2 {
  color: rgba(200, 200, 210, .5)
}

.top-cat-pos.p3 {
  color: rgb(202 139 37 / 55%)
}

.top-cat-name {
  flex: 1;
  min-width: 0;
  font-size: .92rem;
  font-weight: 700;
  color: rgb(200 237 255 / 72%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.top-cat-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0
}

.top-cat-empty {
  font-family: 'Rajdhani', sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(100, 130, 180, .3);
  padding: 10px 0;
  text-align: center
}

/* top content layout */

.top-name {
  font-family: 'Orbitron', monospace;
  font-size: .85rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  word-break: break-word
}

.top-score {
  font-family: 'Orbitron', monospace;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  transition: color .3s
}

.top-score-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .55;
  transition: color .3s
}

.top-game-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .5;
  margin-top: 2px;
  transition: color .3s
}

.top-rest {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding-top: 2px
}

.top-rest-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .03)
}

.top-rest-row:last-child {
  border-bottom: none
}

.top-rest-rank {
  font-family: 'Orbitron', monospace;
  font-size: .73rem;
  font-weight: 900;
  width: 18px;
  flex-shrink: 0;
  text-align: right
}

.top-rest-rank.rk2 {
  color: #c0c0c0
}

.top-rest-rank.rk3 {
  color: #cd7f32
}

.top-rest-rank.rkx {
  color: rgba(100, 140, 200, .32)
}

.top-rest-name {
  flex: 1;
  min-width: 0;
  font-size: .87rem;
  font-weight: 700;
  color: rgba(200, 220, 255, .78);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.top-rest-val {
  font-family: 'Orbitron', monospace;
  font-size: .75rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: color .3s
}

.top-rest-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .04);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2px
}

.top-rest-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: background .3s
}

/* progress bar na dole widgetu */


/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â DISCORD AUTO-ROTATE Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.dc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  flex-shrink: 0
}

.dc-label-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(139, 152, 255, .55)
}

.dc-dots {
  display: flex;
  gap: 3px;
  align-items: center
}

.dc-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(139, 152, 255, .2);
  transition: background .3s, transform .3s
}

.dc-dot.active {
  background: #8b98ff;
  transform: scale(1.4)
}

.dc-progress {
  height: 2px;
  background: rgba(88, 101, 242, .12);
  border-radius: 1px;
  margin-bottom: 6px;
  overflow: hidden;
  flex-shrink: 0
}

.dc-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #5865f2, #8b98ff);
  border-radius: 1px;
  transition: width linear
}

.dc-panel {
  display: none;
  animation: dcFadeIn .3s ease
}

.dc-panel.active {
  display: block
}

@keyframes dcFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â SERWERY Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.srv-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 6px;
  background: rgba(15, 20, 35, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.srv-row:hover {
  background: rgba(0, 120, 255, 0.08);
  border-color: rgba(0, 120, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.srv-row:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.srv-row:hover:last-child {
  border-color: rgba(0, 120, 255, 0.2);
}

.srv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.srv-dot.on {
  background: #00e060;
  box-shadow: 0 0 8px #00e060;
  animation: pulse-online 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-online {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 224, 96, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(0, 224, 96, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 224, 96, 0);
  }
}

.srv-dot.off {
  background: rgba(255, 255, 255, 0.15);
}

.srv-name {
  flex: 1;
  min-width: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(220, 235, 255, 0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.3s;
}

.srv-row:hover .srv-name {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 120, 255, 0.3);
}

.srv-players {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.25);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  transition: all 0.3s;
}

.srv-players.is-online {
  color: #00dc96;
  border-color: rgba(0, 220, 150, 0.15);
  box-shadow: 0 0 10px rgba(0, 220, 150, 0.05) inset;
}

.srv-players.is-offline {
  color: rgba(100, 120, 150, 0.4);
}

.srv-tag {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
  border: 1px solid transparent;
}

.t-cs2 {
  background: rgba(240, 168, 0, 0.1);
  color: #f0a800;
  border-color: rgba(240, 168, 0, 0.25);
}

.t-csgo {
  background: rgba(255, 60, 60, 0.1);
  color: #ff4a4a;
  border-color: rgba(255, 60, 60, 0.25);
}

.t-css {
  background: rgba(145, 70, 255, 0.1);
  color: #a764ff;
  border-color: rgba(145, 70, 255, 0.25);
}

.t-cs16 {
  background: rgba(0, 200, 150, 0.1);
  color: #00c896;
  border-color: rgba(0, 200, 150, 0.25);
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â NEWSY Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.news-row {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  display: flex;
  flex-direction: column;
  gap: 3px
}

.news-row:last-child {
  border-bottom: none
}

.news-title {
  font-size: .87rem;
  font-weight: 700;
  color: rgba(200, 220, 255, .8);
  line-height: 1.3;
  cursor: pointer;
  transition: color .2s
}

.news-title:hover {
  color: #fff
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 7px
}

.news-date {
  font-family: 'Rajdhani', sans-serif;
  font-size: .71rem;
  color: rgba(100, 140, 200, .35);
  font-weight: 700
}

.news-cat {
  font-family: 'Rajdhani', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 3px
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â STATYSTYKI Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px
}

.stat-box {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 8px;
  padding: 9px 11px
}

.stat-val {
  font-family: 'Orbitron', monospace;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1
}

.stat-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(130, 160, 210, .4);
  margin-top: 2px
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â STREAMERS Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.stream-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  text-decoration: none;
  transition: opacity .2s
}

.stream-row:last-child {
  border-bottom: none
}

.stream-row:hover {
  opacity: .75
}

.stream-av {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(145, 70, 255, .12);
  border: 1px solid rgba(145, 70, 255, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden
}

.stream-av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.stream-av .material-symbols-outlined {
  font-size: 16px;
  color: rgba(145, 70, 255, .45)
}

.stream-name {
  font-size: .86rem;
  font-weight: 700;
  color: rgba(200, 220, 255, .82);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0
}

.stream-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: .71rem;
  font-weight: 700;
  color: rgba(145, 70, 255, .55)
}

.stream-live {
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255, 80, 80, .7);
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0
}

.live-dot {
  width: 5px;
  height: 5px;
  background: #f00;
  border-radius: 50%;
  box-shadow: 0 0 5px #f00;
  animation: blink 1.2s ease-in-out infinite
}

.stream-off {
  font-family: 'Rajdhani', sans-serif;
  font-size: .73rem;
  color: rgba(100, 120, 160, .32);
  flex-shrink: 0
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â STANY Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.w-load {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 22px;
  color: rgba(100, 140, 200, .32);
  font-size: .85rem
}

.w-spin {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(0, 120, 255, .14);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  flex-shrink: 0
}

.w-empty {
  text-align: center;
  padding: 22px 14px;
  color: rgba(100, 130, 180, .32);
  font-size: .83rem
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â WIDGET KOLORY Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.w-cyan .widget-hdr-icon,
.w-blue .widget-hdr-icon {
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
}

.w-cyan .widget-hdr-icon .material-symbols-outlined,
.w-blue .widget-hdr-icon .material-symbols-outlined {
  color: #00d2ff;
}

.w-purple .widget-hdr-icon {
  background: rgba(0, 180, 255, .08);
  border: 1px solid rgba(0, 180, 255, .18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.w-purple .widget-hdr-icon .material-symbols-outlined {
  color: #00b4ff;
  transition: transform 0.3s ease;
}

.w-purple:hover .widget-hdr-icon {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 180, 255, 0.2);
}

.w-purple:hover .widget-hdr-icon .material-symbols-outlined {
  transform: rotate(10deg);
}

.w-twitch .widget-hdr-icon {
  background: rgba(0, 210, 255, .08);
  border: 1px solid rgba(0, 210, 255, .18);
  transition: transform 0.3s ease;
}

.w-twitch .widget-hdr-icon .material-symbols-outlined {
  color: #00d2ff;
}

.w-twitch:hover .widget-hdr-icon {
  transform: translateY(-2px);
}

.w-green .widget-hdr-icon {
  background: rgba(0, 200, 100, .08);
  border: 1px solid rgba(0, 200, 100, .18)
}

.w-green .widget-hdr-icon .material-symbols-outlined {
  color: #00c864
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â FOOTER Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(20px);
  padding: 11px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-shrink: 0;
  z-index: 10;
  flex-wrap: wrap
}

.footer-logo-name {
  font-family: 'Orbitron', monospace;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .45)
}

.footer-logo-name span {
  color: var(--cyan)
}

.footer-copy {
  font-size: .73rem;
  color: rgba(255, 255, 255, .25);
  margin-top: 2px
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 6px
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  text-decoration: none;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), border-color .25s, box-shadow .25s;
  position: relative
}

.social-btn svg {
  width: 15px;
  height: 15px;
  position: relative;
  z-index: 1;
  transition: transform .25s
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.06)
}

.social-lbl {
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  pointer-events: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(8, 14, 30, .92);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(200, 220, 255, .7);
  opacity: 0;
  transition: opacity .18s, transform .18s;
  z-index: 100
}

.social-btn:hover .social-lbl {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

.si-twitch:hover {
  border-color: rgba(145, 70, 255, .65) !important;
  box-shadow: 0 4px 20px rgba(145, 70, 255, .5) !important
}

.si-discord:hover {
  border-color: rgba(88, 101, 242, .7) !important;
  box-shadow: 0 4px 20px rgba(88, 101, 242, .55) !important
}

.si-ts:hover {
  border-color: rgba(26, 140, 255, .65) !important;
  box-shadow: 0 4px 20px rgba(26, 140, 255, .5) !important
}

.si-tt:hover {
  border-color: rgba(105, 201, 208, .65) !important;
  box-shadow: 0 4px 20px rgba(105, 201, 208, .45) !important
}

.si-fb:hover {
  border-color: rgba(24, 119, 242, .65) !important;
  box-shadow: 0 4px 20px rgba(24, 119, 242, .5) !important
}

.si-ig:hover {
  border-color: rgba(225, 48, 108, .65) !important;
  box-shadow: 0 4px 20px rgba(225, 48, 108, .45) !important
}

/* Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â RESPONSIVE Ä‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚ÂÄ‚â€žĂ˘â‚¬ĹˇÄ‚â€ąĂ‚ÂĂ„â€šĂ‹ÂÄ‚ËĂ˘â‚¬ĹˇĂ‚Â¬Ä‚â€ąĂ‚ÂĂ„â€šĂ˘â‚¬ĹˇÄ‚â€šĂ‚Â */
@media(max-width:1100px) {
  .dash-grid {
    grid-template-columns: 1fr 1fr
  }

  .top-inner {
    grid-template-columns: 130px 1fr
  }
}

@media(max-width:800px) {
  :root {
    --sidebar-w: 60px
  }

  .sb-logo-name,
  .sb-logo-tag,
  .nav-lbl,
  .nav-item-label,
  .nav-item-arrow {
    display: none
  }

  .nav-item {
    padding: 11px;
    justify-content: center;
    gap: 0
  }

  .sb-logo {
    padding: 12px 8px
  }

  .sb-logo img {
    width: 36px
  }

  .main-inner {
    padding: 10px
  }

  .dash-grid {
    grid-template-columns: 1fr
  }

  .wb-actions,
  .ticker-wrap {
    display: none
  }

  .top-inner {
    grid-template-columns: 1fr
  }

  .top-leader-card {
    flex-direction: row;
    padding: 10px 12px;
    text-align: left;
    gap: 12px
  }
}

@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)
  }
}

.fg-banner {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  cursor: default;
  margin-bottom: 26px;
}

.fg-banner .bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0, 80, 180, .28) 0%, transparent 65%), radial-gradient(ellipse 50% 80% at 10% 80%, rgba(0, 200, 255, .08) 0%, transparent 60%), linear-gradient(135deg, #050810 0%, #080e1a 50%, #050912 100%)
}

.fg-banner .bgrid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 120, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 120, 255, .07) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: bgridShift 20s linear infinite;
  mask-image: linear-gradient(90deg, transparent 0%, black 20%, black 80%, transparent 100%)
}

.fg-banner .bscan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0, 0, 0, .06) 3px, rgba(0, 0, 0, .06) 4px);
  pointer-events: none;
  z-index: 10
}

.fg-banner .borb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none
}

.fg-banner .borb-1 {
  width: 280px;
  height: 280px;
  background: rgba(0, 100, 255, .22);
  top: -80px;
  right: 80px;
  animation: borbPulse 6s ease-in-out infinite
}

.fg-banner .borb-2 {
  width: 180px;
  height: 180px;
  background: rgba(0, 210, 255, .12);
  bottom: -60px;
  left: 120px;
  animation: borbPulse 8s ease-in-out infinite reverse
}

.fg-banner .borb-3 {
  width: 160px;
  height: 160px;
  background: rgba(80, 0, 200, .1);
  top: 20px;
  left: 40px;
  animation: borbPulse 10s ease-in-out infinite 2s
}

.fg-banner .bstripe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0, 180, 255, .6) 30%, rgba(0, 120, 255, .9) 60%, transparent);
  transform: skewX(-12deg);
  box-shadow: 0 0 20px rgba(0, 160, 255, .5);
  animation: bstripePulse 3s ease-in-out infinite
}

.fg-banner .bstripe-2 {
  left: 54%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 210, 255, .3) 40%, rgba(0, 180, 255, .5) 60%, transparent);
  animation: bstripePulse 3s ease-in-out infinite .5s;
  box-shadow: none
}

.fg-banner .bshimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .04) 50%, transparent 60%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 8
}

.fg-banner:hover .bshimmer {
  transform: translateX(200%);
  transition: transform .8s ease
}

.fg-banner .bglowbot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 120, 255, .5) 30%, rgba(0, 210, 255, .8) 50%, rgba(0, 120, 255, .5) 70%, transparent);
  box-shadow: 0 0 10px rgba(0, 160, 255, .4)
}

.fg-banner .bglowtop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .04) 30%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, .04) 70%, transparent)
}

.fg-banner .bcorner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 6
}

.fg-banner .bc-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid rgba(0, 180, 255, .45);
  border-left: 2px solid rgba(0, 180, 255, .45);
  border-radius: 4px 0 0 0
}

.fg-banner .bc-tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid rgba(0, 180, 255, .45);
  border-right: 2px solid rgba(0, 180, 255, .45);
  border-radius: 0 4px 0 0
}

.fg-banner .bc-bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid rgba(0, 180, 255, .45);
  border-left: 2px solid rgba(0, 180, 255, .45);
  border-radius: 0 0 0 4px
}

.fg-banner .bc-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgba(0, 180, 255, .45);
  border-right: 2px solid rgba(0, 180, 255, .45);
  border-radius: 0 0 4px 0
}

.fg-banner .bwave {
  position: absolute;
  bottom: 16px;
  left: 48px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  opacity: .2;
  z-index: 5
}

.fg-banner .bbar {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #00d2ff, #0060ff);
  animation: bbarAnim 1.2s ease-in-out infinite
}

.fg-banner .bbar:nth-child(1) {
  height: 40%
}

.fg-banner .bbar:nth-child(2) {
  height: 70%;
  animation-delay: .1s
}

.fg-banner .bbar:nth-child(3) {
  height: 55%;
  animation-delay: .2s
}

.fg-banner .bbar:nth-child(4) {
  height: 90%;
  animation-delay: .05s
}

.fg-banner .bbar:nth-child(5) {
  height: 60%;
  animation-delay: .15s
}

.fg-banner .bbar:nth-child(6) {
  height: 45%;
  animation-delay: .25s
}

.fg-banner .bbar:nth-child(7) {
  height: 80%;
  animation-delay: .08s
}

.fg-banner .bbar:nth-child(8) {
  height: 50%;
  animation-delay: .18s
}

.fg-banner .bbar:nth-child(9) {
  height: 65%;
  animation-delay: .12s
}

.fg-banner .bbar:nth-child(10) {
  height: 35%;
  animation-delay: .22s
}

.fg-banner .bcontent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 48px;
  z-index: 5
}

.fg-banner .bleft {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: flex-start
}

.fg-banner .btag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #00aadd;
  opacity: 0;
  animation: bFadeUp .6s .1s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .btag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00d2ff;
  box-shadow: 0 0 8px #00d2ff;
  animation: bdotBlink 2s ease-in-out infinite
}

.fg-banner .btitle {
  font-family: 'Orbitron', monospace;
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 30px rgba(0, 140, 255, .5), 0 0 60px rgba(0, 80, 255, .2);
  opacity: 0;
  animation: bFadeUp .6s .22s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .btitle span {
  color: #00d2ff;
  text-shadow: 0 0 20px rgba(0, 210, 255, .8)
}

.fg-banner .bsub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, .4);
  opacity: 0;
  animation: bFadeUp .6s .32s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .bstats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: bFadeUp .6s .42s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .bstat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .91rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(150, 180, 220, .75);
  text-transform: uppercase
}

.fg-banner .bright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
  flex-shrink: 0;
  opacity: 0;
  animation: bFadeUp .6s .5s cubic-bezier(.22, 1, .36, 1) forwards
}

.fg-banner .bright img {
  height: 120px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(0, 180, 255, .6)) drop-shadow(0 0 40px rgba(0, 100, 255, .3))
}

.fg-banner canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2
}

@media(max-width:640px) {
  .fg-banner {
    height: 150px
  }

  .fg-banner .btitle {
    font-size: 1.75rem
  }

  .fg-banner .bcontent {
    padding: 0 22px
  }

  .fg-banner .bstats {
    display: none
  }

  .fg-banner .bright img {
    height: 90px
  }
}

/* CS SOURCE HOVER UPDATE */
.game-css:hover img {
  filter: drop-shadow(0 0 5px rgba(150, 70, 255, 0.5)) !important;
}

.game-css:hover {
  background: rgba(150, 70, 255, 0.1) !important;
  color: var(--purple) !important;
  border-left-color: var(--purple) !important;
}

.dday-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  color: rgba(160, 185, 225, .6);
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  position: relative;
}

.dday-btn.active {
  background: rgba(0, 150, 255, .1);
  border-color: rgba(0, 150, 255, .3);
  color: #00d2ff;
}

.dday-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #00d2ff;
  box-shadow: 0 -2px 10px rgba(0, 210, 255, 0.8);
}

.dday-btn:hover:not(.active) {
  background: rgba(255, 255, 255, .08);
  color: rgba(200, 220, 255, .9);
}

/* PREMIIUM DEMO ITEM CARDS */
.demo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(8, 12, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, .04);
  transition: all .25s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.demo-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(0, 150, 255, 0.5);
  transition: width 0.2s, background 0.2s;
}

.demo-item:hover {
  background: rgba(12, 18, 32, 0.95);
  border-color: rgba(0, 150, 255, .25);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 150, 255, 0.1);
}

.demo-item:hover::before {
  width: 6px;
  background: #00d2ff;
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.demo-item-icon {
  font-size: 26px;
  color: rgba(0, 150, 255, .6);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.demo-item:hover .demo-item-icon {
  color: #00d2ff;
  transform: scale(1.1);
}

.demo-item-info {
  flex: 1;
  min-width: 0;
}

.demo-item-map {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(240, 245, 255, 1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.demo-item-dt {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(160, 180, 220, .8);
  margin-top: 4px;
}

.demo-item-sz {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  color: rgba(100, 130, 180, .5);
  margin-top: 2px;
}

.demo-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.demo-copy {
  padding: 8px 16px;
  background: rgba(0, 120, 255, .1);
  border: 1px solid rgba(0, 150, 255, .25);
  border-radius: 8px;
  color: #00d2ff;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}

.demo-copy:hover {
  background: rgba(0, 150, 255, .25);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 150, 255, 0.3);
}

.demo-dl {
  padding: 8px 16px;
  background: rgba(0, 200, 100, .1);
  border: 1px solid rgba(0, 220, 100, .25);
  border-radius: 8px;
  color: #00e676;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}

.demo-dl:hover {
  background: rgba(0, 220, 100, .25);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 220, 100, 0.4);
}

/* PREMIUM MAP & HOUR FILTER PILLS */
.fpill {
  padding: 6px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  color: rgba(180, 200, 230, .7);
  font-size: .85rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fpill:hover {
  background: rgba(0, 150, 255, .15);
  border-color: rgba(0, 150, 255, .4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 150, 255, 0.2);
}

.fpill.active {
  background: rgba(0, 120, 255, .8) !important;
  border-color: #00d2ff !important;
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
  font-weight: 700;
}

/* â”€â”€ CATCHY CTA â”€â”€ */
.cta-banner {
  position: relative;
  padding: 30px;
  border-radius: 16px;
  background: rgba(0, 100, 255, 0.05);
  border: 1px solid rgba(0, 150, 255, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: premiumFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(0, 150, 255, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.cta-text {
  flex: 1;
}

.cta-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.cta-title span {
  color: var(--cyan);
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.cta-sub {
  margin-top: 10px;
  font-size: 0.85rem;
  color: rgba(200, 220, 255, 0.5);
  max-width: 450px;
  line-height: 1.5;
}

.cta-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #f0a800, #ffc107);
  border-radius: 10px;
  color: #000;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(240, 168, 0, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(240, 168, 0, 0.5);
}

/* â”€â”€ TOP PODIUM â”€â”€ */
.top-podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 30px 10px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  min-height: 200px;
  max-width: 500px;
  margin: 0 auto;
}

.podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: premiumFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.podium-item:hover {
  transform: translateY(-5px);
}

.podium-item.p1 {
  order: 2;
  z-index: 10;
  transform: translateY(-15px) scale(1.1);
}

.podium-item.p1:hover {
  transform: translateY(-20px) scale(1.15);
}

.podium-item.p2 {
  order: 1;
  transform: translateY(-5px);
}

.podium-item.p3 {
  order: 3;
}

.podium-av-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  background: rgba(255, 255, 255, 0.05);
  /* Default ring */
}

.podium-item.p1 .podium-av-wrap {
  width: 100px;
  height: 100px;
  padding: 4px;
}

/* Steam Status Rings */
.podium-av-wrap.status-online {
  background: linear-gradient(135deg, #57cbff, #1b8fb2);
  box-shadow: 0 0 15px rgba(87, 203, 255, 0.4);
}

.podium-av-wrap.status-ingame {
  background: linear-gradient(135deg, #90ba3c, #608020);
  box-shadow: 0 0 15px rgba(144, 186, 60, 0.4);
}

.podium-av-wrap.status-offline {
  background: linear-gradient(135deg, #898989, #555);
}

.podium-av {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0b0f19;
  /* Separation from ring */
  background: rgba(8, 12, 22, 0.9);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: block;
}

.podium-rank {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: #111;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.podium-item.p1 .podium-rank {
  border-color: #f0a800;
  color: #f0a800;
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
}

.podium-info {
  text-align: center;
  width: 100%;
}

.podium-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
  margin-bottom: 2px;
}

.podium-val {
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.podium-stats {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: 0.85rem;
  /* Powiększone z 0.75rem */
  font-family: 'Rajdhani', sans-serif;
  opacity: 0.9;
}

.podium-stats b {
  font-size: 0.98rem;
  /* Powiększone z 0.85rem */
  color: #fff;
}

.podium-stats span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  /* Powiększone z 0.62rem */
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.podium-stats span b {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

/* â”€â”€ FORUM LINK BANNER â”€â”€ */
.forum-link-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(0, 10, 30, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 210, 255, 0.15);
  border-left: 5px solid #00d2ff;
  border-radius: 16px;
  text-decoration: none !important;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.05);
  animation: flFloat 4s ease-in-out infinite;
}

@keyframes flFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.forum-link-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: none;
  animation: flShimmer 3s infinite;
}

@keyframes flShimmer {
  0% {
    left: -100%;
  }

  30% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.forum-link-banner:hover {
  background: rgba(0, 20, 50, 0.6);
  border-color: rgba(0, 210, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 210, 255, 0.2);
}

.forum-link-banner:hover::before {
  transform: translateX(100%);
}

.fl-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(0, 120, 255, 0.1));
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d2ff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
  transition: all 0.4s ease;
}

.forum-link-banner:hover .fl-icon {
  transform: rotate(-5deg) scale(1.1);
  background: rgba(0, 210, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
}

.fl-icon .material-symbols-outlined {
  font-size: 24px;
}

.fl-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fl-title {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.fl-sub {
  color: rgba(200, 225, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 500;
}

.fl-arrow {
  color: #00d2ff;
  opacity: 0.5;
  transition: transform 0.3s;
}

.forum-link-banner:hover .fl-arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* â”€â”€ TABBED RANKING UI â”€â”€ */
.rank-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.rank-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 18px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.rank-tab-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.02);
}

.rank-tab-btn.active {
  color: var(--accent, #f0a800);
  background: rgba(255, 255, 255, 0.04);
}

.rank-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent, #f0a800);
  box-shadow: 0 0 10px var(--accent);
}

.rank-tab-btn .rank-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) brightness(0.7);
  transition: all 0.3s;
}

.rank-tab-btn.active .rank-tab-icon,
.rank-tab-btn:hover .rank-tab-icon {
  filter: none;
}

.rank-tab-lbl {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.rank-active-pane {
  animation: premiumFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  padding-bottom: 20px;
}

.rank-list-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.top-cat-row {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  gap: 15px;
  transition: transform 0.2s;
}

.top-cat-row:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.top-cat-pos {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  min-width: 30px;
}

.top-cat-name {
  flex: 1;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.top-cat-val {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* â”€â”€ FEATURED NEWS â”€â”€ */
.news-featured-card {
  position: relative;
  padding: 18px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(150, 70, 255, 0.1), rgba(100, 50, 200, 0.05));
  border: 1px solid rgba(150, 70, 255, 0.15);
  margin: 12px 16px;
  overflow: hidden;
  animation: premiumFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: all .22s ease;
}

.news-featured-card:hover {
  background: linear-gradient(135deg, rgba(150, 70, 255, 0.18), rgba(100, 50, 200, 0.1));
  border-color: rgba(150, 70, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(150, 70, 255, 0.15);
}

.news-feat-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.news-feat-cat {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(150, 70, 255, 0.1);
  color: #c060ff;
}

.news-feat-date {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
}

.news-feat-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.news-feat-desc {
  font-size: 0.8rem;
  color: rgba(200, 220, 255, 0.5);
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* â”€â”€ STREAMER PREMIUM â”€â”€ */
.stream-row.live {
  border-color: rgba(255, 0, 0, 0.2);
  background: rgba(255, 0, 0, 0.03);
  animation: pulseBorder 2s infinite;
}

.stream-row:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

@media (max-width: 600px) {
  .top-podium {
    padding: 16px 10px;
    gap: 8px;
  }

  .podium-av-wrap {
    width: 56px;
    height: 56px;
  }

  .podium-link-wrapper {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .podium-item.p1 {
    transform: translateY(-20px) scale(1.15);
    z-index: 10;
  }

  .podium-item.p1 .podium-av-wrap {
    width: 72px;
    height: 72px;
  }

  .podium-name {
    font-size: 0.8rem;
    max-width: 80px;
  }

  .podium-rank {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }

  .podium-stats {
    display: none;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Fix: footer scrolls with page content on homepage only */
.main-content {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.main-inner {
  overflow: visible !important;
  flex: none !important;
}

/* Scrollbar styling for main-content */
.main-content::-webkit-scrollbar {
  width: 6px;
}

.main-content::-webkit-scrollbar-thumb {
  background: rgba(0, 200, 255, 0.2);
  border-radius: 10px;
  transition: background 0.3s;
}

.main-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 210, 255, 0.45);
}

.main-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

/* Ticker block CSS */
.ticker-wrap {
  position: relative;
  background: linear-gradient(90deg, rgba(8, 12, 24, 0.95), rgba(15, 20, 35, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  height: 44px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ticker-label {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(0, 150, 255, 0.05));
  border-right: 1px solid rgba(0, 210, 255, 0.2);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #00d2ff;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.blink-dot {
  width: 8px;
  height: 8px;
  background: #00d2ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00d2ff, 0 0 20px #00d2ff;
  animation: ticker-pulse 1.5s infinite;
}

@keyframes ticker-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
  }

  70% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(0, 210, 255, 0);
  }

  100% {
    transform: scale(0.95);
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
  }
}

/* Forum Link Premium CSS */
.forum-link-banner-premium {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: linear-gradient(135deg, rgba(30, 40, 60, 0.4), rgba(10, 15, 25, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.forum-link-banner-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-20deg);
  animation: premium-shine 6s infinite;
}

@keyframes premium-shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

.forum-link-banner-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 150, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 50, 150, 0.2), inset 0 0 20px rgba(0, 150, 255, 0.1);
}

.fl-icon-premium {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00d2ff, #3a7bd5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
  transition: transform 0.4s;
}

.forum-link-banner-premium:hover .fl-icon-premium {
  transform: scale(1.1) rotate(5deg);
}

.fl-title-premium {
  font-family: 'Orbitron', monospace;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(to right, #ffffff, #8ca0c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.fl-sub-premium {
  font-size: 0.9rem;
  color: rgba(180, 200, 220, 0.6);
  display: block;
  line-height: 1.4;
}

.fl-arrow-premium {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s;
}

.forum-link-banner-premium:hover .fl-arrow-premium {
  background: rgba(0, 210, 255, 0.1);
  border-color: rgba(0, 210, 255, 0.3);
  color: #00d2ff;
  transform: translateX(5px);
}

/* Streamers mini block CSS */
#streamersGrid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.str-card {
  background: rgba(6, 9, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.str-card:hover {
  border-color: var(--plat-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--plat-color) 15%, transparent);
}

.str-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, color-mix(in srgb, var(--plat-color) 12%, transparent) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.str-card:hover::before {
  opacity: 1;
}

.str-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--plat-color) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--plat-color) 20%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--plat-color);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.str-card:hover .str-icon-box {
  transform: scale(1.08);
  background: color-mix(in srgb, var(--plat-color) 15%, transparent);
  border-color: color-mix(in srgb, var(--plat-color) 40%, transparent);
}

.str-icon-box svg {
  width: 28px;
  height: 28px;
}

.str-icon-box .material-symbols-outlined {
  font-size: 34px;
}

.str-name {
  font-family: 'Orbitron', monospace;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.str-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(140, 160, 200, 0.4);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.widget-link-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(200, 220, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  background: rgba(4, 8, 20, 0.3);
}

.widget-link-partners:hover {
  background: rgba(0, 150, 255, 0.06);
  color: #fff;
}

/* --- RANKING PODIUM STYLES (SHARED) --- */
.rank-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  text-align: center;
  width: 100%;
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
  opacity: 0.9;
  animation: fadeIn 0.8s ease-out;
}

/* ═══════════════════════════════════════════════════════ */
/* STYLE PRZENIESIONE Z INLINE <style> w index.html       */
/* ═══════════════════════════════════════════════════════ */

/* --- Right Slide Forum Button --- */
.rs-forum-slider {
  position: fixed;
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #00d2ff, #0078ff);
  color: #fff;
  display: flex;
  align-items: center;
  width: 180px;
  height: 54px;
  border-radius: 12px 0 0 12px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  transition: right 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  z-index: 1000;
  box-shadow: -4px 0 20px rgba(0, 160, 255, 0.3);
  filter: brightness(0.9);
}

.rs-forum-slider:hover {
  right: 0;
  filter: brightness(1.1);
}

.rsfs-icon {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rsfs-icon span {
  font-size: 26px;
}

.rsfs-text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* --- PREMIUM WIDGETS (Shadcn / Glassmorphism) --- */
.premium-widget {
  background: rgba(15, 18, 28, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.premium-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0.5;
}

.premium-widget.w-news::before {
  background: linear-gradient(90deg, transparent, rgba(192, 96, 255, 0.5), transparent);
}

.premium-widget.w-streams::before {
  background: linear-gradient(90deg, transparent, rgba(255, 60, 60, 0.5), transparent);
}

.premium-widget.w-bans::before {
  background: linear-gradient(90deg, transparent, rgba(255, 170, 0, 0.5), transparent);
}

.premium-widget-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.01);
}

.pw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex: 1;
  letter-spacing: 0.3px;
}

.pw-link {
  font-size: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.pw-link:hover {
  color: #fff;
}

.premium-widget-body {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- NEWS ITEMS (Editorial Cyberpunk) --- */
.pw-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.pw-news-card {
  position: relative;
  background: #0f1220;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  opacity: 0;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-left: 2px solid var(--nc, rgba(192, 96, 255, 0.8));
  will-change: transform;
}

.pw-news-card:hover {
  border-color: var(--nc, rgba(192, 96, 255, 0.6));
  border-left-color: var(--nc, rgba(192, 96, 255, 1));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--nc, rgba(192, 96, 255, 0.15)), inset 0 0 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.pnc-thumb-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
}

.pw-news-card:hover .pnc-thumb-wrap {
  transform: scale(1.04);
  opacity: 0.9;
}

.pnc-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 18, 32, 0.1) 0%, rgba(15, 18, 32, 0.7) 55%, rgba(15, 18, 32, 0.97) 100%);
}

.pnc-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}

.pnc-num {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 3;
  font-family: 'Orbitron', monospace;
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  letter-spacing: -2px;
  user-select: none;
  transition: color 0.3s;
}

.pw-news-card:hover .pnc-num {
  color: rgba(255, 255, 255, 0.12);
}

.pnc-tag {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 4;
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--nc, rgba(192, 96, 255, 1));
  background-size: 200% 100%;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.55) 100%);
  animation: tagShimmer 3s linear infinite;
}

@keyframes tagShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.pnc-content {
  position: relative;
  z-index: 5;
  margin-top: auto;
  padding: 20px 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pnc-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(235, 240, 255, 0.95);
  transition: color 0.3s;
}

.pw-news-card:hover .pnc-title {
  color: #fff;
}

.pnc-desc {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pnc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pnc-read {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--nc, rgba(192, 96, 255, 0.9));
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s, color 0.3s;
}

.pw-news-card:hover .pnc-read {
  gap: 10px;
  color: var(--nc, rgba(192, 96, 255, 1));
}

.pnc-read svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.pw-news-card:hover .pnc-read svg {
  transform: translateX(4px);
}

.pnc-date {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}

/* --- STRICT STREAMER CARDS --- */
.pw-streams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.pw-stream-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
}

.pw-stream-card:hover {
  border-color: rgba(255, 60, 60, 0.4);
  box-shadow: 0 4px 20px rgba(255, 60, 60, 0.15);
}

.pw-stream-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.3s, transform 0.6s ease;
}

.pw-stream-card:hover .pw-stream-thumb {
  opacity: 0.4;
  transform: scale(1.05);
}

.pw-stream-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  pointer-events: none;
}

.pw-stream-top {
  display: flex;
  justify-content: flex-end;
}

.pw-stream-live {
  background: #ff3c3c;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pw-stream-live::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: pulseRed 1.5s infinite;
}

.pw-stream-bottom {
  display: flex;
  flex-direction: column;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  margin: -12px;
  padding: 24px 12px 12px;
}

.pw-stream-name {
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.pw-stream-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.pw-stream-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pw-stream-meta .game {
  color: #c060ff;
}

.pw-stream-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 44px;
  height: 44px;
  background: rgba(255, 60, 60, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(255, 60, 60, 0.5);
}

.pw-stream-card:hover .pw-stream-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pw-stream-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #000;
  border: none;
  display: none;
}

.is-playing .pw-stream-iframe {
  display: block;
}

/* --- BANS LIST --- */
.pw-ban-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pw-ban-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.25s;
  text-decoration: none;
  color: #fff;
  opacity: 0;
}

.pw-ban-item:hover {
  background: rgba(255, 170, 0, 0.05);
  border-color: rgba(255, 170, 0, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pw-ban-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pw-ban-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 3px;
}

.pw-ban-indicator {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
}

.pw-ban-info {
  flex: 1;
  min-width: 0;
}

.pw-ban-user {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.pw-ban-reason {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pw-ban-time {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
}

/* --- SYSTEM MODAL (Maintenance / Announcements) --- */
.sys-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sys-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(8px);
}

.sys-modal-content {
  position: relative;
  width: 90%;
  max-width: 480px;
  background: #0f1220;
  border: 1px solid rgba(255, 170, 0, 0.4);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 170, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: sysModalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes sysModalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.sys-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffaa00, transparent);
}

.sys-modal-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.smh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.smh-title {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.smh-close {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.smh-close:hover {
  color: #fff;
}

.sys-modal-body {
  padding: 24px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.sys-modal-body h3 {
  font-family: 'Poppins', sans-serif;
  color: #ffaa00;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.sys-modal-footer {
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: center;
}

.sys-btn {
  background: linear-gradient(135deg, #ffaa00, #ff7700);
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sys-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
}

/* --- Sidebar Report Button Hover --- */
.sb-report-btn:hover {
  background: var(--hover-bg) !important;
  color: #fff !important;
  border-color: rgba(255, 60, 60, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 60, 60, 0.2);
}