@charset "UTF-8";
/** GENERAL **/
:root {
  --text-font-family: Lato;
  --text-font-size: 14px;
  --title-font-family: Roboto;
  --title-color: #FFF;
  --container-w: 1440px;
  /* --content-height: calc(100vh - 61px); */
  --row-gap: 30px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: auto;
  padding: 0;
  margin: 0;
}

body {
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: #0e0f14;
  color: #D1D2D3;
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  overflow-x: hidden;
  overflow-y: scroll;
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body:before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0.09;
  filter: grayscale(0.7) blur(3px);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.12);
}

a:visited, a:link {
  color: #1C9BCB;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

p {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

code {
  user-select: all;
  background: #222529;
  padding: 3px;
  border-radius: 3px;
  border: 1px solid #3C3E42;
  color: orange;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--title-color);
  margin-top: 0;
  margin-bottom: 15px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

table {
  width: 100%;
}
table tr {
  background-color: #282828;
}
table td {
  padding: 10px;
  border-bottom: unset !important;
}

.btn,
button {
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  border: 0;
  max-width: 600px;
  background-color: #004D76;
  color: #FFF !important;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn:hover,
button:hover {
  background-color: #033a57;
  opacity: 1;
}
.btn.green,
button.green {
  background-color: #00ab00;
}
.btn.green:hover,
button.green:hover {
  background-color: #29b829;
}
.btn + .btn,
.btn + button,
button + .btn,
button + button {
  margin-left: 5px;
}

ul,
ol {
  margin: 0;
  padding: 0 15px;
}
ul li:not(:last-child),
ol li:not(:last-child) {
  margin-bottom: 10px;
}

iframe {
  margin: 0;
}

input,
select {
  background-color: transparent;
  color: #FFF;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 10px;
}

option {
  color: #000;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  cursor: pointer;
  padding: 15px 0;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  color: #1C9BCB;
}
.accordion:hover, .accordion.active {
  opacity: 0.8;
}
.accordion:after {
  content: "➕"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}
.accordion.active:after {
  content: "➖"; /* Unicode character for "minus" sign (-) */
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.tools {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 300px;
  background-color: #000;
  overflow: hidden;
}
.block > a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  color: #FFF;
  transition: all 0.25s ease;
  transform: translate3d(0px, 0px, 0px);
  opacity: 0;
}
.block > a:hover {
  opacity: 1 !important;
}
.block:hover .game-logo {
  opacity: 0;
  transform: translate3d(-50%, -50%, 0px) scale(0.95);
}
.block:hover > a {
  opacity: 0.6;
}
.block .game-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 50%;
  max-height: 40%;
  transform: translate3d(-50%, -50%, 0px);
  transition: all 0.25s ease;
}
.block .game-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transform: scale(1);
  transition: all 0.5s ease;
}
.block:after {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 10%;
  width: 135%;
  height: 135%;
  background-color: rgba(255, 255, 255, 0.04);
  transform: rotate(150deg);
  transition: all 0.25s ease;
}
.block:hover .game-bg {
  transform: scale(1.1);
}
.block:hover:after {
  top: 30%;
}

@keyframes breathingAnim {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 1;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.page-title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.page-title img {
  border-radius: 3px;
}

.maps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.maps > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  padding-bottom: 15px;
}
.maps > div > a {
  display: block;
}
.maps > div > a:hover {
  opacity: 1;
}
.maps:not(:last-child) {
  margin-bottom: 20px;
}

.map-name {
  text-transform: uppercase;
}

.label {
  display: inline-block;
  padding: 3px 5px;
  background-color: green;
  color: #FFF;
  font-weight: 600;
  line-height: 20px;
  min-width: 40px;
  min-height: 26px;
  vertical-align: middle;
  text-align: center;
}
.label.loading {
  animation: breathingAnim 2.5s ease-out infinite normal;
}

.chart {
  padding: 10px;
  background-color: #161920;
  margin-bottom: 20px;
}

.chart-inner {
  overflow: hidden;
}
.chart-inner iframe {
  margin-top: -60px;
  margin-bottom: -45px;
  margin-left: -10px;
  width: calc(100% + 20px) !important;
}

@media (max-width: 367px) {
  .chart-inner iframe {
    margin-bottom: -40px;
  }
}
@media (max-width: 1024px) {
  .maps {
    grid-template-columns: 1fr;
  }
}
.main-wrapper {
  max-width: var(--container-w);
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
  padding-block: 30px;
  gap: 30px;
}

.header {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 40px;
  border-right: 1px solid #35373B;
  max-width: 220px;
  height: 100vh;
  flex: 1 0 220px;
  gap: 15px;
}

.header-btn img {
  width: 20px;
  height: 20px;
}

.close-btn {
  display: none;
}

.logo {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  color: var(--title-color);
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  margin-left: -10px;
}
.header ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  border: 1px solid transparent;
}
.header ul li img {
  max-width: 20px;
}
.header ul li:hover a, .header ul li.active a {
  color: #FFF;
  background-color: rgba(38, 38, 38, 0.7);
  border: 1px solid #3d3d3d;
}

body:has(.header.active) {
  overflow: hidden;
}

.content {
  flex-grow: 1;
  gap: 30px;
}
.home-page .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex-grow: 1;
}

.title-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}
.title-icons img {
  max-width: 30px;
  width: 100%;
}

.row {
  display: flex;
  gap: var(--row-gap);
  width: 100%;
}

.col-8 {
  flex: 0 0 calc(66.666667% - var(--row-gap) / 2);
  max-width: calc(66.666667% - var(--row-gap) / 2);
}

.col-4 {
  flex: 0 0 calc(33.333333% - var(--row-gap) / 2);
  max-width: calc(33.333333% - var(--row-gap) / 2);
}

.col-12 {
  width: 100%;
  flex-basis: 100%;
}

.field {
  padding: 25px;
  background-color: rgba(38, 38, 38, 0.6901960784);
  border-radius: 8px;
  border: 1px solid #3d3d3d;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.field:not(:last-child) {
  margin-bottom: 30px;
}

.maplist {
  font-family: monospace;
  padding-left: 30px;
}
.maplist > div {
  position: relative;
  width: fit-content;
}
.maplist > div:hover {
  z-index: 1;
}
.maplist span {
  opacity: 0.2;
  position: absolute;
  right: calc(100% + 6px);
}

.mapimg {
  position: absolute;
  bottom: 0;
  left: calc(100% + 10px);
  opacity: 0;
  padding: 5px;
  background-color: #131620;
  border-radius: 3px;
  border: 1px solid #3C3E42;
  pointer-events: none;
}
.mapimg img {
  display: block;
  border-radius: inherit;
  border: 1px solid #3C3E42;
  max-width: 240px;
}
.mapimg .maplist > div:first-child, .mapimg .maplist > div:nth-child(2) {
  top: 0;
  bottom: auto;
}

.maplist > div:hover .mapimg {
  opacity: 1;
}

.server-adress {
  color: orange;
  font-family: monospace;
  user-select: all;
}

.align-right {
  text-align: right;
}

.hide {
  display: none;
}

@media (min-width: 1025px) {
  .header-btn {
    display: none;
  }
}
@media (max-width: 1024px) {
  /* :root {
      --content-height: unset;
  } */
  .main-wrapper {
    padding-inline: 15px;
  }
  .home-page .content {
    display: grid;
    grid-template-columns: 1fr;
  }
  .block > a {
    font-size: 10vw;
  }
  .header {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    transform: translateX(-100%);
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
    border: none;
    padding: 20px;
    z-index: 1;
    background-color: rgba(38, 38, 38, 0.6901960784);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.5s ease;
  }
  .header ul {
    flex-direction: column;
  }
  .header.active {
    transform: translateX(0);
  }
  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .row {
    flex-direction: column;
  }
  .field {
    padding: 15px;
  }
  .col-8,
  .col-4 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .title {
    font-size: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
