/*.slider {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  max-width: 100%;*/
/*  margin-left: auto;*/
/*  margin-right: auto;*/
/*}*/

/*.slider__wrapper {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/

/*.slider__items {*/
/*  display: flex;*/
/*  transition: transform 0.5s ease;*/
/*}*/

/*.transition-none {*/
/*  transition: none;*/
/*}*/

/*.slider__item {*/
/*  flex: 0 0 100%;*/
/*  max-width: 100%;*/
/*  position: relative;*/
/*}*/

/*.slider__control {*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  width: 40px;*/
/*  height: 50px;*/
/*  transform: translateY(-50%);*/
/*  display: none;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: #fff;*/
/*  background: rgb(0 0 0 / 6%);*/
/*  opacity: 0.2;*/
/*  user-select: none;*/
/*}*/

/*.slider__control_show {*/
/*  display: flex;*/
/*}*/

/*.slider__control:hover,*/
/*.slider__control:focus {*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*  opacity: 0.7;*/
/*}*/

/*.slider__control_prev {*/
/*  left: 0;*/
/*}*/

/*.slider__control_next {*/
/*  right: 0;*/
/*}*/

/*.slider__control::before {*/
/*  content: '';*/
/*  display: inline-block;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  background: transparent no-repeat center center;*/
/*  background-size: 100% 100%;*/
/*}*/

/*.slider__control_prev::before {*/
/*  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");*/
/*}*/

/*.slider__control_next::before {*/
/*  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");*/
/*}*/
/*.slider__indicators {*/
/*  position: absolute;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 10%;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  padding-left: 0;*/
/*  margin: 0 15%;*/
/*  list-style: none;*/
/*  user-select: none;*/
/*}*/

/*.slider__indicator {*/
/*  flex: 0 1 auto;*/
/*  width: 30px;*/
/*  height: 4px;*/
/*  margin-right: 3px;*/
/*  margin-left: 3px;*/
/*  background-color: rgba(255, 255, 255, 0.5);*/
/*  background-clip: padding-box;*/
/*  border-top: 10px solid transparent;*/
/*  border-bottom: 10px solid transparent;*/
/*  cursor: pointer;*/
/*}*/

/*.slider__indicator_active {*/
/*  background-color: #fff;*/
/*}*/

/*adaptation*/
/* ========================================
   TABLET & MOBILE ADAPTIVE STYLES
   Breakpoints: 1024, 768, 480, 360px
   ======================================== */

/* ---- 1024px ---- */
@media (max-width: 1024px) {

  /* NAVBAR */
  .navbar {
    height: 70px;
    padding: 0 15px;
    position: relative;
  }

  .navbar .logo {
    width: 120px;
    height: 70px;
    margin-right: 0;
  }

  .navbar .logo a img {
    height: 70px;
    width: auto;
  }

  .navbar ul.menu {
    display: none;
  }

  .burger {
    display: flex !important;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  /* ==============================
    BURGER + MOBILE MENU — FULL
    ============================== */

  /* Скрываем бургер на десктопе */
  .burger {
    display: none;
  }

  @media (max-width: 1024px) {

    /*!* Скрываем обычное меню *!*/
    /*.navbar ul.menu {*/
    /*  display: none !important;*/
    /*}*/

    /*!* Показываем бургер *!*/
    /*.burger {*/
    /*  display: flex !important;*/
    /*  flex-direction: column;*/
    /*  justify-content: center;*/
    /*  align-items: center;*/
    /*  position: fixed;*/
    /*  top: 14px;*/
    /*  right: 16px;*/
    /*  width: 40px;*/
    /*  height: 40px;*/
    /*  z-index: 100000;*/
    /*  cursor: pointer;*/
    /*  background: transparent;*/
    /*  border: none;*/
    /*  padding: 0;*/
    /*}*/

    /*.burger .line__one,*/
    /*.burger .line__two,*/
    /*.burger .line__three {*/
    /*  display: block;*/
    /*  width: 26px;*/
    /*  height: 2px;*/
    /*  background: #fff;*/
    /*  margin: 4px 0;*/
    /*  border-radius: 2px;*/
    /*  transition: transform 0.3s ease, opacity 0.3s ease;*/
    /*  transform-origin: center;*/
    /*}*/

    /*!* Анимация бургера когда меню открыто *!*/
    /*.navbar.menu-active .burger .line__one {*/
    /*  transform: translateY(10px) rotate(45deg);*/
    /*}*/

    /*.navbar.menu-active .burger .line__two {*/
    /*  opacity: 0;*/
    /*  transform: scaleX(0);*/
    /*}*/

    /*.navbar.menu-active .burger .line__three {*/
    /*  transform: translateY(-10px) rotate(-45deg);*/
    /*}*/

    /*!* Оверлей *!*/
    /*.mobile-overlay {*/
    /*  display: none;*/
    /*  position: fixed;*/
    /*  inset: 0;*/
    /*  background: rgba(0, 0, 0, 0.75);*/
    /*  z-index: 99998;*/
    /*}*/

    /*.navbar.menu-active ~ .mobile-overlay,*/
    /*.mobile-overlay.active {*/
    /*  display: block;*/
    /*}*/

    /* Само меню */
    .navbar ul.menu {
      display: flex !important;
      flex-direction: column;
      position: fixed;
      top: 0;
      left: -100%;
      width: 270px;
      height: 100dvh;
      background: #181913;
      z-index: 99999;
      padding-top: 75px;
      overflow-y: auto;
      overflow-x: hidden;
      box-shadow: 4px 0 24px rgba(0, 0, 0, 0.7);
      transition: left 0.3s ease;
    }

    /*.navbar.menu-active ul.menu {*/
    /*  left: 0 !important;*/
    /*}*/

    /*.navbar ul.menu li {*/
    /*  width: 100%;*/
    /*  height: 52px;*/
    /*  min-width: unset;*/
    /*  border-bottom: 1px solid rgba(255, 255, 255, 0.06);*/
    /*  transform: none !important;*/
    /*}*/

    /*.navbar ul.menu li a {*/
    /*  width: 100%;*/
    /*  height: 100%;*/
    /*  padding: 0 20px;*/
    /*  font-size: 15px;*/
    /*  display: flex;*/
    /*  align-items: center;*/
    /*  color: #fff;*/
    /*  text-decoration: none;*/
    /*}*/

    /*.navbar ul.menu li:hover {*/
    /*  background: rgba(255, 255, 255, 0.05);*/
    /*  border-bottom: 1px solid #eeba8a;*/
    /*  transform: none !important;*/
    /*}*/

    /*.navbar ul.menu li.menu__item.but {*/
    /*  left: 0 !important;*/
    /*  height: 52px;*/
    /*  position: relative;*/
    /*  padding: 0;*/
    /*}*/

    /*.navbar ul.menu li.menu__item.button {*/
    /*  left: 0 !important;*/
    /*  width: 100%;*/
    /*  height: 52px;*/
    /*  background: #eeba8a;*/
    /*  position: relative;*/
    /*}*/

    /*.navbar ul.menu li.menu__item.button a {*/
    /*  color: #181913;*/
    /*  font-weight: 600;*/
    /*}*/

    /* Блок langs */
    .langs {
      margin-right: 55px;
    }

    /* Блокировка скролла body */
    body.no-scroll {
      overflow: hidden;
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
    }
  }

  .langs {
    margin-right: 60px;
  }

  /* SLIDER */
  .slider__box {
  }

  .slide__title {
    font-size: 32px !important;
    min-height: 80px;
    margin-bottom: 20px;
  }

  .slide__desc {
    font-size: 14px !important;
  }

  .slide__img {
    display: none;
  }

  /* SERVER INFO */
  aside.server__info {
    top: -160px;
  }

  .project {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
  }

  .server__pvp__text {
    width: 60%;
  }

  .server__pvp__online {
    width: 35%;
  }

  .server__pvp__files {
    position: relative;
    width: 100%;
    height: auto;
    right: auto;
    top: auto;
    padding: 15px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .server__pvp__files table {
    width: auto;
  }

  /* STATISTIC */
  section.statistic {
    top: -160px;
  }

  .stats__block {
    flex-direction: column;
    gap: 0;
  }

  section.statistic .stats__last,
  section.statistic .forum__last {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(80,83,70,0.2);
  }

  .stat_rateselect {
    width: 100%;
    float: none;
    padding: 15px 10px;
    display: flex;
    align-items: center;
  }

  .stat_rateselect ul.tab-group {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

  .stat_rateselect li {
    margin: 0;
  }

  .rating__line_class {
    display: none;
  }

  .flex-sbc {
    padding: 10px;
    font-size: 13px;
  }

  /* INFO SERVER ICONS */
  .info__server table tr td {
    padding: 25px 5px 35px;
    font-size: 14px;
  }

  /* FOOTER */
  section.footer {
    top: -170px;
    height: auto;
    flex-wrap: wrap;
    padding: 20px;
    gap: 15px;
  }

  .footer__info {
    width: 100%;
  }

  .footer_logo {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  /* FILES WINDOW */
  .files-window {
    width: 90%;
    top: 5%;
    max-height: 90vh;
  }

  .files-windows-client a,
  .files-windows-patch a,
  .files-windows-link-reg a {
    width: 100%;
    margin-right: 0;
  }
}


/* ---- 768px ---- */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    height: 60px;
  }

  .navbar .logo {
    height: 60px;
    width: 100px;
  }

  .navbar .logo a img {
    height: 60px;
  }

  .langs {
    display: none !important;
  }

  /* SLIDER */
  .slide__title {
    font-size: 24px !important;
    min-height: 60px;
  }

  .slide__desc {
    font-size: 13px !important;
    min-height: auto;
  }

  .slide__box {
    padding: 70px 10px 100px 20px;
    min-height: 350px;
  }

  /* SERVER INFO */
  aside.server__info {
    top: -100px;
  }

  .server__pvp__text {
    width: 100%;
  }

  .server__pvp__online {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .server__pvp__online span:first-child {
    font-size: 48px;
  }

  /* STATISTIC */
  section.statistic {
    top: -100px;
  }

  a.fullstat {
    position: static;
    display: block;
    text-align: center;
    margin: 15px auto;
    padding: 5px;
  }

  /* INFO ICONS */
  .info__server table tr {
    display: flex;
    flex-wrap: wrap;
  }

  .info__server table tr td {
    width: 50%;
    padding: 20px 5px 30px;
  }

  /* FORUM */
  section.statistic .forum__last .forum__news {
    padding: 8px;
  }

  a.forum_block_posts_item_text {
    font-size: 0.9rem;
  }

  /* FOOTER */
  section.footer {
    display: block;
    top: -110px;
    height: auto;
  }

  .footer__info,
  .footer_logo,
  .footer__social {
    width: 100%;
    padding: 10px 0;
  }

  /* FILES WINDOW */
  .files-window {
    width: 100%;
    top: 0;
    border-radius: 0;
    max-height: 100vh;
  }

  #windows_link a {
    font-size: 14px;
    padding: 8px;
  }

  .files-windows-styles a {
    width: 40%;
    font-size: 13px;
  }

  /* VIDEO */
  section.footer_vid {
    height: 150px;
  }
}


/* ---- 480px ---- */
@media (max-width: 480px) {

  /* NAVBAR */
  .navbar {
    height: 56px;
    padding: 0 10px;
  }

  .navbar .logo {
    height: 56px;
    width: 90px;
  }

  .navbar .logo a img {
    height: 56px;
  }

  .navbar.collapsed ul.menu {
    width: 100%;
  }

  .burger {
    right: 12px;
  }

  /* SLIDER */
  .slide__title {
    font-size: 20px !important;
    min-height: 50px;
    margin-bottom: 10px;
  }

  .slide__desc {
    font-size: 12px !important;
  }

  .slide__box {
    padding: 60px 10px 80px;
    min-height: 300px;
  }

  .btn {
    font-size: 13px;
    padding: 6px 18px;
    min-height: 36px;
  }

  /* SERVER BUTTONS */
  .button {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  input.title {
    font-size: 13px !important;
    padding: 12px 10px !important;
    margin: 3px !important;
  }

  /* SERVER INFO */
  aside.server__info {
    top: 0;
  }

  section.statistic {
    top: 0;
    margin-top: 0;
  }

  .project h2 {
    font-size: 18px;
  }

  .project h2 span {
    font-size: 11px;
    padding: 3px 6px;
  }

  .server__pvp__online span:first-child {
    font-size: 40px;
  }

  /* RATING */
  .stat_rateselect {
    padding: 10px 5px;
  }

  .stat_rateselect-button {
    width: 44px;
    height: 44px;
  }

  .hexagon-shape-rateselect {
    width: 44px;
    height: 44px;
  }

  .hexagon-content_rateselect {
    top: 12px;
    left: 2px;
  }

  .flex-sbc {
    padding: 8px;
    font-size: 12px;
    gap: 5px;
  }

  .rating__line_num {
    width: 8% !important;
  }

  .rating__line_name {
    width: 50% !important;
  }

  .rating__line_value {
    width: 15% !important;
  }

  /* INFO ICONS */
  .info__server table tr td {
    width: 50%;
    font-size: 12px;
    padding: 15px 3px 25px;
  }

  .info__server table tr td img {
    height: 50px;
  }

  /* FORUM */
  .forum_block_posts_item_icon.f-s {
    padding: 5px;
  }

  a.forum_block_posts_item_text {
    font-size: 0.8rem;
  }

  .hexagon_img img {
    width: 40px !important;
    height: 37px !important;
  }

  /* FOOTER */
  section.footer {
    top: 0;
  }

  section.footer_vid {
    display: none;
  }

  /* FILES WINDOW */
  .files-windows-client a,
  .files-windows-patch a,
  .files-windows-link-reg a {
    width: 100%;
    margin-right: 0;
  }

  .files-windows-styles a {
    width: 60%;
    position: static;
    margin-top: 10px;
  }

  #windows_link {
    flex-wrap: wrap;
    height: auto;
    padding: 4px;
    gap: 4px;
  }

  #windows_link a {
    height: 44px;
    font-size: 13px;
  }
}


/* ---- 360px ---- */
@media (max-width: 360px) {

  .navbar .logo a img {
    height: 50px;
  }

  .slide__title {
    font-size: 17px !important;
  }

  .project h2 {
    font-size: 15px;
  }

  .server__pvp__online span:first-child {
    font-size: 34px;
  }

  .flex-sbc {
    font-size: 11px;
    padding: 6px;
  }

  .stat_rateselect-button {
    width: 38px;
    height: 38px;
  }

  .info__server table tr td {
    font-size: 11px;
  }

  .files-windows-patch h4,
  .files-windows-client h4,
  .files-windows-link-reg h4 {
    font-size: 16px;
  }

  input.title {
    padding: 10px 7px !important;
    font-size: 12px !important;
  }
}
