@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Silkscreen', cursive;
  list-style: none;
}

body {
  position: relative;
  width: 100%;
  background-color: #000;
}

.nav {
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: #202020ee;
  border-bottom: 1px solid #000;
  -webkit-box-shadow: 0px 4px 10px #000000;
          box-shadow: 0px 4px 10px #000000;
  z-index: 99;
}

.wrapper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}

.logo-nav {
  width: 45%;
  margin-left: 10px;
}

@media (min-width: 1600px) {
  .logo-nav {
    margin-left: -15px;
  }
}

@media (min-width: 798px) {
  .logo-nav {
    width: 65%;
  }
}

.logo-nav img {
  width: 140%;
  height: 60px;
}

.burger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 20px;
}

.burger-menu:hover {
  cursor: pointer;
}

@media (min-width: 978px) {
  .burger-menu {
    display: none;
  }
}

@media (min-width: 1600px) {
  .burger-menu {
    right: 0;
  }
}

.burger-menu .burger-menu-button {
  position: relative;
  width: 25px;
  height: 15px;
  background-image: url(https://media.minecraftforum.net/attachments/353/519/638398842855829311.jpeg);
  background-position: center;
  background-size: cover;
  border-bottom: 2px solid #504f4f;
  border-right: 2px solid #504f4f;
}

.burger-menu p {
  color: #fff;
  font-size: 12px;
}

.account-box {
  display: none;
}

@media (min-width: 978px) {
  .account-box {
    display: block;
    margin-right: 10px;
  }
}

@media (min-width: 1600px) {
  .account-box {
    margin-right: 0;
  }
}

.account-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.account-box ul li {
  margin: 0 5px;
  color: #9bcc52;
  padding-right: 5px;
  border-right: 1px solid #9bcc52;
}

.account-box ul li:hover {
  color: #6f8f3f;
  cursor: pointer;
}

.nav-news-blok {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: #6f8f3f;
  z-index: 98;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.nav-news-blok-activate {
  top: 0;
}

.nav-deactive-mobile {
  position: absolute;
  left: -100%;
  width: 90%;
  height: 100%;
  background-color: #6f8f3f;
  z-index: 99;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.nav-active-mobile {
  left: 0;
}

.nav-player-skins-deactive {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6f8f3f;
  z-index: 98;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  padding: 16px;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  padding-top: 100px;
}

.nav-player-skins-deactive .hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.nav-player-skins-deactive h2 {
  font-size: 1.25rem;
  margin: 0;
}

.nav-player-skins-deactive .status {
  font-size: .9rem;
  color: #9aa0a6;
}

.nav-player-skins-deactive .grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(100px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}

.nav-player-skins-deactive .player {
  background: #0f1321;
  border: 1px solid #22283e;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity .2s ease, -webkit-transform .18s ease;
  transition: opacity .2s ease, -webkit-transform .18s ease;
  -o-transition: transform .18s ease, opacity .2s ease;
  transition: transform .18s ease, opacity .2s ease;
  transition: transform .18s ease, opacity .2s ease, -webkit-transform .18s ease;
}

.nav-player-skins-deactive .player.appear {
  opacity: 0;
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
}

.nav-player-skins-deactive .player.appear.active {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.nav-player-skins-deactive .player img {
  width: 64px;
  height: 64px;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  border-radius: 6px;
}

.nav-player-skins-deactive .name {
  font-size: .95rem;
  font-weight: 600;
  margin-top: 6px;
  word-break: break-word;
}

.nav-player-skins-deactive .muted {
  color: #9aa0a6;
  text-align: center;
}

.nav-player-skins-active {
  top: 0;
}

.header {
  position: relative;
  top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 1100px) {
  .header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.header-first-news {
  position: relative;
  width: 90%;
  background-color: #202020;
  border-bottom: 2px solid #252525;
}

@media (min-width: 1100px) {
  .header-first-news {
    width: 50%;
  }
}

.header-first-news-img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.header-first-news-img-container img {
  width: 100%;
  height: auto;
  /* ważne */
  display: block;
  /* usuwa ewentualne przerwy pod img */
  -o-object-fit: cover;
     object-fit: cover;
  /* opcjonalnie, jeśli chcesz kadrować */
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.header-first-news-img-container img:hover {
  cursor: pointer;
  scale: 1.1;
}

.header-first-news-box-title {
  position: relative;
  /* trzymaj relative na wszystkich szerokościach */
  bottom: 0;
  width: 100%;
  padding: 10px;
  color: #fff;
  border-top: 2px solid #4b4b4b;
}

@media (min-width: 978px) {
  .header-first-news-box-title {
    padding: 20px;
  }
}

.header-first-news-box-title h1 {
  font-weight: 300;
  font-size: 20px;
}

@media (min-width: 798px) {
  .header-first-news-box-title h1 {
    font-size: 24px;
  }
}

.header-first-news-box-title p {
  font-size: 10px;
  font-weight: 100;
  padding: 10px 0;
}

@media (min-width: 798px) {
  .header-first-news-box-title p {
    font-size: 14px;
  }
}

.header-first-news-box-title button {
  border: none;
  background-color: #277827;
  color: #fff;
  padding: 10px 20px;
  border-top: 5px solid #45ad45;
  border-bottom: 5px solid #045e04;
  font-size: 16px;
  margin-top: 10px;
}

.header-first-news-box-title button:hover {
  cursor: pointer;
  background-color: #247224;
}

.new-border {
  border-top: 2px solid #4b4b4b;
}

.header-news {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  width: 90%;
  background-color: #000;
  margin-top: 20px;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 798px) {
  .header-news {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    width: 90%;
  }
}

@media (min-width: 1100px) {
  .header-news {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    width: 50%;
    margin-left: 20px;
    margin-top: 0;
  }
}

.no-border {
  border: none;
}

.max-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1100px) {
  .max-width {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.header-news-3 {
  background-color: #202020;
  border-bottom: 2px solid #252525;
}

.header-news-3 .header-news-3-img-container {
  position: relative;
  width: 100%;
}

.header-news-3 .header-news-3-img-container img {
  width: 100%;
  height: auto;
  /* ważne */
  display: block;
  /* usuwa ewentualne przerwy pod img */
  -o-object-fit: cover;
     object-fit: cover;
  /* opcjonalnie, jeśli chcesz kadrować */
}

.header-news-3 .news-3-button {
  border: none;
  background-color: transparent;
  color: #20e720;
  padding: 0;
}

.header-news-3 .news-3-button:hover {
  color: #a2f1a2;
  background-color: transparent;
  text-decoration: underline;
}

.header-news-3 .news-3-button span {
  display: inline-block;
  position: relative;
  top: -5px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 10px;
  letter-spacing: -2px;
}

.header-news-3:first-child {
  grid-column: 1 / -1;
}

.footer {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #202020;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-wrapper {
  position: relative;
  height: 100%;
  width: 90%;
  background-color: aliceblue;
}

@media (min-width: 1600px) {
  .footer-wrapper {
    max-width: 1600px;
    margin: 0 auto;
  }
}

.no-scroll {
  overflow: hidden;
}

section {
  max-width: 100%;
  margin: 120px auto;
  background-color: #1b1a1a;
}

.section-nav {
  padding: 40px;
}

.section-nav h2 {
  color: #fff;
}

@media (min-width: 978px) {
  .section-nav h2 {
    font-size: 32px;
  }
}

.section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  margin: 0 auto;
  padding: 0 20px 40px;
}

@media (min-width: 1600px) {
  .section-wrapper {
    max-width: 1600px;
    padding: 0 40px 40px;
  }
}

.section-news-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 300px;
          flex: 1 1 300px;
  aspect-ratio: 1 / 1;
  background-color: #2d2b2b;
}

.section-nav-bottom {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
/*# sourceMappingURL=main.css.map */