/* KONTENER panelu (logo + ramka + licznik pod spodem) */
.panel-lewo-blok {
    position: fixed;
    top: 8px; /* dystans od gory */
    left: -25px; /* dystans od lewej */
    width: 430px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 800px) {
    .panel-lewo-blok {
        display: none !important;
    }
}



/* LOGO nad ramkÄ… */
.logo-nad {
    width: 320px;
    text-align: center;
    margin-bottom: -20px; /* Å›cisÅ‚y odstÄ™p nad ramkÄ… */
}
.logo-nad img {
    width: 278px;
    height: auto;
    display: block;
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
}

/* PANEL (ramka z tÅ‚em) */
.panel-ramka-twarda {
width: 380px;
height: 540px;
background: url('/images/panel_l.png') no-repeat center center;
background-size: 100% 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
border: 0;
overflow: hidden;
position: relative;
z-index: 2;
}

/* Nawigacja */
.nav-wrapper {
    width: 298px;
    height: 480px;
    margin: 56px auto 30px auto;
    overflow-y: auto;
    box-sizing: border-box;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: #71c6ff #232943;
    /* dla Firefoxa */
}

.nav-wrapper {
  /* ... reszta ... */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #237993 #232943;
}

.nav-wrapper::-webkit-scrollbar {
  width: 11px;
  background: transparent;
}
.nav-wrapper::-webkit-scrollbar-thumb {
  background: #266275;
  border-radius: 8px;
  box-shadow: 0 0 7px 2px #38a2ff80;
  border: 2px solid #21273a;
  min-height: 30px;
  transition: background 0.3s;
}
.nav-wrapper::-webkit-scrollbar-thumb:hover {
  background: #194951;
}
.nav-wrapper::-webkit-scrollbar-track {
  background: #232943;
  border-radius: 8px;
}
.nav-wrapper::-webkit-scrollbar-corner {
  background: transparent;
}

/* Safari kolor scrolla (tylko od 16.4+): */
@media (pointer: fine) {
  ::-webkit-scrollbar-thumb:vertical {
    background-color: #00c2ff !important;
  }
}




.nav-item {
    width: 280px;
    height: 50px;
    margin-bottom: 7px;
    border: none;
    background-image: url('/images/titlebar.png');
    background-repeat: no-repeat;
    background-size: 100% 48px;
    background-position: center;
    color: #a0c8ff;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    text-shadow: 0 0 5px #4f7fc6;
    transition: filter 0.3s;
    background-color: transparent !important;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    outline: none;
}
.nav-item:last-child {margin-bottom: 0;}
.nav-item.active, .nav-item.glow {
    filter: brightness(1.35);
    color: #092144 !important;
    text-shadow: 0 0 10px #7db2ff;
}
.nav-item a {
    color: inherit !important;
    text-decoration: none;
    font: inherit;
    font-weight: inherit;
    padding-top: 5px;
    text-shadow: inherit;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-item:last-child {
    margin-bottom: 0 !important;
}

.nav-item:hover {
    filter: brightness(1.15);
}
.nav-item.active, .nav-item.glow {
    filter: brightness(1.3);
    font-weight: 700;
    color: #092144 !important;
    text-shadow: 0 0 10px #7db2ff;
}

/* Przyciski spoÅ‚ecznoÅ›ci na dole panelu (opcjonalnie dodaj jeÅ›li chcesz) */
.panel-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 340px;
    margin: -55px auto 0 auto; /* odstÄ™p od licznika w gÃ³rÄ™ */
    z-index: 1;
    position: static; /* to najwaÅ¼niejsze! */
}
.panel-btn {
width: 150px;
height: 156px;
background-color: transparent;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
border: none;
cursor: pointer;
padding: 0;
transition: filter 0.25s, transform 0.25s;
display: flex;
align-items: center;
justify-content: center;
}
.panel-btn:hover {transform: scale(1.08);}
.discord-btn { background-image: url('/images/btn-discord.png'); }
.fp-btn { background-image: url('/images/btn-fp.png'); }

/* Odliczanie POD panelem, nie w ramce! */
.countdown-container {
    width: 342px;
    height: 58px;
    margin: -40px auto 0 auto;
    background: url('/images/ranking-row.png') no-repeat center center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: Arial, sans-serif;
    user-select: none;
    text-shadow: 0 0 4px #011;
    font-size: 17px;
    position: relative;
    z-index: 3;
}
.countdown-text {
    font-size: 13px;
    margin-bottom: 3px;
}
.countdown-timer {
    font-size: 15px;
    font-weight: bold;
}

/* Zablokuj zaznaczanie */
.panel-ramka-twarda, .panel-ramka-twarda *, .logo-nad, .logo-nad * {
    user-select: none;
    -webkit-user-select: none;
}















/* Margines z lewej strony strony gÅ‚Ã³wnej Å¼eby nie schowaÄ‡ pod panel-lewo-blok */
.content-wrapper {
    margin-left: 375px; /* rÃ³wne szerokoÅ›ci .panel-wrapper */
    padding: 20px;
    box-sizing: border-box;
  background-color: #87858503;
}





/* Reset box-sizing */
* {
    box-sizing: border-box;
}

/* Tekst i reszta globalna */
body {
    margin: 0;
    padding: 0;
    color: #c7c5c2;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: linear-gradient(rgb(2 2 3 / 70%), rgb(11 15 21 / 90%)), url(../images/raw.png) repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Scrollbar globalny (opcjonalnie) */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: rgba(44, 44, 44, 0.8);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgba(100, 100, 100, 0.8);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(130, 130, 130, 0.9);
}

/* Responsive: ukryj panel nawigacji przy maÅ‚ych szerokoÅ›ciach */
@media (max-width: 768px) {
    .panel-wrapper {
        display: none;
    }
    .content-wrapper {
        margin-left: 0;
        padding: 10px;
    }
}

  
  strong {
    font-weight: 700;
  }
  
  .button, img, code {
    vertical-align: middle;
  }
  
  .img_ev3q {
    height: auto;
  }
  
  img {
    max-width: 100%;
  }
  
  * {
    box-sizing: border-box;
  }
  
  @media screen and (max-width: 1300px) {
    .banner-box {
      display: none;
    }
  }
  
  @media screen and (max-width: 768px) {
    .panel-lewo-blok {
      display: none;
    }
  }
  
  @media (min-width: 1440px) {
    .resulsts {
      max-width: 1320px;
    }
  }
  
  .glow {
    filter: brightness(1.4);
  }
  
  

  .panel-lewo-blok .nav, .prezka ul {
    list-style-type: none;
  }
  
  
  
 
  
  .results {
    background-repeat: repeat-y;
    background-size: 100%;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    margin-top: -20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 45px;
    padding-right: 8%;
}


  
  @media (min-width: 1301px) and (max-width: 1400px) {
    .results {
      padding-right: 28%;
    }
  }
  
  @media (max-width: 1300px) {
    .results {
      padding-right: 10%;
    }
  }
  
  @media (max-width: 1024px) {
    .results {
      padding-right: 15%;
    }
  }
  
  @media (max-width: 768px) {
    .results {
      padding-right: 2%;
    }
  }
  
  @media (max-width: 480px) {
    .results {
      padding-right: 5%;
    }
  }

  
.footer {
    width: 100%;
    max-width: 800px; /* dowolna szerokość */
    margin: 0px auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-left: 650px
}

  

  
  @media (max-width: 1500px) {
    .footer {
      transform: translateX(-150px);
    }
  }
  
  @media (max-width: 1300px) {
    .footer {
      transform: translateX(-35px);
    }
  }
  
  @media (max-width: 768px) {
    .footer {
      transform: translateX(-2px);
    }
  }
  

  
  @media (max-width: 768px) {
    .content-wrapper, .results {
      width: calc(100% - 8px);
      margin: 0 4px;
    }
  
    body {
      overflow-x: hidden;
    }
  }
  
  #panel-lewo-blok .nav, .prezka ul {
    list-style-type: none;
  }
  
  .nav a.active {
    background: url(../images/presentation/menu_bar_active.png) no-repeat;
    color: #ffedad;
    box-shadow: 0 0 10px #ffedad;
    text-shadow: 0 1px 2px #ffedad, 0 1px 4px #ffedad;
    filter: brightness(1.4);
  }
  


  



strong {
font-weight: 700;
}

.button, img, code {
vertical-align: middle;
}

.img_ev3q {
height: auto;
}
img {
max-width: 100%;
}








.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    transform: translateX(190px);
}

@media (max-width: 768px) {

   * {
      box-sizing: border-box;
    }

    .content-wrapper, .results {
        width: calc(100% - 20px);
        margin: 0 10px;
    }

    body {
        overflow-x: hidden;
    }
}


#panel-lewo-blok .nav, .prezka ul {
    list-style-type:none
}
a {
color: #3679e6;
text-decoration: none;
}
strong {
font-weight: 700;
}

.body, .tabelka {
    align-items: center;
    display: flex;
    justify-content: center;

}
table {
border-collapse: collapse;
display: block;
margin-bottom: 1rem;
}
pre, table {
overflow: auto;
}
table thead, table tr:nth-child(2n) {
background-color: #00000008;
}
thead {
display: table-header-group;
vertical-align: middle;
border-top-color: inherit;
border-right-color: inherit;
border-bottom-color: inherit;
border-left-color: inherit;
}
ol ol, ul ol {
    list-style-type:lower-roman
}

ol ol, ol ul, ul ol, ul ul {
    margin:0
}

ol ol ol, ol ul ol, ul ol ol, ul ul ol {
    list-style-type:lower-alpha
}

/* baza */
table {
    /* width: 100%; */
    border-collapse: separate;
    border-spacing: 0;
    background-color: rgba(15, 19, 27, 0.1);
    color: #d7e4ff;
    border-radius: 1px solid rgba(51, 97, 159, 0.29);
    border-radius: 5px;
    overflow: hidden;
    font-size: 14.5px;

}

/* nagłówek */
table thead tr {
    border-bottom: 2px solid rgba(127, 131, 136, 0.13);

}
table thead {
    background:
      linear-gradient(180deg, rgba(27,39,112,0.28), rgba(15,24,41,0.28));

}
table th {
    background-color: rgba(8, 9, 14, 0.17);
    color: #e7efff;
    font-weight: 700;
    text-align: center;
    padding: 0.75rem;

}

/* wiersze */
table tr {
    background-color: transparent;
    /* border-top: 1px solid #51719c; */

}

/* zebra (parzyste) — na bazie Twojego pomysłu, ale niebieskawo */
table tr:nth-child(2n) {
    background-color: rgba(19, 89, 201, 0.08);

}

/* hover */
table tbody tr:hover {
    background-color: rgba(38, 93, 150, 0.1);

}

/* komórki */
table td, table th {
    border: 1px solid rgba(100, 112, 166, 0.11);
    padding: 0.75rem;

}

/* lekko przygaszony tekst, jeśli użyjesz klasy .muted w komórce */
table .muted {
    color: #a9bbd9;
}

/* liczby — ładniejsze wyrównanie */
table td.num, table th.num {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

strong {
    font-weight:700;
}

a {
    color: #3578e5;
    text-decoration:none;
}
ol, ul {
padding-left: 2rem;
margin: 0 0 1rem;
padding-left: 0;
}

img {
max-width: 100%;
}

