*,
*::before,
*::after{
  padding: 0;
  margin: unset;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style-type: none;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
}


img,
picture,
svg,
canvas {
  display: block;
  block-size: auto;
}
:root {
  font-size: 10px;
}

p, a {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

h1,h2,h3,h4,h5,h6 {
  margin-bottom: 2rem;
}

h3 {
  font-size: 2.4rem;
}

.autor {
  font-size: 2rem;
}

.id-applications {
  color: #0FFB6B;
  line-height: 2.4rem;
  font-size: 1.8rem;
}

.list li {
  margin-bottom: 1.2rem;
}

.comment-header p {
  margin-bottom: 2rem;
}

.comment-title {
  background-color: #0a352e;
  padding: 1.6rem;
  border-radius: 0.5rem;
  font-size: 2rem;
  line-height: 2.4rem;
}

.start-game {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF;
  font-family: "Play";
  font-weight: 700;
  text-transform: uppercase;
  background: url("../images/cta-start.webp") no-repeat;
  min-width: 246px;
  height: 64px;
  transition: all .35s;
}

.start-game:hover {
  filter: brightness(120%);
}

.start-game .swords {
  overflow:visible;
}

.start-game :where(.right, .left) {
  position: relative;
  transform-origin: center;
  transition: all .35s;
}

.start-game .right {
  animation: sword-right-animation 1s linear infinite;
}

.start-game .left {
  animation: sword-left-animation 1s linear infinite;
}

@keyframes sword-left-animation {
  0%{
    rotate: 0;
  }
  33%{
    rotate: -25deg;
    translate: -8px -2px;
  }
  66% {
    rotate: -65deg;
    translate: -8px -2px;
  }
  99% {
    rotate: 12deg;
  }
}

@keyframes sword-right-animation {
  0%{
    rotate: 0;
  }
  33%{
    rotate: 25deg;
    translate: 8px -2px;
  }
  66% {
    rotate: 60deg;
    translate: 8px -2px;
  }
  99% {
    rotate: 12deg;
  }
}

.forum-cta {
  display: flex;
  padding: 1.5rem 3rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(25, 35, 50, 0.65) 0%, rgba(49, 72, 105, 0.65) 100%);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  text-transform: uppercase;
  transition: all .35s;
}

.forum-cta path {
  transition: all .35s;
}

.forum-cta:hover {
  color: #00A3FF;
  text-shadow: 0px 0px 10px rgba(0, 163, 255, 0.25);
}

.forum-cta:hover path {
  fill: #00A3FF
}

.cta-play-container {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.cta-play {
  filter: drop-shadow(0px 4px 10px #000);
}

.cta-play-hover {
  position: absolute;
  opacity: 0;
  z-index: 10;
}

.cta-fight {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 24.5rem;
  width: max-content;
  margin: auto;
  height: 6.2rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35);
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.15);
  font-family: Philosopher;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FABE9C 18.18%, #FDA879 86.36%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-fight-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.cta-fight-bg-hover {
  opacity: 0;
  z-index: -1;
}

.cta-fight.lk{
  margin-bottom: 4rem;
  padding-bottom: 0;
}

.cta-fight.lk :where(.cta-fight-bg,.cta-fight-bg-hover) {
  scale: 1.4 1;
}

.cta-fight:hover .cta-fight-bg-hover {
  animation: cta-play-animation 1.5s linear  infinite ;
}

@keyframes cta-play-animation {
  0%{
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .cta-fight.lk {
    font-size: 1.8rem;
  }
  .cta-fight.lk :where(.cta-fight-bg,.cta-fight-bg-hover) {
    scale: 1.2 1; 
  }
}
.shop-container {
  background: radial-gradient(30% 55% at 0% 100%, rgba(125, 80, 255, 0.07) 0%, rgba(125, 80, 255, 0.00) 100%), radial-gradient(50% 120% at 110% 55%, rgba(243, 164, 71, 0.10) 30%, rgba(243, 164, 71, 0.00) 100%), url(../images/shop-top.webp) top center no-repeat,  #000;
  min-height: 100dvh;
}

.rules-container {
  font-size: 1.6rem;
}

.rules-container a {
  color: #ff7910;
}

.rules-container a {
  text-decoration: underline;
}

.rules-container img {
  max-width: 100%;
}

.items-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin: 2rem auto;
}

.items-list input[type="radio"], .items-list input[type="checkbox"] {
  display: none;
}

.item-category {
  cursor: pointer;
  display: flex;
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: bold;
  gap: 2.4rem;
  justify-content: space-between;
  transition: all 0.5s;
  border-radius: 0.5rem;
  background: #111521;
}

.item-category:hover {
  filter: brightness(140%);
}

.items-list input + .item-category + .items-container {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
}

.items-list input:checked + .item-category {
  border-radius: 0.5rem 0.5rem 0rem 0rem;
  filter: brightness(80%);
}

.items-list input:checked + .item-category + .items-container {
  grid-template-rows: 1fr;
}

.items-list input + .item-category + .items-container .items-info {
  overflow: hidden;
  padding: 0 1.2rem;
  transition: padding 0.5s ease-out;
}

.items-list input:checked + .item-category + .items-container .items-info {
  padding: 3.2rem;
}

.item-category .corner {
  transform-origin: center center;
  transition: all 0.5s linear;
}

.items-list input:checked + .item-category .corner {
  transform: scaleY(-1);
}

.category-items {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 123, 20, 0.50);
  overflow: hidden;
}

.category-items tbody {
  display: block;
  height: 500px;
  overflow: auto;
}

.category-items thead {
  position: sticky;
  padding-right: 15px;
}


.category-items tr {
  display: flex;
}

.category-items thead {
  background: linear-gradient(90deg, rgba(163, 105, 17, 0.15) 0.86%, rgba(255, 222, 136, 0.15) 51.65%, rgba(244, 147, 71, 0.15) 99.48%);
}

.category-items tbody tr {
  background: linear-gradient(90deg, rgba(163, 105, 17, 0.07) 0.86%, rgba(255, 222, 136, 0.07) 51.65%, rgba(244, 147, 71, 0.07) 99.48%), rgba(20, 27, 37, 0.35);
}

.category-items :where(td, th) {
  flex-basis: 100%;
  text-align: left;
  padding: 1.2rem 2rem;
  border: 1px solid rgba(255, 123, 20, 0.50);
}

.category-items :where(td:last-of-type, th:last-of-type) {
  flex-basis: 24rem;
  min-width: 24rem
}

.category-items .price {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.category-items .counter {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-basis: 20rem;
  min-width: 20rem
}
.category-items .counter-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: .5rem;
  min-width: 3.2rem;
  min-height: 3.2rem;
  transition: all .35s;
}

.category-items .counter-btn:hover {
  filter: brightness(140%);
  background: rgba(255, 255, 255, 0.25);
}

.category-description {
  margin-bottom: 2rem;
}

.items-container {
  background-color: #141B25;
}

.item-name {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.items-list img {
  border-radius: .5rem;
}

.category-items input[type="number"] {
  max-width: 8rem;
  min-height: 3.2rem;
  padding: 0 .8rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #fff;
}

.lk-img-container {
  cursor: pointer;
  position: relative;
  width: min-content;
  margin: 1rem 0;
}

.lk-img-container .hover-image{
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.btn-save-basket {
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  color: #1BB976;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, rgba(10, 54, 37, 0.85) 0.08%, rgba(10, 54, 46, 0.85) 100.89%);
  transition: all .35s;
}

.btn-save-basket:hover {
  filter: brightness(140%);
}

.basket-header {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: start;
  padding: 3.2rem;
  background: #111521;
  border-radius: .5rem .5rem 0 0;
}

.basket-header .basket-title {
  font-size: 3.2rem;
  margin-bottom: 0.8rem;
}

.basket-header .basket-description {
  opacity: 0.8;
}

.basket-body {
  background: rgba(20, 27, 37, 0.75);
  padding: 3.2rem;
}

.basket-items {
  width: 100%;
  border: 1px solid rgba(255, 123, 20, 0.50);
  border-bottom: none;
  border-radius: .5rem;
  border-collapse: collapse;
}

.basket-items tr {
  display: flex;
  background: linear-gradient(90deg, rgba(163, 105, 17, 0.07) 0.86%, rgba(255, 222, 136, 0.07) 51.65%, rgba(244, 147, 71, 0.07) 99.48%), rgba(20, 27, 37, 0.35);
}

.basket-items td {
  padding: 1.2rem;
  font-size: 1.6rem;
  flex: 1 0 50%;
}

.basket-items td:first-of-type {
  border-right: 1px solid rgba(255, 123, 20, 0.50);
}

.basket-items tr {
  border-top: 1px solid rgba(255, 123, 20, 0.50);
}

.basket-items tr:first-of-type {
  border-top: none;
}

.total-item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.total-item-price .price img {
  display: inline-block;
}

.delete-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  line-height: 2.4rem;
  height: 2.4rem;
  border-radius: .5rem;
  background-color: #F02828;
  color: #fff;
}

.delete-item:hover {
  background-color: #f74545;
}

.label-title {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.total-price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 123, 20, 0.50);
  padding: 1.2rem;
  font-size: 2rem;
  background: linear-gradient(90deg, rgba(163, 105, 17, 0.15) 0.86%, rgba(255, 222, 136, 0.15) 51.65%, rgba(244, 147, 71, 0.15) 99.48%), rgba(20, 27, 37, 0.35);
  margin-bottom: 4rem;
}

.total-price-container .order-value{
  display: flex;
  align-items: center;
  font-size: 2rem;
  gap: .4rem
}

.approve-items {
  display: flex;
  align-items: start;
  gap: 3.2rem;
  justify-content: flex-end;
}

.approve-items .cta{
  min-width: 30rem;
}

.custom-selector-input {
  display: none;
}

.custom-selector {
  position: relative;
}

.custom-selector .basik-chose {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 24rem;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: .5rem;
  padding: 0 1.6rem;
  color: rgba(255, 255, 255 , .85);
  height: 4.6rem;
}

.custom-selector .corner {
  transition: all .35s;
}

.custom-selector.open .corner {
  transform: scale(-1);
}

.custom-selector .list {
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: all .35s linear;
  z-index: 10;
}

.list-characters.custom-selector .list {
  top: initial;
  bottom: calc(100% + .4rem);;
}

.custom-selector .list li{
  cursor: pointer;
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all .35s;
}

.custom-selector .list li:hover {
  background: rgba(255, 255, 255, 0.25);
}

.custom-selector .list li.active {
  background: rgba(255, 255, 255, 1);
  color: #121213;
}

.custom-selector .list li:first-of-type {
  border-radius: .5rem .5rem 0 0;
}

.custom-selector .list li:last-of-type {
  border-radius: 0 0 .5rem .5rem;
}

.custom-selector.open .list {
  max-height: inherit;
}


@media (max-width: 1023px) {
  .approve-items {
    flex-direction: column;
    align-items: stretch;
  }

  .choose-character {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .basket-header {
    flex-direction: column-reverse;
  }

  .btn-save-basket {
    width: 100%;
    justify-content: center;
  }

  .category-items thead {
    display: none;
  }

  .category-items tbody tr {
    padding: 1.6rem 0;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 123, 20, 0.50);
  }

  .category-items .counter, .category-items .price {
    flex-basis: auto;
  }

  .category-items :where(td, th) {
    border: none;
  }

  .category-items .price::before {
    content: 'За единицу: ';
  }

  .basket-items tr {
    display: flex;
    flex-direction: column;
  }

  .basket-items td:first-of-type {
    border: none;
  }

  .lk-img-container {
    display: none;
  }

  .shop-container {
    background-position: left top;
  }
}

.aside-menu-container {
  display: flex;
  width: 100%;
  padding: 4rem 1.6rem;
  flex-direction: column;
  border-radius: 0.5rem;
  background: radial-gradient(75.81% 55.71% at 116.62% 74.41%, rgba(52, 52, 192, 0.10) 0%, rgba(52, 52, 192, 0.00) 100%), radial-gradient(37.31% 53.64% at 0% 98.75%, rgba(125, 80, 255, 0.07) 0%, rgba(125, 80, 255, 0.00) 100%), linear-gradient(180deg, rgba(20, 27, 37, 0.50) 0%, rgba(20, 27, 37, 0.00) 50%, rgba(20, 27, 37, 0.50) 100%), rgba(20, 27, 37, 0.50);
}

.aside-menu-container ul {
  margin-bottom: 3.2rem;
}

.aside-menu-title {
  color: #d8dee9;
  font-family: Play;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

.aside-menu-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #d8dee9;
  padding: 1rem;
  margin-bottom: 1rem;
}

.aside-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
  border: 1px solid #525B6A;
  transition: all .35s;
}

.aside-menu-icon path{
  transition: all .35s;
}

.aside-menu-link.active path,
.aside-menu-link:hover path{
  fill: #fff;
  transition: all .35s;
}

.aside-menu-link:hover {
  color: #fff;
}

.aside-menu-link:hover .aside-menu-icon{
  border-color: #fff;
}

.aside-menu-link.active {
  color: #fff;
  border-radius: 1.2rem 0rem 0rem 1.2rem;
  background: linear-gradient(90deg, rgba(255, 135, 49, 0.25) 0.07%, rgba(20, 27, 37, 0.00) 99.91%);
}

.aside-menu-link.active .aside-menu-icon{
  background-color: #FF8731;
  border-color: #FF8731;;
}

.aside-menu-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

.aside-menu-group {
  margin-bottom: 0.8rem;
}

.aside-menu-parent {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #a8b0c4;
  padding: 1rem 1rem 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
}

.aside-menu-parent .aside-menu-icon {
  flex-shrink: 0;
}

.aside-menu-parent-title {
  line-height: 1.3;
}

.aside-menu-sub {
  list-style: none;
  margin: 0 0 0.4rem 0;
  padding: 0 0 0 0.4rem;
}

.aside-menu-sub li {
  margin: 0;
}

.aside-menu-link--sub {
  padding: 0.65rem 1rem;
  margin-bottom: 0.2rem;
  font-size: 1.45rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0.8rem;
}

.aside-menu-group--open .aside-menu-parent {
  color: #fff;
}

.flies-container {
  display: flex;
  gap: 3.2rem;
  justify-content: center;
  margin-top: 2rem;
}

.file {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  max-width: 48rem;
  position: relative;
  overflow: hidden;
  padding: 2px;
  border-radius: 0.5rem;
  background: rgba(25, 35, 50, 0.35);
  backdrop-filter: blur(5px);
}

.file-title {
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.35);
  font-family: Play;
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #FF8C39 0%, #F8A92D 55%, #F8522D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -2rem;
}

.file-description {
  padding: 0 2.4rem 2.4rem;
  opacity: 0.8;
}

.file .cta {
  margin-bottom: 2.4rem;
}
.jail-table {
  display: flex;
  overflow-x: auto;
  margin-bottom: 4rem;
}

.jail-table > ul {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.jail-table > ul > li:first-of-type {
  background: rgba(20, 27, 37, 0.75);
  font-size: 2rem;
}

.jail-table > ul > li {
  padding: 2rem 3.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
}

.search-guilty {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-guilty input[type="text"] {
  flex-grow: 1;
}

.search-guilty input[type="submit"] {
  flex-basis: 24rem;
}

@media (max-width: 1300px) {
  .jail-table > ul > li {
    display: flex;
    align-items: center;
    flex-basis: 8rem;
  }
}

@media (max-width: 1300px) {
  .search-guilty {
    flex-direction: column;
  }

  .search-guilty input[type="submit"] {
    flex-basis: auto;
  }
}
.lk-aside-container {
  flex-grow: 1;
}

.lk-aside-container .main-header {
  display: flex;
  padding: 2rem 3.2rem;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
  background: radial-gradient(122.56% 72.16% at 100% 120.83%, rgba(52, 52, 192, 0.10) 0%, rgba(52, 52, 192, 0.00) 100%), radial-gradient(62.05% 59.13% at 0% 98.75%, rgba(125, 80, 255, 0.07) 0%, rgba(125, 80, 255, 0.00) 100%), linear-gradient(180deg, rgba(20, 27, 37, 0.50) 0%, rgba(20, 27, 37, 0.00) 50%, rgba(20, 27, 37, 0.50) 100%), rgba(20, 27, 37, 0.50);
}

.lk-aside-container .main-header h1 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: normal;
}

.lk-aside-container .main-header .title-description {
  color: #d8dee9;
}

.lk-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 40rem;
}

.lk-form .cta,
.lk-form .f-form {
  width: 100%;
}

.custom-select {
  background: rgba(255, 255, 255, 0.05) url(../images/svg/arrow.svg) no-repeat right;
  background-position-x: calc(100% - 1.6rem);
  font-size: 1.6rem;
  padding: 1.2rem;
  color: #fff;
  height: 4.6rem;
}

.custom-select-inner {
  display: none;
}

.referal-img {
  opacity: 0.35;
  border-radius: .5rem;
  max-width: 100%;
}

.referal-container {
  display: flex;
  align-items: flex-end;
  gap: 3.2rem;
  margin-bottom: 2rem;
}

.referal-container .count-referals {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
  border-radius: 0.5rem;
  background: rgba(10, 54, 37, 0.85);
  padding: 0.8rem 1.5rem 0.8rem 1rem;
  opacity: 1;
}

.referal-container .f-form.input {
  margin-bottom: 0;
  flex-grow: 1;
}

.number-referals {
  background-color: #fff;
  border-radius: 0.4rem;
  background: #116455;
  padding: 0.8rem;
  color: #1FE390;
  text-align: center;
  font-weight: 700;
  line-height: normal;
}

.copy-referal {
  background: none;
  padding: .8rem;
  cursor: pointer;
  position: absolute;
  right: 1.6rem;
  bottom: .8rem;
}

.copy-referal:hover path {
  fill: #fff
}

.link-copied {
  position: absolute;
  left: 90%;
  bottom: 4rem;
  white-space: nowrap;
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.75);
  color: #1d1c1c;
  font-size: 1.4rem;
  opacity: 0;
  transition: all .35s;
}

.link-copied.show {
  opacity: 1;
}
.offline, .online {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100%;
  margin-right: 1rem;
  background-color: #F33239;
}

.online {
  background-color: #1FE390;
}

.return {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  height: 3.2rem;
  line-height: 3.2rem;
  border-radius: .5rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  padding: 0 1.2rem;
  background-color: #3434C0;
  transition: all .35s;
}

.return:hover {
  filter: brightness(130%);
}

.time {
  margin-bottom: 3.2em;
}

.green {
  color: #1BB976;
}

@media (max-width: 640px) {
  .lk header .logo img {
    margin-left: 0;
  }
}
.menu-container {
  display: flex;
  justify-content: space-between;
  padding: .8rem 2rem;
  background: radial-gradient(circle at 100%, rgba(169, 85, 66, 0.15), rgba(20, 27, 37, 0.75));
  border-radius: 5px;;
  backdrop-filter: blur(5px);
  align-items: center;
  margin: 0 auto 4rem;
  max-width: 164rem;
}

.menu {
  display: flex;
}

.menu-item{
  padding: 0 2.4rem;
  border-right: 1px solid rgba(217, 217, 217, 0.10);
}

.menu-item:first-of-type {
  padding-left: 0;
}

.menu-item:last-of-type {
  padding-right: 0;
  border: none;
}

.menu-item a, .mobile-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #F6D6CB;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 3rem;
  text-transform: uppercase;
  transition: all .35s;
  letter-spacing: .075rem;
}

.menu-item:hover a{
  color: #FF7910;
}

.menu-item path {
  transition: all .35s;
} 

.menu-item:hover path {
  fill: #FF7910 
}

@media (max-width: 1680px) {
  .menu-container {
    margin: 0 2rem 4rem;
  }
}

@media (max-width: 1366px) {
  .menu-item{
    padding: 0 1.2rem;
  }
}

@media (max-width: 1279px) {
  
  .menu-container {
    padding: 2rem;
    align-items: flex-start;
  }

  .menu {
    flex-wrap: wrap;
    gap: 1.6rem;
  }

  .menu-item {
    flex: 1 0 30%;
    padding: 0;
    border: none;
  }

  .start-game {
    margin-top: -1rem;
  }
}

@media (max-width: 920px) {
  .menu-item {
    flex: 1 0 40%;
  }
}

@media (max-width: 640px) {
  .menu-container {
    flex-direction: column;
    gap: 3.2rem;
    align-items: center;
  }

  .language-login {
    flex-wrap: wrap;
    gap: 1.6rem;
  }

  .menu {
    gap: 1rem 0;
  }

  .menu-container {
    position: fixed;
    display: none;
    bottom: 7.2rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin: 0;
  }

  .menu-container.open {
    display: flex;
  }

  .menu {
    flex-direction: column;
  }

  .menu-item a {
    padding: .4rem;
  }

  .ofiicial {
    margin-left: 8rem;
  }
}
.payment-container {
  padding: 4rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background: radial-gradient(104.34% 69.44% at 110.86% 64.27%, rgba(52, 52, 192, 0.10) 0%, rgba(52, 52, 192, 0.00) 100%), radial-gradient(96.44% 61.84% at 1.71% 40.06%, rgba(125, 80, 255, 0.07) 0%, rgba(125, 80, 255, 0.00) 100%), rgba(20, 27, 37, 0.75);
}

.payment-title {
  color: #FFF;
  font-size: 2.4rem;
}

.payment-description {
  color: #1BB976;
  font-size: 1.4rem;
  margin-bottom: 3.2rem;
}

.form-check-input {

}
.payment {
  display: flex;
  gap: 3.2rem;
}
.payment div:where(.choose-payment, .payment-amount) {
  display: flex;
  padding: 1.6rem;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1 0 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.result {
  display: flex;
  padding: 0.6rem 2.5rem 0.6rem 0.6rem;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 0.5rem;
  background: rgba(20, 27, 37, 0.75);
}
.result.bonus {
  padding: .6rem;
}

.result .convertion {
  display: flex;
  height: 4rem;
  padding: 1rem 2rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.05);
  gap: .25rem;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .result.bonus .convertion {
    font-size: 1.3rem;
    width: 100%;
    justify-content: left;
  }
}

.result .total {
  color: rgba(255, 255, 255, 0.85);
  font-size: 2.4rem;
  font-weight: 700;
}

.choose-payment input[type="radio"] {
  display: none;
}

.choose-payment .payment-label {
  cursor: pointer;
  position: relative;
  display: flex;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  background:  rgba(20, 27, 37, 0.50);
}

.choose-payment .payment-name {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.choose-payment .payment-name .payment-card-brand-img {
  display: block;
  height: 3.2rem;
  width: auto;
  max-width: 12.9rem;
  object-fit: contain;
  flex-shrink: 0;
}

.choose-payment .payment-name .payment-card-brand-img--mir {
  max-width: 12.9rem;
}

.store-rf-landing .payment-description {
  margin-bottom: 1.6rem;
}

.store-rf-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.store-rf-method {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.6rem 2rem;
  border-radius: 0.5rem;
  background: rgba(20, 27, 37, 0.5);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}

.store-rf-method:hover {
  background: rgba(255, 255, 255, 0.08);
}

.store-rf-method__name {
  font-size: 1.8rem;
  font-weight: 700;
}

.store-rf-method__hint {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.75;
}

.choose-payment .payment-name::after,
.choose-payment .payment-name::before {
  content: '';
  display: block;
  border-radius: 50%;
}

.choose-payment .payment-name::before {
  min-width: 1.6rem;
  min-height: 1.6rem;
  border: 2px solid #FF8731;
}

.choose-payment .form-check-input:checked + .payment-label .payment-name::after{
  position: absolute;
  top: calc(50% - 4px);
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #FF8731;
}

.choose-payment .payment-name .bonus {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.8rem;
  font-weight: 700;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

#server-name, .custom-select-design {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100%;
  background: #3434C0 url('../images/svg/arrow.svg') no-repeat right;
  background-position-x: calc(100% - 1.6rem);
  font-size: 1.6rem;
  padding: 1.2rem;
  border: 1px solid #3434C0;
  color: #fff;
  border-radius: 0.5rem;
  outline: none;
}

body .custom-select-design {
  padding-right: 40px !important;
}

.payment-table {
  border-radius: 0.5rem;
  background: rgba(20, 27, 37, 0.50);
  margin-bottom: 2rem;
  overflow-x: auto
}

.payment-table ul {
  display: flex;
}

.payment-table li {
  display: flex;
  align-items: center;
  min-width: 20rem;
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1 0 20rem;
  border-bottom: 1px solid #1A1F25;
}

.table-header li{
  font-size: 2rem;
  background: rgba(20, 27, 37, 0.95);
}

.title-history {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.payment-container > p {
  margin-bottom: 2rem;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .payment {
    flex-direction: column;
  }

  .payment-container {
    padding: 1.6rem;
  }
}


@media (max-width: 480px) {
  .choose-payment .payment-name {
    font-size: 0;
  }

  .referal-container {
    align-items: stretch;
    flex-direction: column;
    gap: 1.2rem;
  }
}
.register, .login {
  max-width: 48rem;
  margin: 2rem auto;
}

.f-form.input {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 1.2rem;
}


.f-form.input input + .form-info{
  max-height: 0;
  overflow: hidden;
  transition: all .35s;
}

.f-form.input input:focus + .form-info {
  max-height: 10rem;
}

.f-form label {
  font-size: 1.4rem;
  opacity: .65;
}

.form-info {
  font-size: 1.4rem;
  line-height: normal;
}

.register input[type="submit"],
.login input[type="submit"] {
  width: 100%;
}

.recaptcha {
  margin: 2rem 0;;
}

.register a {
  color: #FF8731;
  translate: all .35s;
}

.register a:hover {
  color: #fa9d5b
}

.show-pass {
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 4.4rem;
}

.show-pass path {
  transition: all .35s;
}

.show-pass:hover path {
  fill: #fff
}

.show-pass.active path {
  fill: #FF8731;
}

.show-pass.active:hover path {
  fill: #fa9d5b
}
.rules-list {
  list-style: none;
  counter-reset: rule;
}

.rules-list > li {
  counter-increment: rule;
  font-size: 2rem;
}

.rules-list > li:before {
  content: counters(rule, ".") ". ";
}

.rules-list > li > ol {
  counter-reset: subrule;
  padding: 1rem 0 2rem 2rem;
}

.rules-list > li > ol > li {
  counter-increment: subrule;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.rules-list > li > ol > li:before {
  content: counter(rule) "." counter(subrule) " ";
}

.rules-list .rules-punish {
  color: #ff8d2c;
}

.widgets {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 38.4rem;
  width: 100%;
}
.archetypes-container {
  display: flex;
  max-width: 38.4rem;
  padding: 2rem 1.6rem;
  flex-direction: column;
  gap: 2rem;
  border-radius: 0.5rem;
  background: url(../images/archetypes-blood.webp) right top no-repeat rgba(20, 27, 37, 0.75);
  backdrop-filter: blur(5px);
}

.archetypes-title-container {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.15);
}

.archetypes-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  font-weight: 700;
}

.slider-archetypes {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.archetypes-pagination {
  position: absolute;
  top: 50%;
  left: 1.6rem;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 3.2rem);
  transform: translateY(-50%);
  z-index: 100;
}

.arrow {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 2.4rem;
  height: 2.4rem;
}

.arrow rect {
  transition: all .35s
}

.arrow:hover rect {
  fill-opacity: .5;
}

.archetypes-dots {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(3.5px);
  z-index: 100;
}

.dot {
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: all .35s;
}

.dot.active {
  background-color: #fff;
}

.arhetypes-items {
  display: flex;
}

.arhetype-item {
  position: relative;
  max-width: 100%;
  opacity: 0;
  transition: all 1.5s;
}

.arhetype-item.active {
  opacity: 1;
}

.arherype-type-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
}

.arherype-type {
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  white-space: nowrap;
  padding: .8rem 1.2rem;
  background: rgba(0, 0, 0, 0.25);
}

.arherype-type-container::before,
.arherype-type-container::after {
  content: '';
  display: block;
  height: 28px;
  width: 28px;
  border: 20px solid transparent; 
  z-index: -1;
}

.arherype-type-container::before {
  border-right: 20px solid rgba(0, 0, 0, 0.25);
}

.arherype-type-container::after {
  border-left: 20px solid rgba(0, 0, 0, 0.25);
}
@media (max-width: 640px) {
  .archetypes-container {
    max-width: 100%;
  }
}
footer.container {
  position: relative;
  display: flex;
  font-size: 1.6rem;
  flex-direction: column;
  align-items: center;
  margin-top: 8rem;
}

footer .bg-blur {
  position: absolute;
  top: calc(100% - 10rem);
  left: 0;
  width: 100%;
  height: 20rem;
  border-radius: 164rem;
  background: linear-gradient(180deg, #513010 0%, #A76823 100%);
  filter: blur(200px);
  z-index: -1;
}

.footer-logo {
  margin-bottom: -2rem;
}

.name-comany {
  color: #FFF;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.35);
  font-family: "Libre Baskerville";
  font-size: 3.6rem;
  line-height: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  gap:1rem;
  margin: 6rem auto;
  max-width: 102.4rem;
  width: 100%;
}

.footer-menu a{
  color: rgba(255, 255, 255, 0.75);
  transition: all .35s;
}

.footer-menu a:hover {
  color: #FF8731;
}

.copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
}

.terms-service {
  color: rgba(255, 255, 255, 0.85);
  text-decoration-line: underline;
}


@media (max-width: 768px) {
  .footer-menu {
    max-width: 320px;
    flex-wrap: wrap;
    gap: 1.2rem 6rem;
}

  .footer-menu li {
    flex: 1 0 40%;
  }

  footer .bg-blur {
    position: absolute;
    top: calc(100% - 70rem);
    left: 0;
    width: 100%;
    height: 80rem;
    border-radius: 164rem;
    background: linear-gradient(180deg, #513010 0%, #A76823 100%);
    filter: blur(250px);
    z-index: -1;
}
}

.forum-container {
  display: flex;
  padding: 2rem 1.6rem;
  flex-direction: column;
  gap: 2rem;
  border-radius: 0.5rem;
  background: url(../images/forum-blood-top-right.webp) right top no-repeat, url(../images/forum-blood-bottom-left.webp) left bottom no-repeat rgba(20, 27, 37, 0.75);
  backdrop-filter: blur(5px);
}

.forum-title-container {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.15);
}

.forum-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  font-weight: 700;
}

.date-updated {
  color: #00A3FF;
  font-size: 1.4rem;
}

.forum-item {
  display: flex;
  padding: 1rem;
  align-items: center;
  gap: 1.2rem;
  border-radius: 0.5rem;
  background: rgba(25, 35, 50, 0.65);
  transition: all .35s;
}

.forum-item:hover {
  background-color: rgba(49, 61, 92, 0.55);;
}

.post-info {
  flex-grow: 1;
}

.post-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 0.6rem;
}

.publisher-info {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #919BA8;
  font-size: 1.4rem;
}

.publisher {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding-right: 0.5rem;
  border-right: 1px solid #383D46;
}
header {
  display: flex;
  justify-content: space-between;
  max-width: 164rem;
  margin: 3.2rem auto 8rem;
}
.logo {
  color: #fff;
  transition: all .5s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-info {
  position: relative;
  left: -4rem;
  display: flex;
  align-items: flex-start;
}

.logo-info .info{
  margin-top: 6.4rem;
  max-width: 56rem
}

.main-title {
  color: #FFF;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.35);
  font-family: "Libre Baskerville";
  line-height: 5.2rem;
  font-size: 4.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.main-description {
  margin-bottom: 4rem;
}

.starting-game {
  display: flex;
  align-items: center;
  gap: 3rem
}

.new-server {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35);
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.15);
  font-family: Philosopher;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FABE9C 18.18%, #FDA879 86.36%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.socials {
  display: flex;
  gap: 1rem;
}

.language-login {
  display: flex;
  gap: 1rem;
}

.index .language-login {
  margin-top: 8rem;
}

.inner .language-login {
  align-items: center;
}

.inner header {
  margin-bottom: 2rem;
  margin-top: 0;
}

.language, .cta-login, .social-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  min-height: 4rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  background: rgba(19, 25, 34, 0.50);
  backdrop-filter: blur(5px);
  transition: all .35s;
}

.language:hover, .cta-login:hover, .social-icon:hover {
  background: rgba(19, 25, 34, 0.90);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-oficial {
  text-transform: uppercase;
  line-height: normal;
  margin-bottom: -0.4rem;
}

@media (max-width: 1780px) {
  header {
    margin: 3.2rem 2rem 8rem;
  }
}

@media (max-width: 1279px) {
  header .logo .logo-description{
    display: none;
  }
  .index header {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  header .logo .logo-description{
    display: flex;
    flex-direction: column;
  }
  header {
    position: relative;
    flex-direction: column;
    margin-bottom: 3rem;
  }

  header::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: -4rem;
    width: calc(100% + 4rem);
    height: 100%;
    background: linear-gradient(to bottom, #000, transparent);
    z-index: -100;
  }

  .main-title {
    font-size: 2.8rem;
  }

  header .logo img{
    width: 12rem;
    margin-left: -4rem;
  }

  .logo-info > img {
    margin-left: -3.2rem;
  }

  .logo-info {
    flex-direction: column;
    left: 0;
  }
  
  .starting-game {
    flex-direction: column;
  }

  .main-description {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .logo-info .info {
    margin-top: -8.8rem;
  }

  .logo-oficial, .main-title {
    margin-left: 8rem;
  }

  .index .language-login {
    margin-top: 4rem;
  }

  .inner .logo-oficial, .inner .main-title {
    margin-left: 0;
    margin-bottom: 0;
  }

  .inner .main-title {
    line-height: normal;
  }

  .lk header::before {
    display: none;
  }
}
.project-news {
  padding: 4rem;
  border-radius: 0.5rem;
  background: url(../images/news-blood-bottom.webp) 80px bottom no-repeat, url(../images/news-blood-right.webp) right 64px no-repeat, radial-gradient(9.03% 2.82% at 2.82% 63.58%, rgba(68, 59, 120, 0.25) 0%, rgba(68, 59, 120, 0.17) 100%), radial-gradient(11.14% 3.27% at 96.73% 35.25%, rgba(69, 83, 214, 0.15) 0%, rgba(69, 83, 214, 0.10) 100%), radial-gradient(21.33% 15.51% at 90.37% 12.16%, rgba(255, 101, 101, 0.10) 0%, rgba(255, 101, 101, 0.00) 100%), linear-gradient(180deg, rgba(20, 27, 37, 0.38) 0%, rgba(20, 27, 37, 0.00) 48.5%, rgba(20, 27, 37, 0.38) 100%), linear-gradient(0deg, rgba(20, 27, 37, 0.50) 0%, rgba(20, 27, 37, 0.50) 100%), url(../images/news-bg.webp) 50% / cover no-repeat;
  backdrop-filter: blur(5px);
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.news-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  padding: 2px;
}

.news-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to bottom, rgba(255, 123, 20, .5), rgba(255, 255, 255, 0));
  z-index: -1;
}

.project-news-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.project-news-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: normal;
}

.img-container {
  position: relative;
}

.news-item .img-container {
  width: 100%;
  height: 16.5rem;
  margin: 0;
}

.news-item .img-container .news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-news .img-container, 
.secondary-news .img-container {
  max-width: 100%;
  height: 25.6rem;
  overflow: hidden;
}

.img-container .news-info {
  position: absolute;
  left: 2.4rem;
  bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.news-item {
  display: flex;
  flex-direction: column;
  flex-basis: calc((100% - 4rem) / 3);
}

.main-news {
  flex-grow: 2
}

.secondary-news {
  flex-basis: 44%;
}

.news-img-title {
  position: relative;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FF8D39 0%, #F8A92D 50%, #F85A2D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news-img-time {
  display: flex;
  gap: .4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  line-height: normal;
}

.news-content {
  padding: 2.4rem;
  background: rgba(25, 35, 50, 0.35);
  backdrop-filter: blur(5px);
  flex-grow: 1;
}

.news-content .news-title {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 1.2rem;
  transition: all .35s;
}


.main-news .news-content .news-title,
.secondary-news .news-content .news-title {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.news-content .news-title:hover {
  color: #FF7910;
}

.news-content .news-description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: rgba(193, 188, 186, 0.85);
  margin-bottom: 1.6rem;
}

.news-content .news-date {
  display: inline-block;
  color: #919BA8;
  font-size: 1.4rem;
  border-radius: .3rem;
  padding: .8rem 1rem; 
  background: #262C38;
}

.girl-post {
  position: absolute;
  bottom: 1rem;
  right: -7.2rem;
  filter: drop-shadow( 0px 50px 160px rgba(63, 122, 216, 0.50));
  z-index: -2;
}

.girl-post:hover {
  animation: girl-post-animation 2s linear infinite;
}

@keyframes girl-post-animation {
  0% {
    bottom: 1rem;
  }
  50% {
    bottom: 6rem;
  }
  100% {
    bottom: rem;
  }
}

@media (max-width: 640px) {
  .project-news {
    padding: 3.2rem 1.6rem;
    margin: 0 -2rem;
  }
}
.socialnetworks-container {
  display: flex;
  max-width: 38.4rem;
  padding: 2rem 1.6rem;
  flex-direction: column;
  gap: 2rem;
  border-radius: 0.5rem;
  background: rgba(20, 27, 37, 0.75);
  backdrop-filter: blur(5px);
}

.socialnetworks-title-container {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.15);
}

.socialnetworks-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.socialnetwork-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-basis: calc(50% - 1rem);
  padding: 1.2rem;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  line-height: normal;
  border-radius: 0.5rem;
  transition: all .35s;
}

.socialnetwork-link.vk {
  background: url(../images/vk-bg.webp) no-repeat center center;
}

.socialnetwork-link.discord {
  background: url(../images/discord-bg.webp) no-repeat center center;
}

.socialnetwork-link.youtube {
  background: url(../images/youtube-bg.webp) no-repeat center center;
}

.socialnetwork-link.telegram {
  background: url(../images/telegram-bg.webp) no-repeat center center;
}

.socialnetwork-link:hover {
  filter:brightness(120%)
}
.statistics {
  position: relative;
  padding: 3.2rem;
  border-radius: 0.5rem;
  background: url(../images/statistic-blood.webp) top left no-repeat, url(../images/statistic-blood-bottom.webp) right calc(100% - 20px) no-repeat,  radial-gradient(37.31% 53.64% at 0% 98.75%, rgba(125, 80, 255, 0.07) 0%, rgba(125, 80, 255, 0.00) 100%), linear-gradient(180deg, rgba(20, 27, 37, 0.50) 0%, rgba(20, 27, 37, 0.00) 50%, rgba(20, 27, 37, 0.50) 100%), linear-gradient(0deg, rgba(20, 27, 37, 0.50) 0%, rgba(20, 27, 37, 0.50) 100%), url(../images/news-bg.webp) 50% / cover no-repeat;
}

.statistics-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 2.8rem;
  line-height: normal;
  margin-bottom: 2rem;
}

.top-rankings-container {
  display: grid;
  overflow-x: auto;
}

.top-rankings {
  display: flex;
  padding: 4rem;
  gap: 2.4rem;
  justify-content: space-between;
  border-radius: 0.5rem;
  background: rgba(20, 27, 37, 0.75);
  backdrop-filter: blur(5px);
  margin-bottom: 2rem;
}

.top-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 24rem;
}

.top-avatar {
  border: 1px solid #C96315;
  box-shadow: 0px 4px 15px 0px rgba(203, 97, 22, 0.15);
  border-radius: 100%;
  padding: 2px;
}

.top-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
}

.top-type {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.8rem;
  line-height: normal;
}

.top-name {
  padding: .4rem 1rem;
  color: #18110B;
  font-size: 1.4rem;
  line-height: normal;
  border-radius: 0.3rem;
}

.top-character .top-name {
  background: #FF8731;
}

.top-killer .top-name {
  background: #0FFB6B;;
}

.top-hunter .top-name {
  background: #00A3FF;
}

.top-collector .top-name {
  background: #F33239;
}

.top-points {
  color: #919BA8;
  font-size: 1.4rem;
  line-height: normal;
}

.top-rankings-tabs {
  display: flex;
  padding: 2rem 3.2rem;
  gap: 6rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  background: rgba(20, 27, 37, 0.50);
  backdrop-filter: blur(5px);
  margin-bottom: 1rem;
}

.top-tab {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2.4rem;
  border-top: 2px solid rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 0.3rem;
  background: rgba(47, 58, 75, 0.75);
  backdrop-filter: blur(5px);
  transition: all .35s;
  white-space: nowrap;
}

.top-tab.active{
  cursor: default;
  border-top: 2px solid #D68A50;
  border-bottom: 1px solid #D68A50;
  background: url('../images/top-button-blood-top.webp') 10% top no-repeat,
  radial-gradient(56.76% 100% at 50% 0%, rgba(255, 144, 57, 0.75) 0%, rgba(255, 144, 57, 0.00) 100%), linear-gradient(180deg, rgba(255, 121, 16, 0.75) 0%, rgba(255, 59, 16, 0.75) 100%);
  box-shadow: 0px 4px 15px 0px rgba(220, 80, 43, 0.25);
}

.top-tab span {
  position: relative;
  z-index: 10;
}

.statistics-table {
  display: flex;
}

.table ul > li {
  font-size: 1.6rem;
  padding: 1.6rem;
}

.table ul {
  flex-grow: 1;
}

.table ul>li:nth-child(odd) {
  background: rgba(20, 27, 37, 0.35);
  backdrop-filter: blur(5px);
}

.table ul > li:first-of-type {
  font-size: 1.8rem;
}

.table.statistics-table ul>li:nth-child(2) {
  background: rgba(228, 144, 18, 0.12);
}

.table.statistics-table ul > li:nth-child(3) {
  background: rgba(149, 138, 178, 0.12);
}
.table.statistics-table ul > li:nth-child(4) {
  background: rgba(184, 111, 43, 0.07);
}

.gold-player, .silver-player, .bronze-player {
  display: flex;
  gap: 0.4rem;
  width: fit-content;
  padding: .4rem 1rem;
  margin: -.4rem 0;
  border-radius: 0.5rem;
  color: rgba(0, 0, 0, 0.75);
  box-shadow: 0px 4px 15px 0px rgba(203, 97, 22, 0.15);
}

.gold-player {
  background: linear-gradient(170deg, #C38D29 7.45%, #FFE375 35.51%, #DC952D 95.16%);
}

.silver-player {
  background: linear-gradient(170deg, #C5C5C5 7.45%, #FFF9DF 35.51%, #7B7B7B 95.16%);
}

.bronze-player {
  background: linear-gradient(170deg, #C36A29 7.45%, #DEA857 35.51%, #9A4D22 95.16%);
}

.girl-container{
  position: absolute;
  top: -12rem;
  left: 30rem;
  padding-right: 16rem;
  filter: drop-shadow( 0px 50px 160px rgba(63, 122, 216, 0.5));
}

.girl-container .statistics-girl {
  position: relative;
  left: 0;
  transition: all .5s;
}

.girl-container:hover .statistics-girl {
  left: 10rem;
}

@media (max-width: 640px) {
  .statistics {
    padding: 3.2rem 1.6rem;
    margin: 0 -2rem;
  }
}
.video-stream-container {
  display: flex;
  gap: 4.4rem;
  padding: 3rem;
  border-radius: 0.5rem;
  background: url(../images/stream-blood.webp) top right no-repeat, url(../images/stream-blood-bottom.webp) bottom left no-repeat,radial-gradient(27.18% 40.45% at 81.47% 20.06%, rgba(255, 166, 101, 0.10) 0%, rgba(255, 166, 101, 0.00) 100%), radial-gradient(33.71% 43.69% at 29.8% 112.94%, rgba(69, 83, 214, 0.10) 0%, rgba(69, 83, 214, 0.00) 100%), rgba(20, 27, 37, 0.75);
  backdrop-filter: blur(5px);
}

.video-stream {
  display: block;
  position: relative;
  border-radius: .4rem;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255, 123, 21, 0.50);
  transition: all .35s;
}


.video-stream:hover {
  filter: brightness(110%);
}

.video-stream:hover .cta-play-hover{
  animation: cta-play-animation 1.5s linear infinite;
}

.video-img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame {
  position: absolute;
  left: -1rem;
  top: -1rem;
  z-index: 10;
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  object-fit: contain;
  object-position: center;
}

.streams-container {
  display: flex;
  gap: 4.4rem;
}

@media (max-width: 1440px) {
  .inner .streamers .video-stream {
    flex-basis: calc((100% - (2 * 4rem)) / 3)
  }
}


@media (max-width: 1024px) {
  .inner .streamers .video-stream {
    flex-basis: calc((100% -  4rem) / 2)
  }
}

@media (max-width: 640px) {
  .streams-container {
    flex-direction: column;
  }
  .inner .streamers .video-stream {
    flex-basis: 100%;
  }
}
body {
  background: #121213;
  font-family: "Play", sans-serif;
  overflow-x: clip;
  color: #fff;
  font-size: 1.6rem;
  max-width: 100vw;
  overflow-x: hidden;
}

body.index {
  background: linear-gradient(180deg, rgba(1, 1, 3, 0.15) 0%, rgba(0, 0, 0, 0.00) 100%), url(../images/top-main-bg.webp) 50% top no-repeat #000 
}

body.inner, .lk {
  background: linear-gradient(180deg,rgba(1,1,3,.15),transparent),url(../images/top-main-bg.webp) 50% top no-repeat #000
}

body.inner .menu-container {
  background: rgba(20, 27, 37, 0.75);
}

body.lk.store {
  background: #000 url(../images/lk-store.webp) 50% top no-repeat 
}

body.lk.claim {
  background: #000 url(../images/lk-claim.webp) 50% top no-repeat 
}

.contaier-aside {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
  max-width: 164rem;
  margin: auto;
}

.lk .contaier-aside {
  margin-top: 4rem;
}

.title-icon {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: normal;
}

main {
  position: relative;
  z-index: 100;
  max-width: calc(100% - 41.6rem);
}

.contaier-aside main {
  display: flex;
  flex-direction: column;
  gap: 3.2rem
}

.lk .contaier-aside main {
  gap: 0
}

.container {
  max-width: 164rem;
  margin: auto;
}

.container.content {
  padding: 3.2rem;
  border-radius: 0.5rem;
  background: radial-gradient(10% 40% at 2% 50%, rgba(68, 59, 120, 0.25) 0%, rgba(68, 59, 120, 0.00) 100%), radial-gradient(20% 50% at 96% 35%, rgba(69, 83, 214, 0.15) 0%, rgba(69, 83, 214, 0.00) 100%), radial-gradient(20% 40% at 90% 12%, rgba(255, 101, 101, 0.10) 0%, rgba(255, 101, 101, 0.00) 100%), linear-gradient(180deg, rgba(20, 27, 37, 0.38) 0%, rgba(20, 27, 37, 0.00) 48.5%, rgba(20, 27, 37, 0.38) 100%), linear-gradient(0deg, rgba(20, 27, 37, 0.50) 0%, rgba(20, 27, 37, 0.50) 100%);
  backdrop-filter: blur(5px);
}

.inner-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

input, .cta {
  padding: 1.2rem 2rem;
  font-size: 1.6rem;
  min-height: 5.2rem;
  border-radius: 0.5rem;
}

input:disabled {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

input[type="text"], input[type="password"], input[type="email"], input[type="number"] {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  color: #fff;
  height: 4.6rem;
}

input[type="submit"], .cta {
  cursor: pointer;
  border-top: 2px solid #D68A50;
  border-bottom: 1px solid #D68A50;
  background: url('../images/top-button-blood-top.webp') 10% top no-repeat,
  radial-gradient(56.76% 100% at 50% 0%, rgba(255, 144, 57, 0.75) 0%, rgba(255, 144, 57, 0.00) 100%), linear-gradient(180deg, rgba(255, 121, 16, 0.75) 0%, rgba(255, 59, 16, 0.75) 100%);
  box-shadow: 0px 4px 15px 0px rgba(220, 80, 43, 0.25);
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  transition: all .35s;
}

input[type="submit"]:hover, .cta:hover {
  filter: brightness(115%);
}

textarea {
  padding: 1.2rem 2rem;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  resize: vertical;
  min-height: 14rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.upload-file input{
  display: none;
}

.upload-file .upload-file-design {
  cursor: pointer;
  display: flex;
  padding: 1.5rem 2rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  background: rgba(59, 67, 80, 0.75);
  color: #fff;
  opacity: 1;
  font-size: 1.8rem;
}

.paginator {
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
  margin-top: 6.4rem;
}

.paginator a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  color: #fff;
  transition: all .5s;
}

.paginator a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.paginator a.active {
  background: linear-gradient(180deg, rgba(255, 121, 16, 0.75) 0%, rgba(255, 59, 16, 0.75) 100%);
}

.g-forw::after, .g-back::after {
  content: '';
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-bottom-left-radius: .5rem;
  width: 1.2rem;
  height: 1.2rem;
}

.g-back::after {
  rotate: 45deg;
}

.g-forw::after {
  rotate: -135deg;
}

.checkbox {
  margin-bottom: 1rem;
}

.checkbox input {
  display: none;
}

.checkbox label {
  cursor: pointer;
  position: relative;
  display: flex;
  font-size: 1.6rem;
  align-items: center;
  gap: 0.8rem;
}

.checkbox label::before {
  content: '';
  border: 2px solid #fff;
  border-radius: .5rem;
  min-width: 2.4rem;
  min-height: 2.4rem;
  transition: all .35s;
}

.checkbox label::after {
  position: absolute;
  top: 6px;
  left: 6px;
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  border-radius: .25rem;
  background: #FF8731;
  opacity: 0;
  transition: all .35s
}

.checkbox input:checked + label::before  {
  border-color: #FF8731;
} 

.checkbox input:checked + label::after {
  opacity: 1;
}

.lk {
  padding-bottom: 8rem;
}

.lk-header {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 1.6rem 1.6rem 1.6rem 8rem;
  border-radius: 0.5rem;
  background: rgba(20, 27, 37, 0.80);
  margin-top: 2rem;
}

.lk-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  background: none;
  backdrop-filter: none;
}

.lk-header .logo {
  position: absolute;
  left: -6rem;
  top: -3rem;
}

.lk-link {
  display: flex;
  gap: .8rem;
  align-items: center;
  color: #fff;
  padding: 0.8rem 2rem;
  line-height: normal;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.lk-link svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

.lk-link.shop {
  background: #3434C0;
}

.balance-container {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.balance-container .menu-element-top{
  background: rgba(0, 0, 0, 0.25);
}

.balance-container .menu-element-top.coins {
  background: rgba(10, 54, 46, 0.55);
  padding: 0.8rem 2rem;
  line-height: normal;
  color: #1BB976;
  gap: 0.4rem;
}

.balance-container .menu-element-top.coins strong {
  color: #1FE390
}

.about-content {
  max-width: 99.2rem;
  margin: auto;
  margin-bottom: 4rem;
}

.about-content p {
  margin-bottom: 2rem;
}

.about-content .inner-title{
  background: linear-gradient(90deg, #FF8C39 0%, #F8A92D 55%, #F8522D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.links {
  margin: 4rem 0;
  display: flex;
  gap: 8rem;
  justify-content: space-evenly;
}

.links .cta {
  text-align: center;
  min-width: 30rem;
}

.streamers {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}

.streamers .video-stream {
  flex-basis: calc((100% - (3 * 4rem)) / 4);
}

.confidential {
  text-align: center;
  opacity: 0.85;
}

.confidential a{
  color: #fff;
  transition: all .35s;
}

.confidential a:hover {
  color: #FF8731;
}

.mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
  background: rgba(20, 27, 37, 0.95);
  width: 100%;
  z-index: 1000;
}

.form-group {
  width: 100%;
}

.message-container {
  position: fixed;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  top: 1rem;
  right: 1rem;
  display: flex;
  padding: 2rem;
  border-radius: .5rem;
  font-weight: bold;
  z-index: 10000;
  background: linear-gradient(90deg, rgba(10, 54, 37, 0.85) 0.08%, rgba(10, 54, 46, 0.85) 100.89%);
  color: #1BB976;
}

.message-container.success {
  background: rgba(10, 54, 46, 1);
  color: #1BB976;
}

.message-container.error {
  background: #ee3d3d;
  color: #3a1313;
}

.message-container .close {
  cursor: pointer;
  position: relative;
  min-width: 3.2rem;
  min-height: 3.2rem;
  background: none;
  background: rgba(0, 0, 0, 0.25);
  border-radius: .5rem;
}

.message-container .close::after,
.message-container .close::before {
  position: absolute;
  content: '';
  display: block;
  width: 1.6rem;
  height: .4rem;
  background: #1BB976;
  border-radius: .5rem;
}

.message-container.success .close::after,
.message-container.success .close::before {
  background: #1BB976;
}

.message-container.error .close::after,
.message-container.error  .close::before {
  background: #3a1313;
}

.message-container .close::before {
  top: 14px;
  left: 8px;
  transform: rotate(-45deg);
}

.message-container .close::after {
  top: 14px;
  left: 8px;
  transform: rotate(45deg);
}

.radio-group {
  display: flex;
  gap: 3.2rem;
  flex-wrap: wrap;
  margin-top: -.4rem;
  margin-bottom: 2rem;
}

.radio-group input {
  display: none;
}

.radio-group label {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 1.6rem;
}

.radio-group label::before,
.radio-group label::after {
  content: '';
  display: block;
  border: 2px solid #FF8731;
  border-radius: 100%;
}

.radio-group label::before {
  width: 2.4rem;
  height: 2.4rem;
}

.radio-group label::after {
  display: none;
  position: absolute;
  left: .5rem;
  background-color: #FF8731;
  width: 1.4rem;
  height: 1.4rem;
} 

.radio-group input:checked + label::after {
  display: block;
}

.data-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

@media (max-width: 1680px) {
  .container, .contaier-aside {
    margin: 0 2rem;
  }

  .lk-menu, .balance-container {
    gap: 2.4rem;
  }

  .lk-header {
    margin-top: 2rem;
    margin-left: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 1239px) {
  .contaier-aside {
    flex-direction: column;
  }

  .contaier-aside main {
    max-width: initial;
  }

  .widgets {
    flex-wrap: wrap;
    flex-direction: row;
    max-width: initial;
    justify-content: space-evenly;
  }

  .socialnetworks-container {
    flex: 1 0 100%;
    order: 3;
  }
  .lk .widgets :where(.confidential, .socialnetworks-container){
    display: none;
  }
    
  .lk .widgets {
    max-width: initial;
  }

  .aside-menu-container ul {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .aside-menu-container ul li {
    flex-basis: calc(33% - 2.4rem);
  }

  .aside-menu-link {
    margin-bottom: 0;
  }
}


@media (max-width: 1024px) {
  .news-container {
    flex-direction: column;
  }

  .girl-container {
    pointer-events: none;
    padding-right: 0;
  }

  .news-container .news-item:last-of-type,
  .news-container .news-item:nth-child(4) {
    display: none;
  }

  .logo-info > img{
    max-width: 12rem;
  }
}

@media (max-width: 768px) {
  p, a {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .checkbox label {
    align-items: flex-start;
  }

  .about-content .inner-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .video-stream-container {
    flex-direction: column;
  }

  .girl-container, .girl-post {
    display: none;
  }

  .mobile-menu {
    display: flex;
    padding: 1.2rem 2rem;
  }

  .burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    width: 4.8rem;
    height: 4.8rem;
    border-top: 2px solid #D68A50;
    border-bottom: 1px solid #D68A50;
    background: url('../images/top-button-blood-top.webp') 10% top no-repeat,
    radial-gradient(56.76% 100% at 50% 0%, rgba(255, 144, 57, 0.75) 0%, rgba(255, 144, 57, 0.00) 100%), linear-gradient(180deg, rgba(255, 121, 16, 0.75) 0%, rgba(255, 59, 16, 0.75) 100%);
    border-radius: .5rem;
  }

  .top-sword, .bottom-sword {
    transform-origin: center center;
    transition: all .35s linear;
  }

  .burger.open .top-sword {
    transform: rotate(-45deg) translate(-2px, 3px) scale(1.2);
  }

  .burger.open .bottom-sword {
    transform: rotate(45deg) translate(-5px, -6px) scale(1.2);
  }

  .links, .flies-container {
    flex-direction: column;
    gap: 2.4rem;
  }

  .links .cta {
    min-width: 100%;
  }

  .inner-title {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }

  .lk-menu {
    display: none;
    padding: 2rem 1.6rem;
    background: rgba(20, 27, 37, 0.95);
    backdrop-filter: blur(5px);
    gap: 1.2rem
  }

  .menu-container {
    background: rgba(20, 27, 37, 0.95);
  }

  .balance-container {
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-left: -2rem;
  }

  .balance-container :where(.coins) {
    order: 4
  }
  .lk-header {
    margin-left: 2rem;
  }

  .lk-header .logo {
    position: absolute;
    left: -4.4rem;
    top: -1.6rem;
  }

  .aside-menu-container ul li {
    flex-basis: calc(50% - 2rem);
    font-size: 1.4rem;
  }

  .new-server {
    white-space: initial;
    max-width: 24rem;
    text-align: center;
  }
}

.lk-aside-container a {
  color: #FF8731
}

.lk-aside-container a:hover {
  text-decoration: underline;
}

.warning-message {
  padding: 2rem;
  background-color: rgba(255, 135, 49, 0.5);
  border-radius: .5rem;
  margin: 2rem 0;
  line-height: normal;
}

.chatmessage-container {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: .5rem;
  margin-bottom: 2rem;
}

.chatmessage-container.staff {
  background-color: rgba(255, 135, 49, 0.15);
}

.chatmessage-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 1.2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.4rem;
}