* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
  list-style: none;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: Google Sans;
}

body {
  background: #0e1119;
  -webkit-user-select: none; /* Для Safari и Chrome */
  -moz-user-select: none; /* Для Firefox */
  -ms-user-select: none; /* Для IE/Edge */
  user-select: none;
  touch-action: manipulation;
  min-height: 100vh;
  overflow-y: scroll; 
}

body.no-scroll {
	overflow: hidden;
	touch-action: none;
	position: fixed;
	width: 100%;
}

.chat-body {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch; 
}

.icon {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  use {
    width: 100%;
    height: 100%;
  }
}
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #0e1119;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0px 27px 32px;
  width: calc(100dvw - 234px);
  &.chat-open {
    width: 100%;
  }
}
.header-left {
  display: flex;
  align-items: center;
  gap: 76px;
}
.social-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-link {
  width: 48px;
  height: 48px;
  color: #383e4f;
  border-radius: 6px;
  background: #1a1e29;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  &:hover {
    background: #1a1e29;
    color: #535a6d;
  }
  &:active {
    background: #151822;
    color: #383e4f;
  }
}

.search-input {
  border-radius: 6px;
  padding: 10px 16px 10px 16px;
  background: #171b25;
  width: 303px;
  display: flex;
  align-items: center;
  gap: 8px;
  input {
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    background: transparent;
    color: #f9fbff;
    &::placeholder {
      color: #383e4f;
    }
  }
}
.header-search-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sign-in-btn {
  padding: 11px 25px;
  border-radius: 8px;
  background: #1a1e29;
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 145.2%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  &:hover {
    background: #212533;
    color: #fff;
  }
  &:active {
    background: #1d212e;
    color: #ffffff99;
  }
}

.sign-up-btn {
  padding: 11px 25px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 145.2%;
  border-radius: 8px;
  background: linear-gradient(178.44deg, #ff8820 11.251%, #fc641d 113.601%);
  cursor: pointer;
  &:hover {
    background: linear-gradient(178.44deg, #ff7920 12.431%, #e55816 112.022%);
  }
  &:active {
    background: linear-gradient(
      178.44deg,
      #e17c2e 12.431%,
      rgb(190, 80, 30) 112.022%
    );
  }
}
.sidebar {
  padding: 40px 1px 47px 32px;
  border-radius: 20px 20px 0px 0px;
  background: #151822;
  height: calc(100dvh - 99px);
  display: flex;
  flex-direction: column;
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex-grow: 1;
}
.sidebar-group {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 127%;
  color: #383e4f;
  transition: all 0.3s ease-in-out;
  .icon {
    color: #383e4f;
  }
  &:hover {
    color: #fff;
    .icon {
      filter: drop-shadow(0 0 0 #ff8820);
      color: #fc641d;
      transition: all 0.3s ease;
    }
  }
  &:active {
    color: #f9fbff;
    .icon {
      filter: drop-shadow(0 0 0 #ff8820);
      color: #fc641d;
      transition: all 0.3s ease;
    }
  }
  &.active {
    color: #f9fbff;
    position: relative;
    &::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 4px;
      border-radius: 11px;
      background: linear-gradient(178.44deg, #ff8820 -3.458%, #fc641d 133.286%);
    }
    .icon {
      filter: drop-shadow(0 0 0 #ff8820);
      color: #fc641d;
      transition: all 0.3s ease;
    }
  }
}

.new-slots-wrapper,
.popular-slots-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  a {
    width: 100%;
    height: 100%;
  }
}
.slot-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: linear-gradient(145deg, #1b1e25, #20242c);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;

  .hover-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(21, 24, 34, 0.85);
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;

    h3 {
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      margin-bottom: 4px;
    }

    p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 15px;
      font-weight: 500;
      text-align: center;
    }

    .central-block {
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

    .hover-block {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.3s ease;
  }

  &:hover img {
    transform: scale(1);
  }
}

.slot-card:hover .hover-block {
  transform: scale(1);
}

.slot-card,
.slot-card * {
  box-sizing: border-box;
}

.original-games a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #ffffff00 0%,
    #ffffff4d 50%,
    #ffffff00 100%
  );
  transition: none;
}

.original-games a:hover::after {
  left: 100%;
  transition: left 0.5s ease-out;
}
.play-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: linear-gradient(178.44deg, #ff8820 -1.776%, #fc641d 131.035%);
  cursor: pointer;
  img {
    width: 28px;
  }
}
.demo-btn {
  border-radius: 7px 7px 0px 0px;
  background: #f6f6f638;
  color: #ffffff62;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  padding: 10px 31px 9px 30px;
  cursor: pointer;
}
.sidebar-footer {
  a,
  p {
    color: #383e4f;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    transition: all 0.3s ease-in-out;
  }
  a {
    display: inline-block;
    margin-top: 12px;
    &:hover {
      color: #fff;
    }
  }
}
.sidebar-footer-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }
}
.promo-timer {
  border-radius: 9px;
  background: linear-gradient(178.44deg, #ff882033 15.657%, #fc641d33 107.705%);
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 123%;
  }
  div {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}
.time {
  width: 34px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: linear-gradient(178.44deg, #ff882052 -2.242%, #fc641d52 131.658%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 127%;
}
.timer-separator {
  background: linear-gradient(178.44deg, #ff882052, #fc641d52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  font-weight: 500;
  line-height: 127%;
}
.chat-wrapper {
  border-radius: 20px 20px 0px 0px;
  background: #151822;
  padding: 36px 32px 47px 32px;
}
.chat-header {
  width: auto;
  display: flex;
  align-items: center;
  padding-right: 0;
  justify-content: left;
  gap: 20px;
  .online-count {
    background: #183a28;
    padding: 4.5px 9.5px;
    border-radius: 36px;
    p {
      color: #39bf4c;
    }
  }
}
.chat-box {
  .chat-header {
    display: none;
  }
}
.chat-open {
  .chat-header {
    justify-content: space-between;
    padding-right: 32px;
    width: 363px;
  }
}
.chat-box {
  display: none;
  position: fixed;
  z-index: 2;
  top: 99px;
  max-width: 363px;
  right: -363px;
  width: 100%;
  z-index: 11;
  transition: all 0.3s ease-in-out;
  &.chat-open {
    display: block;
    right: 0;
  }
}
.sidebar {
  position: fixed;
  z-index: 2;
  top: 99px;
  left: 0;
  max-width: 234px;
  width: 100%;
}
.chat-body {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: calc(100dvh - 356px);
  padding-right: 13px;
  overflow-x: hidden;
  overflow-y: auto;
  &::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }
  &::-webkit-scrollbar-thumb {
    background: #1a1e29;
  }
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.chat-item {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.message-body {
  border-radius: 9px;
  background: #1a1e29;
  padding: 12px 20px 15px 20px;
  width: 100%;
}
.chat-username {
  font-size: 18px;
  font-weight: 500;
  line-height: 145.2%;
  display: flex;
  gap: 6px;

  img {
    width: 13px;
  }

  &.simple-user {
    background: linear-gradient(180deg, #5797fe, #4083ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  &.role1 {
    background: linear-gradient(178.44deg, #ff8820, #fc641d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  &.role2 {
    background: linear-gradient(178.44deg, #20c997, #1abc9c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  &.role3 {
    background: linear-gradient(178.44deg, #ff416c, #ff4b2b); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  &.role4 {
    background: linear-gradient(178.44deg, #a64bf4, #8435dd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

.message-header {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.message-time {
  color: #383e4f;
  font-size: 16px;
  font-weight: 500;
  line-height: 145.2%;
}
.message-value {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 145.2%;
  overflow-wrap: anywhere;
}
.chat-input {
  padding: 20px;
  border-radius: 10px;
  background: #0e1119;
  display: flex;
  align-items: center;
  gap: 4px;
  button {
    cursor: pointer;
    background: transparent;
    color: #383e4f;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    height: 28px;
    svg {
      min-width: 28px;
      height: 28px;
    }
    &:hover {
      color: #535a6d;
    }
    &:active {
      color: #383e4f;
    }
  }

  input {
    background: transparent;
    color: #fff;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 145.2%;
    &::placeholder {
      color: #383e4f;
    }
  }
}
main {
  padding-top: 99px;
  padding-left: 256px;
  &.chat-open {
    padding-right: 363px;
  }
}
.container {
  width: calc(100dvw - 32px - 256px);
  max-width: 1259px;
  margin: 0 auto;
  &.chat-open {
    width: calc(100dvw - 363px - 32px - 256px - 31px);
  }
}
.promotion-banner {
  background-image: url("./assets/images/treasure-tg.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 49px 48px 59px 48px;
  border-radius: 15px;
  overflow: hidden;
  h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 143.2%;
  }
  p {
    color: #ffffff80;
    font-size: 18px;
    font-weight: 500;
    line-height: 143.2%;
    margin-top: 12px;
    margin-bottom: 28px;
  }
  button {
    padding: 14px 18px;
    color: #f9fbff;
    font-size: 18px;
    font-weight: 700;
    line-height: 131.2%;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(178.44deg, #ff8820 12.43%, #fc641d 112.023%);
    &:hover {
      background: linear-gradient(178.44deg, #ff7920 12.431%, #e55816 112.022%);
    }
    &:active {
      background: linear-gradient(178.44deg, #e17c2e 12.431%, #be501e 112.022%);
    }
  }
}
.promotion-banner-wrapper {
  .swiper-pagination-bullet {
    border-radius: 8px;
    background: linear-gradient(
      178.44deg,
      #ff882033 -1.776%,
      #fc641d33 131.035%
    );
  }
  .swiper-pagination-bullet-active {
    width: 28px;
    background: linear-gradient(178.44deg, #ff8820 12.199%, #fc641d 112.333%);
  }
}
.slot-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
  }
  a {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
  }
}
.popular-slots {
  margin-top: 36px;
}
.new-slots {
  margin-top: 32px;
}
.original-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 32px;
  a {
    height: 130px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
}
.coinlip-original {
  background-image: url(./assets/images/coinflip-bg.png);
}
.dice-original {
  background-image: url(./assets/images/dice-bg.png);
}
.crash-original {
  background-image: url(./assets/images/crash-bg.png);
}
.mines-original {
  background-image: url(./assets/images/mines-bg.png);
}
.promotions-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  &::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  &::-webkit-scrollbar-thumb {
    background: #1a1e29;
    border-radius: 8px;
  }
  .promotion-card {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    min-width: 256px;
    &::after {
      content: "";
      position: absolute;
      width: 401.4px;
      height: 100px;
      left: 29.13px;
      top: 118.46px;
      transform: rotate(-3.26deg);
    }
    &:nth-child(1) {
      &::after {
        filter: blur(140px);
        background: linear-gradient(
          178.44deg,
          #ff8820 15.49%,
          #fc641d 107.929%
        );
        opacity: 0.5;
      }
      span {
        background: linear-gradient(
          178.44deg,
          #ff882033 -1.777%,
          #fc641d33 131.035%
        );
      }
    }
    &:nth-child(2) {
      &::after {
        filter: blur(140px);
        background: linear-gradient(180deg, #51e165, #3ec451 100%);
        opacity: 0.4;
      }
      span {
        background: #3ec45133;
      }
    }
    &:nth-child(3) {
      &::after {
        filter: blur(140px);
        background: linear-gradient(180deg, #5797fe, #4083ed 100%);
        opacity: 0.4;
      }
      span {
        background: #4482e533;
      }
    }
    &:nth-child(4) {
      &::after {
        filter: blur(140px);
        background: linear-gradient(
          180deg,
          rgb(242, 109, 252),
          rgb(220, 80, 229) 100%
        );
        opacity: 0.4;
      }
      span {
        background: #d72fe333;
      }
    }
  }
}
.promotion-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  span {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 123%;
  }
}
.tournament-banner {
  padding: 38px 48px 41px 48px;
  background-image: url(./assets/images/tournament-banner.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 36px;
  border-radius: 10px;
  h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 131.2%;
    margin-bottom: 32px;
  }
}
.btn-primary {
  padding: 14px 18px;
  border-radius: 9px;
  background: linear-gradient(178.44deg, #ff8820 12.43%, #fc641d 112.023%);
  color: #f9fbff;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  &:hover {
    background: linear-gradient(178.44deg, #ff7920 12.431%, #e55816 112.022%);
  }
  &:active {
    background: linear-gradient(178.44deg, #e17c2e 12.431%, #be501e 112.022%);
  }
}
.online-count {
  display: flex;
  align-items: center;
  gap: 8px;
  .online-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(1px);
    background: #165d2c;
    border-radius: 50%;
    content: "";
    width: 15px;
    height: 15px;
    animation: pulse 1.5s infinite;
  }
  .online-inner {
    width: 7px;
    height: 7px;
    background: #1ebe3c;
    border-radius: 50%;
    content: "";
    animation: pulse-inner 1.5s infinite;
  }
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    filter: blur(1px);
  }
  50% {
    transform: scale(1.2);
    filter: blur(0);
  }
}
.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 131.2%;
  }
}
.game-input {
  border-radius: 8px;
  background: #12151e;
  width: 100%;
  height: 56px;
  overflow: hidden;
  padding: 0 28px;
  position: relative;
  img {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
  }
  input {
    width: 100%;
    height: 100%;
    background: transparent;
    color: #f9fbff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
  }
}
.game-options {
  border-radius: 18px;
  background: #151822;
  width: 38.44%;
  padding: 38px 42px 35px 42px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.input-setter-btns {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.btn-secondary {
  border-radius: 7px;
  background: #1a1e29;
  height: 48px;
  width: 100%;
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  &:hover {
    color: #ffffff;
    background: #212533;
  }
  &:active {
    color: #ffffff99;
    background: #1d212e;
  }
}
.sub-page-title {
  margin-top: 64px;
  margin-bottom: 40px;
}
.game-input-secondary {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  background: #1a1e29;
  width: 100%;
  height: 56px;
  padding-left: 28px;
  padding-right: 16px;
  input {
    width: 100%;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    &::placeholder {
      color: #383e4f;
    }
  }
}
.game-input-secondary-btns {
  display: flex;
  align-items: center;
  gap: 9.25px;
}
.game-input-secondary-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  &:hover {
    background: linear-gradient(178.44deg, #ff8820, #fc641d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  &:active {
    background: linear-gradient(178.44deg, #ff8820, #fc641d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    &::before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      border-radius: 7px;
      background: linear-gradient(
        178.44deg,
        #ff882026 -1.776%,
        #fc641d26 131.034%
      );
    }
  }
  &.active {
    background: linear-gradient(178.44deg, #ff8820, #fc641d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    &::before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      border-radius: 7px;
      background: linear-gradient(
        178.44deg,
        #ff882026 -1.776%,
        #fc641d26 131.034%
      );
    }
  }
}
.game-options {
  .btn-primary {
    width: 100%;
  }
}
.coef-list {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  &::after {
    content: "";
    height: 100%;
    width: 112px;
    position: absolute;
    right: -2px;
    top: 0;
    z-index: 3;
    background: linear-gradient(90.57deg, #13162000 0.094%, #151822 87.26%);
  }
}
.coef-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  background: #1a1e29;
  min-width: 133px;
  height: 56px;
  span {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
  }
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
  }
}
.mines-game {
  display: flex;
}
.mines-fields {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.game-field-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mines-field {
  border-radius: 12px;
  background: #1a1e29;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    display: none;
  }
  &.bomb {
    background: #3550ff33;
    .bomb {
      width: 40%;
      display: block;
    }
  }
  &.light {
    background: linear-gradient(
      178.44deg,
      #ff882033 -1.776%,
      #fc641d33 131.035%
    );
    .light {
      width: 40%;
      display: block;
    }
  }
}
.mines-game {
  border-radius: 18px;
  background: #151822;
  padding: 38px 48px 35px 48px;
  display: flex;
  justify-content: center;
  gap: 23px;
  width: 59.97%;
}
.mines-game-wrapper {
  position: relative;
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.game-win-popup {
  position: absolute;
  left: 0;
  top: 0;
  padding: 32px 0 36px 0;
  z-index: 3;
  border-radius: 18px;
  backdrop-filter: blur(30px);
  background: #151822e0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 143.2%;
  }
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    margin-top: 6px;
    margin-bottom: 24px;
  }
  span {
    border-radius: 8px;
    background: linear-gradient(
      178.44deg,
      rgba(255, 136, 32, 0.2) 8.95%,
      rgba(252, 100, 29, 0.2) 116.681%
    );
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 10px 18px;
    span {
      padding: 0;
      background: linear-gradient(178.44deg, #ff8820, #fc641d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 18px;
      font-weight: 500;
      line-height: 145.2%;
    }
  }
  button {
    border-radius: 8px;
    background: #1a1e29;
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 145.2%;
    padding: 11px 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    &:hover {
      color: #fff;
    }
  }
  div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
  }
}
.mines-amounts-wrapper {
  border-radius: 18px;
  width: 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 27px 20px 45px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  p {
    color: #f9fbff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
  }
}
.lightning-amount-wrapper {
  background-image: url("./assets/images/lightning-bg.jpeg");
}
.bombs-amount-wrapper {
  background-image: url("./assets/images/bombs-bg.jpeg");
}
.mines-amounts-image-shadow {
  filter: blur(2px);
  background: #131720;
  width: 28px;
  height: 7px;
  display: block;
  animation: shadow-scale 3s ease-in-out infinite;
}
.mines-amounts-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-grow: 1;
  img {
    animation: float 3s ease-in-out infinite;
    transform-origin: center bottom;
  }
}
.lightning-amount,
.bombs-amount {
  color: #f9fbff;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shadow-scale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
.btn-third {
  border-radius: 7px;
  height: 48px;
  width: 100%;
  background: #3dac4d;
  font-size: 18px;
  font-weight: 500;
  line-height: 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #fff;
  &:hover {
    background: #259e36;
  }
  &:active {
    background: #1e832c;
  }
}

.last-game-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.last-game-item {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 19px 46px 19px 32px;
  border-radius: 12px;
  background: #12151e;
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: center;
    &:nth-child(1) {
      justify-self: start;
    }
    &:nth-child(5) {
      justify-self: end;
    }
  }
}
.last-game-table-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.last-game-nav-btn {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  &:hover {
    color: #fff;
  }
  &.active {
    color: #fff;
    border-radius: 6px;
    &::before {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 50%;
      height: 4px;
      border-radius: 6px;
      background: linear-gradient(180deg, #ff8820 -3.494%, #fc641d 133.334%);
    }
  }
}
.dice-game {
  padding: 42px 0 32px 0;
  width: 59.97%;
  border-radius: 18px;
  background: #151822;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dice-range-wrapper {
  width: 569.14px;
}
.dice-value-part {
  border-radius: 11px;
  background: #1a1e29;
  width: 128px;
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 72px;
  font-weight: 500;
}
.dice-value-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  &.higher {
    .dice-value-part {
      background: linear-gradient(178.44deg, #ff8820, #fc641d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      overflow: hidden;
      &::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          178.44deg,
          rgba(255, 136, 32, 0.2) -2.265%,
          rgba(252, 100, 29, 0.2) 131.689%
        );
      }
    }
    .value-separator {
      background: linear-gradient(178.44deg, #ff8820, #fc641d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
  }
  &.less {
    .dice-value-part {
      background: #183a28;
      color: #3dac4d;
    }
    .value-separator {
      color: #3dac4d;
    }
  }
}
.value-separator {
  font-size: 72px;
  color: #fff;
}
.possible-winnings {
  margin-top: 38px;
  margin-bottom: 2px;
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  span {
    display: flex;
    align-items: center;
    background: linear-gradient(178.44deg, #ff8820, #fc641d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    gap: 8px;
  }
}
.level-bars-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.bet-sides {
  display: flex;
  align-items: center;
  gap: 16px;
  button {
    width: 281px;
    height: 56px;
  }
}
.bet-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
  }
}
.dice-game-wrapper {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}
.agreement-block-title {
  color: #f9fbff;
  font-size: 18px;
  font-weight: 500;
  line-height: 127%;
}
.agreement-block-text {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 162%;
  margin-top: 16px;
  margin-bottom: 20px;
}
.slots-header {
  display: flex;
  gap: 56px;
  margin-top: 36px;
  height: 56px;
  .search-input {
    width: 100%;
  }
}

.type-change-wrapper {
  display: flex;
  border-radius: 8px;
  background: #151822;
}
.profile-btn {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  img {
    width: 48px;
    height: 48px;
    object-fit: cover;
  }
}
.profile-header-wrapper {
  display: flex;
  gap: 8px;
  .chat-open-btn {
    display: none;
  }
}
.profile-setting-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #151822;
  color: #383e4f;
  cursor: pointer;
  &:hover {
    background: #1a1e29;
    color: #535a6d;
  }
  &:active {
    background: #151822;
    color: #383e4f;
  }
}
.type-btn {
  padding: 11px 16px;
  background: transparent;
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  &:hover {
    background: #171a25;
  }
  &.active {
    color: #fff;
    background: linear-gradient(178.44deg, #ff8820 -0.685%, #fc641d 129.574%);
  }
}
.header-right {
  display: flex;
  align-items: center;
  gap: 31px;
}
.user-agreement-text {
  color: #383e4f;
  font-size: 14px;
  font-weight: 500;
  line-height: 144.2%;
  margin-bottom: 20px;
  a {
    background: linear-gradient(178.44deg, #ff8820, #fc641d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 500;
    line-height: 131.2%;
  }
}
.chat-btn {
  background: #151822;
  color: #383e4f;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  &:hover {
    background: #1a1e29;
    color: #535a6d;
  }
  &:active {
    background: #151822;
    color: #383e4f;
  }
}
.chat-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slots-header-right {
  display: flex;
  gap: 16px;
}
.provider-select {
  border-radius: 8px;
  background: #151822;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  min-width: 197px;
  cursor: pointer;
  input {
    cursor: pointer;
    width: 100%;
    height: 100%;
    background: transparent;
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
  }
}
.all-slots-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 22px;
}
.open-slot-btns {
  display: flex;
  gap: 8px;
}
.open-slot-btn {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #151822;
  color: #383e4f;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  &:hover {
    background: #1a1e29;
    color: #535a6d;
  }
  &:active {
    background: #151822;
    color: #383e4f;
  }
}
.open-slot-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.demo-checker {
  border-radius: 6px;
  background: #151822;
  padding: 12px 14px 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
  }
}
.checker {
  border-radius: 53.05px;
  background: #1c212f;
  width: 40px;
  height: 22px;
  display: inline-block;
  padding: 3px 4px;
  &.active {
    .checker-inner {
      transform: translateX(18px);
    }
  }
}
.checker-inner {
  border-radius: 36px;
  background: linear-gradient(178.44deg, #ff8820 -1.777%, #fc641d 131.035%);
  width: 14px;
  height: 14px;
  display: inline-block;
}
.game-place {
  width: 100%;
  height: 865px;
  background: #151822;
  border-radius: 10px;
}

.progress-container {
  text-align: center;
}

.progress-circle {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 8px solid transparent;
  background-color: #2c2c2c;
}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #ff6a00 0%,
    #ff6a00 var(--progress),
    #2c2c2c var(--progress)
  );
  transition: background 0.5s ease;
}

.level {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #fff;
}

.level-text {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
}
.chart-wrapper {
  width: 170px;
  position: relative;
}
.chart-display-level {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(178.44deg, #ff8820, #fc641d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 27.65px;
  font-weight: 700;
  line-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  &::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
      178.44deg,
      #ff882033 -1.777%,
      #fc641d33 131.035%
    );
  }
}
.level-progress {
  border-radius: 10px;
  background: #151822;
  width: 365px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 38px 0;
  grid-row: span 2;
  p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
  }
}
.referal-input-label {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  margin-bottom: 23px;
}
.referal-link-wrapper {
  padding: 32px;
  border-radius: 10px;
  background: #151822;
}
.referal-input-wrapper {
  display: flex;
  gap: 16px;
}
.referal-input {
  display: flex;
  height: 56px;
  background: #12151e;
  padding: 0 24px;
  width: 100%;
  input {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    background: transparent;
    width: 100%;
    padding-right: 10px;
  }
}
.referal-copy-btn {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  &:hover {
    color: #fff;
  }
}
.referals-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.send-btn {
  min-width: 300px;
}
.referal-stat {
  background: #151822;
  padding: 22px 28px 18px 28px;
  border-radius: 10px;
  span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 131.2%;
    span {
      background: linear-gradient(178.44deg, #ff8820, #fc641d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
  }
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    margin-top: 12px;
  }
}
.providers-list {
  display: flex;
  max-height: 0;
  overflow: hidden;
  gap: 16px;
  margin-top: 20px;
  padding-bottom: 0;
  transition: all 0.3s ease-in-out;
  &.opened {
    overflow-x: auto;
    padding-bottom: 10px;
    max-height: 102px;
  }
  &::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  &::-webkit-scrollbar-thumb {
    background: #1a1e29;
    border-radius: 8px;
  }
}
.provider-card {
  border-radius: 9px;
  background: #151822;
  height: 92px;
  min-width: 197px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.referal-info-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.referal-link-wrapper {
  grid-column: span 3;
}
.referal-table-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
}
.referal-table-count {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
}
.referal-table-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.referal-table-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 12px;
  background: #12151e;
  padding: 21px 81px 21px 32px;
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    &:nth-child(4),
    &:nth-child(3) {
      justify-self: center;
    }
    &:nth-child(5) {
      justify-self: end;
    }
  }
}
.referal-table-wrapper {
  margin-bottom: 44px;
  margin-top: 73px;
}
.referal-table-item {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  padding: 17px 34px 17px 32px;
  border-radius: 12px;
  background: #151822;
  div {
    display: flex;
    align-items: center;
    gap: 12px;
    img {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      object-fit: cover;
    }
  }
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    &:nth-child(3) {
      border-radius: 6px;
      background: rgb(24, 58, 40);
      color: #39bf4c;
      font-size: 18px;
      font-weight: 500;
      line-height: 131.2%;
      justify-self: center;
      padding: 4px 10px 4px 12px;
      margin-left: -70px;
    }
    &:nth-child(4) {
      justify-self: center;
      margin-left: -18px;
    }
    &:nth-child(5) {
      justify-self: end;
      background: linear-gradient(178.44deg, #ff8820, #fc641d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 18px;
      font-weight: 500;
      line-height: 131.2%;
      display: flex;
      align-items: center;
      gap: 8px;
      position: relative;
      padding: 4px 9px;
      &::after {
        content: "";
        border-radius: 8px;
        background: linear-gradient(
          178.44deg,
          #ff882033 10.574%,
          #fc641d33 114.507%
        );
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
      }
    }
  }
}
.referal-table-body {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  gap: 12px;
}
.referal-table-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.referal-table-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #151822;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #383e4f;
  transition: all 0.3s ease-in-out;
  &:hover {
    background: #212533;
    color: #fff;
  }
  &:active {
    background: #1d212e;
    color: #ffffff99;
  }
  &:nth-child(2) {
    transform: rotate(180deg);
  }
}
.faq-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(178.44deg, #ff88201a -1.777%, #fc641d1a 131.035%);
}
.faq-wrapper {
  border-radius: 12px;
  background: #151822;
  padding: 14px 20px;
}
.faq-body {
  display: none;
  &.active {
    display: block;
  }
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 157%;
    margin-top: 16px;
  }
}
.faq-grid {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  div {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
.faq-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.drop-down-icon {
  transition: all 0.3s ease-in-out;
}
.rotated {
  transform: rotate(45deg);
}
.faq-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: left;
}
.profile-avatar-wrapper {
  padding: 34px 39px 35px 39px;
  border-radius: 12px;
  background: #151822;
  img {
    width: 100%;
    aspect-ratio: 1/1;
  }
  p {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
    border-radius: 11px;
    background: #1a1e29;
    margin-top: 32px;
  }
}
.profile-wrapper {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}
.modal-layout {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #07090dde;
  z-index: 1000;
}
.modal-wrapper {
  display: flex;
  height: 100%;
}
.wallet-modal {
  border-radius: 12px;
  background: #0e1119;
  padding: 24px 32px 36px 32px;
  width: 838px;
  display: none;
  .scroll-container {
    padding-right: 12px;
    max-height: calc(90dvh - 36px - 48px - 24px - 16px);
    overflow-y: auto;
    margin-top: 24px;
    &::-webkit-scrollbar {
      width: 4px;
      height: 4px;
    }
    &::-webkit-scrollbar-thumb {
      background: #1a1e29;
      border-radius: 8px;
    }
  }
}
.search-modal {
  display: none;
  width: 467px;
  border-radius: 10px;
  height: 720px;
  max-height: 90vh;
  background: #0e1119;
  border-radius: 10px;
  padding: 20px 24px 28px 24px;
  overflow: hidden;
  .scroll-container {
    padding-right: 4px;
    height: calc(90dvh - 75px - 48px - 24px - 80px);
    overflow-y: auto;
    &::-webkit-scrollbar {
      width: 4px;
      height: 4px;
    }
    &::-webkit-scrollbar-thumb {
      background: #1a1e29;
      border-radius: 8px;
    }
  }
  .search-input {
    width: 100%;
    display: flex;
    margin: 20px 0;
  }
}
.search-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 98px);
  gap: 12px 8px;
  .slot-card {
    width: 100%;
    height: 125px;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
.search-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 143.2%;
    letter-spacing: -1%;
  }
}
.wallet-payments-system-list {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wallet-wrapper {
  display: flex;
  gap: 40px;
}
.payment-system {
  display: flex;
  justify-content: space-between;
  border-radius: 9px;
  background: #1a1e29;
  padding: 17px 20px 16px 20px;
  h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
  }
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
  }
}
.payments-left {
  display: flex;
  gap: 12px;
}
.custom-input {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
  background: #12151e;
  width: 100%;
  height: 56px;
  padding-left: 20px;
  padding-right: 24px;
  input {
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    background: transparent;
    &::placeholder {
      color: #383e4f;
    }
  }
  .inner-label {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
  }
}
.login-modal {
  display: none;
  width: 819px;
  height: 649px;
  background: #0e1119;
  border-radius: 12px;
  overflow: hidden;
  max-height: 90dvh;
  .scroll-container {
    padding-right: 12px;
    height: 100%;
    max-height: calc(90dvh - 36px - 48px - 48px - 24px - 24px - 16px);
    overflow-y: auto;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    &::-webkit-scrollbar {
      width: 4px;
      height: 4px;
    }
    &::-webkit-scrollbar-thumb {
      background: #1a1e29;
      border-radius: 8px;
    }
  }
  .btn-primary {
    width: 100%;
  }
}

.register-modal {
  display: none;
  width: 819px;
  height: 649px;
  background: #0e1119;
  border-radius: 12px;
  overflow: hidden;
  max-height: 90dvh;
  .scroll-container {
    padding-right: 12px;
    height: 100%;
    max-height: calc(90dvh - 36px - 48px - 24px - 16px);
    overflow-y: auto;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    &::-webkit-scrollbar {
      width: 4px;
      height: 4px;
    }
    &::-webkit-scrollbar-thumb {
      background: #1a1e29;
      border-radius: 8px;
    }
  }
  .btn-primary {
    width: 100%;
  }
}
.auth-big-bg {
  width: 50%;
  background-image: url("./assets/images/auth-big-bg.png");
  background-size: cover;
  background-position: center;
}
.login-wrapper,
.register-wrapper {
  width: 50%;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.register-wrapper {
  .password-input {
    margin-bottom: 12px;
  }
}
.auth-wrapper {
  flex-grow: 1;
}
.email-input {
  margin-top: 12px;
}
.auth-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 131.2%;
  }
}

.eye-btn {
  background: transparent;
  color: #383e4f;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  &:hover {
    color: #fff;
  }
}
.and-text {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 145.2%;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 16px;
}
.auth-vk,
.auth-tg {
  border-radius: 8px;
  background: #1a1e29;
  padding: 10px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #383e4f;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  &:hover {
    color: #535a6d;
    background: #1a1e29;
  }
  &:active {
    color: #383e4f;
    background: #1a1e29;
  }
}
.go-to-register-btn,
.go-to-login-btn {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 145.2%;
  justify-self: center;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  &:hover {
    color: #383e4f;
  }
}
.auth-btns-wrapper {
  display: flex;
  gap: 12px;
}
.password-input {
  margin-top: 12px;
  margin-bottom: 28px;
}
.additional-btns {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  button {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    border-radius: 7px;
    background: #151822;
    height: 48px;
    width: 100%;
  }
}
.deposite-variant {
  width: 50%;
  display: none;
  flex-direction: column;
  .btn-primary {
    width: 100%;
    margin-top: 16px;
  }
}
.withdraw-variant {
  width: 50%;
  display: flex;
  flex-direction: column;
  .btn-primary {
    width: 100%;
    margin-top: 8px;
  }
}
.wallet-promo {
  margin-top: 24px;
}
.wallet-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  button {
    display: flex;
    align-items: center;
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    &:hover {
      color: #fff;
    }
    &.active {
      color: #fff;
    }
  }
}
.wallet-wrapper {
  display: none;
}
.transaction-select {
  position: relative;
  margin-top: 8px;
  margin-bottom: 20px;
}
.transaction-select-header {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}
.transaction-select-body {
  padding: 14px 15px 10px 15px;
  border-radius: 8px;
  background: #151822;
  position: absolute;
  top: 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  display: none;
}
.wallet-history-header {
  padding: 16px 77px 18px 21px;
  border-radius: 9px;
  background: #151822;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  p {
    color: #383e4f;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    &:nth-child(3) {
      justify-self: center;
    }
    &:nth-child(4) {
      justify-self: end;
    }
  }
}
.transaction-status {
  width: 85px;
  &.waiting {
    color: #383e4f;
  }
  &.success {
    color: #39bf4c;
  }
  &.canceled {
    color: #d64443;
  }
}
.wallet-history-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.wallet-history-item {
  padding: 18px 48px 16px 21px;
  border-radius: 9px;
  background: #1a1e29;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    &:nth-child(3) {
      justify-self: center;
    }
    &:nth-child(4) {
      justify-self: end;
    }
  }
}
.transaction-select-item {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  &:hover {
    color: #fff;
  }
}

.wallet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-modal-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #151822;
  color: #383e4f;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  &:hover {
    color: #535a6d;
    background: #1a1e29;
  }
}
.wallet-info-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  text-align: center;
  color: #383e4f;
  margin-top: 8px;
  span {
    color: #ffffff;
  }
  &.label-wallet {
    text-align: left;
    margin-top: 20px;
  }
}
.wrapper-variant {
  flex-grow: 1;
}
.profile-level-info {
  border-radius: 12px;
  background: #151822;
  padding: 32px 39px 34px 39px;
  margin-top: 20px;
  .btn-secondary {
    margin-top: 44px;
  }
}
.level-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
  }
}
.level-bar {
  width: 100%;
  height: 6px;
  border-radius: 20px;
  background: #1a1e29;
  margin-top: 17px;
}
.level-bar-progress {
  width: 30%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(178.44deg, #ff8820 46.136%, #fc641d 66.917%);
}
.level-icons-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}
.profile-sub {
  max-width: 303px;
  width: 100%;
}
.profile-main {
  border-radius: 12px;
  background: #151822;
  padding: 34px 40px;
  width: 100%;
}
.profile-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  button {
    color: #383e4f;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
  }
}
.profile-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  button {
    color: #383e4f;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    &:hover {
      color: #fff;
    }
    &.exit-btn {
      color: #d64443;
    }
    &.active {
      color: #fff;
    }
  }
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.bonus-tournament {
  grid-column: span 2;
  border-radius: 12px;
  background-image: url(./assets/images/tournament-bg.jpeg);
  background-size: cover;
  background-position: center;
  padding: 44px 44px 48px 44px;
  h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 131.2%;
  }
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 142.2%;
    opacity: 0.6;
    max-width: 442px;
    margin-top: 16px;
    margin-bottom: 50px;
  }
  .btn-primary {
    width: 334px;
  }
}
.bonus-promo {
  padding: 44px 34px 48px 34px;
  border-radius: 12px;
  background: #151822;
  h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 148.2%;
  }
}
.user-balance-value-wrapper {
  background: #151822;
  border-radius: 8px;
  display: flex;
  height: 48px;
  padding: 0 0 0 20px;
}
.user-balance-value {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  padding-right: 16px;
}
.wallet-open-btn {
  color: #39bf4c;
  font-size: 18px;
  font-weight: 500;
  line-height: 145.2%;
  width: 152px;
  height: 100%;
  border-radius: 8px;
  background: #183a28;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  &:hover {
    background: #1c422f;
  }
  &:active {
    background: #133121;
  }
}
.menu-modal {
  display: none;
  border-radius: 14px;
  background: #151822;
  padding: 12px 16px;
  width: 100%;
  height: 600px;
  max-height: 90dvh;
  .search-input {
    margin-top: 12px;
    margin-bottom: 12px;
    display: flex;
    width: 100%;
  }
}
.mobile-links-wrapper {
  overflow-y: auto;
  height: calc(90dvh - 124px);
}
.chat-rules-modal {
  width: 460px;
  display: none;
  border-radius: 12px;
  background: #0e1119;
  padding: 24px 28px 28px 28px;
  .btn-primary {
    width: 100%;
    margin-top: 36px;
  }
}

.chat-rules-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 143.2%;
  }
}
.chat-rules-text {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  margin-bottom: 16px;
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  .icon {
    width: 20px;
    height: 20px;
  }
  div {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  span {
    width: 36px;
    height: 36px;
    color: #fff;
    border-radius: 5px;
    background: linear-gradient(178.44deg, #ff8820 -1.776%, #fc641d 131.035%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 120.2%;
  }
  .close-modal-btn {
    background: #1a1e29;
  }
}
.promo-input {
  border-radius: 8px;
  background: #12151e;
  height: 56px;
  width: 100%;
  margin-top: 27px;
  margin-bottom: 20px;
  input {
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    background: transparent;
    color: #fff;
    height: 100%;
    height: 100%;
    padding: 0 25px;
    &::placeholder {
      color: #383e4f;
    }
  }
}
.vk-bonus,
.tg-bonus {
  border-radius: 12px;
  background: #151822;
  padding: 36px 37px 36px 38px;
  display: flex;
  flex-direction: column;
  h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 148.2%;
  }
  p {
    font-size: 18px;
    font-weight: 500;
    line-height: 148.2%;
    color: #383e4f;
    margin-top: 8px;
    margin-bottom: 32px;
    flex-grow: 1;
    span {
      background: linear-gradient(178.44deg, #ff8820, #fc641d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
  }
  button {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    width: 100%;
    height: 56px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
}
.tg-btn {
  background: linear-gradient(180deg, #5797fe, #4083ed 100%);
  position: relative;
  border-radius: 8px;
  z-index: 1;
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #3784ff, #1c6eef 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
  }
  &:hover::after {
    opacity: 1;
  }

  &:active::after {
    background: linear-gradient(180deg, #3572d4, #2e64b8 100%);
  }
}
.vk-btn {
  background: linear-gradient(180deg, #576dfe, #475dee 100%);
  position: relative;
  border-radius: 8px;
  z-index: 1;
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #455dfa, #364ee9 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
  }
  &:hover::after {
    opacity: 1;
  }

  &:active::after {
    background: linear-gradient(180deg, #455be9, #3749c0 100%);
  }
}
.tournament-card-wide {
  width: 100%;
  padding: 38px 44px 39px 44px;
  background-image: url(./assets/images/tournament-wide-bg.jpeg);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  margin: 40px 0;
  h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 131.2%;
  }
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 142.2%;
    opacity: 0.8;
    margin-top: 12px;
    max-width: 500px;
  }
}
.active-tournaments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 267px;
}
.active-tournament-card {
  border-radius: 10px;
  background: #0e1119;
  padding: 20px 20px 24px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 134.2%;
    text-align: center;
    text-transform: uppercase;
  }
  .card-gradient {
    width: 614.19px;
    height: 136.31px;
    transform: rotate(-42.6deg);
    filter: blur(94px);
    opacity: 0.6;
    position: absolute;
    z-index: -1;
    top: 310.64px;
    left: 80.05px;
  }
  .btn-primary {
    width: 100%;
  }
  .time {
    border-radius: 5px;
    background: #151822;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 127%;
  }
  .timer-separator {
    color: #383e4f;
    -webkit-text-fill-color: initial;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }
}
.tournament-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tournament-result-label {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 11px;
}
.profile-statistic-item {
  padding: 18px 28px 16px 28px;
  border-radius: 9px;
  background: #1a1e29;
}
.profile-statistic-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 127%;
  }
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
    margin-top: 8px;
  }
}
.profile-statistic-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 127%;
  margin-bottom: 16px;
  margin-top: 40px;
}
.tournament-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(178.44deg, #ff8820, #fc641d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 500;
  line-height: 131.2%;
  margin-bottom: 46px;
  img {
    width: 19px;
  }
}
.tournament-balance {
  display: flex;
  align-items: center;
  gap: 4px;
  p {
    background: linear-gradient(178.44deg, #ff8820, #fc641d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: 500;
    line-height: 123%;
  }
  span {
    border-radius: 6px;
    background: linear-gradient(
      178.44deg,
      #ff882033 -1.777%,
      #fc641d33 131.035%
    );
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.tournament-conditions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}
.tournament-start-wrapper {
  padding: 28px 32px 28px 32px;
  border-radius: 10px;
  background: #0e1119;
  overflow: hidden;
  position: relative;
  z-index: 1;
  .tournament-start-grad {
    position: absolute;
    width: 927.09px;
    height: 234.88px;
    left: -114.65px;
    top: 240.41px;
    transform: rotate(-6.21deg);
    filter: blur(100px);
    background: linear-gradient(180deg, #f26dfc, #dc50e5 100%);
    opacity: 0.8;
    z-index: -1;
  }
  h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 131.2%;
  }
  p {
    background: linear-gradient(180deg, #f26dfc, #dc50e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    font-weight: 500;
    line-height: 123%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 25px;
  }

  .tournament-timer {
    .time {
      background: #f06bf959;
    }
    .timer-separator {
      color: #f06bf959;
      background: transparent;
      -webkit-background-clip: content-box;
      -webkit-text-fill-color: currentColor;
      background-clip: border-box;
    }
  }
}

.btn-fouth {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  border-radius: 8px;
  background: linear-gradient(180deg, #f26dfc, #dc50e5 100%);
  height: 56px;
  width: 263px;
}
.tournament-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}
.open-tournament-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
  margin-top: 40px;
}
.tournament-information-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 131.2%;
}
.tournament-information-subtitle {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 147.2%;
  margin-top: 20px;
}
.tournament-information-card {
  border-radius: 10px;
  background: #151822;
  padding: 28px 32px;
}
.tournament-access-games {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  .slot-card {
    width: 92px;
    height: 120px;
    object-fit: cover;
    border-radius: 7px;
    .hover-block {
      padding-top: 8px;
      border-radius: 3px;
      h3 {
        font-size: 8px;
      }
      p {
        font-size: 6px;
      }
      .play-btn {
        width: 30px;
        height: 30px;
        img {
          width: 15px;
        }
      }
      .demo-btn {
        font-size: 8px;
        padding: 7px 16px 7px 16px;
      }
    }
  }
}
.search-games-grid {
  .slot-card {
    border-radius: 10px;
    .hover-block {
      width: 100%;
      height: 100%;
      padding-top: 8px;
      h3 {
        font-size: 8px;
      }
      p {
        font-size: 6px;
      }
      .play-btn {
        width: 30px;
        height: 30px;
        img {
          width: 15px;
        }
      }
      .demo-btn {
        font-size: 8px;
        padding: 7px 16px 7px 16px;
      }
    }
  }
}
.last-wins-table-wrapper {
  margin-top: 36px;
  h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
    margin-bottom: 16px;
  }
}
.last-wins-table-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.last-win-empty,
.referal-table-empty {
  width: 100%;
  height: 264px;
  border-radius: 12px;
  background: #1a1e29;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    text-align: center;
    margin-bottom: 12px;
  }
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 135%;
    text-align: center;
    max-width: 499px;
  }
}
.last-wins-table-header {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 12px;
  padding: 18px 27px 18px 24px;
  background: #1a1e29;
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    &:nth-child(3),
    &:nth-child(4) {
      justify-self: center;
    }
    &:nth-child(5) {
      justify-self: end;
    }
  }
}
.last-wins-table-item {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  padding: 16px 24px;
  border-radius: 12px;
  background: #1a1e29;
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    display: flex;
    align-items: center;
    gap: 10px;
    &:nth-child(3),
    &:nth-child(4) {
      justify-self: center;
    }
    &:nth-child(5) {
      justify-self: end;
    }
  }
}
.prizes-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 123%;
  }
}
.prizes-count,
.members-count {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 8px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  width: 100%;
  &:after {
    content: "";
    position: absolute;
    width: 401.4px;
    height: 100px;
    left: -46.87px;
    top: 118.46px;
    transform: rotate(-3.26deg);
  }
  span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }
}
.prizes-count {
  &::after {
    filter: blur(140px);
    background: linear-gradient(178.44deg, #ff8820 15.49%, #fc641d 107.929%);
    opacity: 0.5;
  }
  span {
    background: linear-gradient(
      178.44deg,
      #ff882033 -1.777%,
      #fc641d33 131.035%
    );
  }
}
.members-count {
  &::after {
    filter: blur(140px);
    background: linear-gradient(180deg, #51e165, #3ec451 100%);
    opacity: 0.4;
  }
  span {
    background: #3ec45133;
  }
}
.tournament-players-table-header {
  padding: 21px 83px 21px 32px;
  border-radius: 12px;
  background: #12151e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  div {
    display: flex;
    align-items: center;
    &:nth-child(1) {
      gap: 56px;
    }
    &:nth-child(2) {
      gap: 94px;
    }
  }
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
  }
}
.tournament-players-table-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.tournament-players-table-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px 16px 32px;
  border-radius: 12px;
  background: #151822;
}
.tournament-players-table-item-left,
.tournament-players-table-item-right {
  display: flex;
  align-items: center;
}
.tournament-players-table-item-left {
  gap: 73px;
}
.tournament-players-table-item-right {
  gap: 64px;
}
.tournament-player {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 6px;
  }
}
.tournament-players-table-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 131.2%;
  margin-bottom: 28px;
  margin-top: 36px;
}
.tournament-reward-value {
  background: linear-gradient(178.44deg, #ff8820, #fc641d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 4px 9px;
  &::after {
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 8px;
    background: linear-gradient(
      178.44deg,
      #ff882033 10.574%,
      #fc641d33 114.507%
    );
    position: absolute;
    left: 0;
    top: 0;
  }
}
.tournament-point-value {
  color: #39bf4c;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  border-radius: 8px;
  background: #183a28;
  padding: 4px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tournament-place-value {
  width: 40px;
  height: 32px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
  display: flex;
  align-items: center;
  justify-content: center;
  &.your-place {
    color: #ffffff;
    background: #1c212f;
  }
  &.first-place {
    color: #ffe923;
    background: #fff23a33;
  }
  &.second-place {
    color: #d6dae5;
    background: #d6dae533;
  }
  &.third-place {
    background: linear-gradient(178.44deg, #ff8820, #fc641d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    overflow: hidden;
    &::after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background: linear-gradient(
        178.44deg,
        #ff88203b -0.855%,
        #fc641d3b 129.801%
      );
    }
  }
}
.setting-profile-wrapper {
  display: flex;
  gap: 20px;
  margin: 40px;
}
.profile-tab1 {
  display: block;
}
.profile-tab2 {
  display: none;
}
.deposite-bonus-title {
  color: #ffffff;
  font-family: Google Sans;
  font-size: 18px;
  font-weight: 500;
  line-height: 127%;
  margin-top: 40px;
  margin-bottom: 16px;
}
.deposite-bonus-text {
  padding: 24px 29px 24px 28px;
  border-radius: 10px;
  background: #1a1e29;
  p {
    color: #383e4f;
    font-size: 18px;
    font-weight: 500;
    line-height: 132%;
  }
}
.level-bars-row {
  display: grid;
  padding: 20px;
  align-items: center;
  gap: 20px;
  grid-template-columns: 2fr 2fr 3fr 3fr; /* при добавлении бонусов менять тут, 1fr добавить */
  border-radius: 10px;
  background: #1a1e29;
  .level-bar {
    background: #151822;
    margin-top: 0;
    width: 100%;
  }
}
.level-points {
  color: #383e4f;
  font-size: 18px;
  font-weight: 500;
  line-height: 132%;
  text-wrap: nowrap;
}
.level-label {
  display: flex;
  align-items: center;
  gap: 8px;
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
  }
}
.level-cash-bonus {
  padding: 4px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 131.2%;
}
.level-cashback-procent {
  padding: 4px 9px;
  font-size: 18px;
  text-wrap: nowrap;
  font-weight: 500;
  line-height: 131.2%;
}
.profile-change-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  .btn-primary {
    margin-top: 20px;
  }
}
.profile-change-block {
  width: 100%;
  h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 127%;
    margin-bottom: 24px;
  }
}
.all-sessions-close-wrapper {
  padding: 20px 24px 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 137px;
  z-index: 2;
  span {
    border-radius: 6px;
    background: #351f26;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 123%;
  }
  button {
    border-radius: 8px;
    background: #351f26;
    color: #d64443;
    font-family: Google Sans;
    font-size: 18px;
    font-weight: 500;
    line-height: 131.2%;
    text-wrap: nowrap;
    padding: 12px 47px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  .bg-grad {
    width: 955.23px;
    height: 50px;
    position: absolute;
    left: -44.81px;
    top: 44.83px;
    transform: rotate(3.41deg);
    filter: blur(140px);
    background: rgb(214, 68, 67);
    opacity: 0.4;
    z-index: 1;
  }
}
.all-sessions-close-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.setting-input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: #12151e;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  color: #fff;
  padding: 0 24px;
  &::placeholder {
    color: #383e4f;
  }
}
.first-level {
  .level-cash-bonus {
    background: linear-gradient(180deg, #5797fe, #4083ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    &::after {
      position: absolute;
      width: 100%;
      height: 100%;
      content: "";
      border-radius: 8px;
      background: linear-gradient(180deg, #5797fe33, #4083ed33 100%);
    }
    .icon {
      width: 18px;
      height: 18px;
      filter: drop-shadow(0 0 0 #5797fe);
      color: #4083ed;
      transition: all 0.3s ease;
    }
  }
  .level-cashback-procent {
    background: linear-gradient(180deg, rgb(87, 151, 254), rgb(64, 131, 237));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    width: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    &::after {
      left: 0;
      top: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      content: "";
      border-radius: 8px;
      background: linear-gradient(
        180deg,
        rgba(87, 151, 254, 0.2),
        rgba(64, 131, 237, 0.2) 100%
      );
    }
  }
  .level-bar-progress {
    background: linear-gradient(180deg, #5797fe, #4083ed 100%);
  }
}
.second-level {
  .level-cash-bonus {
    background: linear-gradient(
      178.44deg,
      rgb(255, 136, 32),
      rgb(252, 100, 29)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    &::after {
      position: absolute;
      width: 100%;
      height: 100%;
      content: "";
      border-radius: 8px;
      background: linear-gradient(
        178.44deg,
        #ff882033 3.336%,
        #fc641d33 124.193%
      );
    }
    .icon {
      width: 18px;
      height: 18px;
      filter: drop-shadow(0 0 0 #ff8820);
      color: #fc641d;
      transition: all 0.3s ease;
    }
  }
  .level-cashback-procent {
    background: linear-gradient(
      178.44deg,
      rgb(255, 136, 32),
      rgb(252, 100, 29)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    width: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    &::after {
      left: 0;
      top: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      content: "";
      border-radius: 8px;
      background: linear-gradient(
        178.44deg,
        #ff882033 12.806%,
        #fc641d33 111.52%
      );
    }
  }
  .level-bar-progress {
    background: linear-gradient(178.44deg, #ff8820 40.751%, #fc641d 74.124%);
  }
}
.third-level {
  .level-cash-bonus {
    color: #d64443;
    position: relative;
    background: #351f26;
    border-radius: 8px;
    .icon {
      width: 18px;
      height: 18px;
      color: #d64443;
      transition: all 0.3s ease;
    }
  }
  .level-cashback-procent {
    color: #d64443;
    position: relative;
    width: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #351f26;
  }
  .level-bar-progress {
    background: #d64443;
  }
}
.fouth-level {
  .level-cash-bonus {
    background: linear-gradient(180deg, #f26dfc, #dc50e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    &::after {
      position: absolute;
      width: 100%;
      height: 100%;
      content: "";
      border-radius: 8px;
      background: linear-gradient(180deg, #f26dfc33, #dc50e533 100%);
    }
    .icon {
      width: 18px;
      height: 18px;
      filter: drop-shadow(0 0 0 #f26dfc);
      color: #dc50e5;
      transition: all 0.3s ease;
    }
  }
  .level-cashback-procent {
    background: linear-gradient(180deg, #f26dfc, #dc50e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    width: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    &::after {
      left: 0;
      top: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      content: "";
      border-radius: 8px;
      background: linear-gradient(180deg, #f26dfc33, #dc50e533 100%);
    }
  }
  .level-bar-progress {
    background: linear-gradient(180deg, #f26dfc, #dc50e5);
  }
}
.fifth-level {
  .level-cash-bonus {
    color: #d5ff4b;
    position: relative;
    background: #d5ff4b33;
    border-radius: 8px;
    .icon {
      width: 18px;
      height: 18px;
      color: #d5ff4b;
      transition: all 0.3s ease;
    }
  }
  .level-cashback-procent {
    color: #d5ff4b;
    position: relative;
    width: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #d5ff4b33;
  }
  .level-bar-progress {
    background: #d5ff4b;
  }
}
.toast-message {
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
  img {
    width: 12px;
  }
}
#toast-container > div {
  opacity: 1;
}

.toast-close-button {
  font-size: 32px;
  font-weight: 100;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: none !important;
  top: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}
.toast-success {
  padding: 20px !important;
  border-radius: 15px !important;
  background-position: center !important;
  box-shadow: 0px 0px 54.4px 0px #0f121b !important;
  background: #183a28;
  .toast-close-button {
    color: #39bf4c !important;
    text-shadow: none;
  }
  .toast-message {
    color: #39bf4c;
  }
  .toast-progress {
    background: #39bf4c;
  }
  .icon-notif {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 5.2px;
    background: #18b146;
    margin-right: 12px;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
#toast-container > .toast-success {
  background-image: none !important;
}
.toast-error {
  padding: 20px !important;
  border-radius: 15px !important;
  background-position: center !important;
  box-shadow: 0px 0px 54.4px 0px #0f121b !important;
  background: #351f26;
  .toast-message {
    color: #d64443;
  }
  .toast-progress {
    background: #d64443;
  }
  .toast-close-button {
    color: #d64443 !important;
    text-shadow: none;
  }
  .icon-notif {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 5.2px;
    background: #ca2727;
    margin-right: 12px;
    img {
      width: 100%;
      height: 100%;
    }
  }
}
#toast-container > .toast-error {
  background-image: none !important;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f121b;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  img {
    animation: pulse 1s infinite;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
footer {
  display: none;
}
.dice-range-midlight {
  width: 100%;
}
.irs--flat .irs-bar {
  background: #3dac4d !important;
  height: 10px !important;
}

.irs--flat .irs-line {
  background: linear-gradient(
    178.44deg,
    rgb(255, 136, 32) 52.657%,
    rgb(252, 100, 29) 58.191%
  ) !important;
  height: 10px !important;
}
.irs--flat .irs-min,
.irs--flat .irs-max {
  display: none;
}
.irs-grid-pol {
  display: none;
}
.irs-grid-text {
  color: #f1f6ff33 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 23px !important;
  top: 14px !important;
}
.irs-grid {
  width: 96.2609% !important;
}
.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  display: none;
}
.irs--flat .irs-handle {
  top: 20px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: transparent !important;
  cursor: grab;
}
.irs--flat .irs-handle > i:first-child {
  display: none !important;
}
.game-collect-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  .icon {
    width: 18px;
    height: 18px;
  }
  span {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
@media (max-width: 1745px) {
  .mines-game-wrapper {
    flex-direction: column-reverse;
  }
  .mines-game {
    width: 100%;
  }
  .game-options {
    width: 100%;
  }
  .mines-fields {
    width: 100%;
  }
  .mines-game {
    justify-content: center;
  }
  .active-tournaments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dice-game-wrapper {
    flex-direction: column-reverse;
  }
  .dice-game {
    width: 100%;
  }
  .send-btn {
    min-width: 190px;
  }
  .level-bars-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    .level-bar {
      grid-column: span 2;
    }
  }
  .prizes-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 1540px) {
  .active-tournaments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prizes-wrapper {
    flex-direction: row;
  }
  .faq-grid {
    flex-direction: column;
    gap: 20px;
  }
  .header-wrapper {
    width: calc(100dvw - 16px);
  }
  .new-slots-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
  .popular-slots-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
  .all-slots-list {
    grid-template-columns: repeat(5, 1fr);
  }
  .chat-open {
    .new-slots-wrapper {
      grid-template-columns: repeat(4, 1fr);
    }
    .popular-slots-wrapper {
      grid-template-columns: repeat(4, 1fr);
    }
    .all-slots-list {
      grid-template-columns: repeat(4, 1fr);
    }
    .original-games {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .open-tournament-grid {
    grid-template-columns: 1fr;
  }
  .social-header {
    display: none;
  }
  .referal-input-wrapper {
    flex-direction: column;
  }
  .referals-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .referal-link-wrapper {
    grid-column: span 2;
  }

  .profile-wrapper {
    margin-top: 16px;
    flex-direction: column;
  }
  .profile-avatar-wrapper {
    width: 50%;
  }
  .profile-sub {
    display: flex;
    max-width: 100%;
    gap: 20px;
  }
  .profile-level-info {
    width: 50%;
    margin-top: 0;
  }
  .search-input {
    display: none;
  }
  .slots-header {
    gap: 20px;
    .search-input {
      display: flex;
    }
  }
  .profile-statistic-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1320px) {
  .referals-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .chat-open {
    .new-slots-wrapper {
      grid-template-columns: repeat(3, 1fr);
    }
    .popular-slots-wrapper {
      grid-template-columns: repeat(3, 1fr);
    }
    .all-slots-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .level-progress {
    grid-row: span 3;
    width: 100%;
  }
  .referal-link-wrapper {
    order: -1;
  }
}
@media (max-width: 1220px) {
  .chat-box {
    display: block;
    top: 99px;
    max-width: 100%;
    right: 0;
    &.chat-open {
      display: none;
      right: -100%;
    }
  }
  .chat-open {
    .chat-header {
      width: auto;
    }
  }
  .chat-open {
    .new-slots-wrapper {
      grid-template-columns: repeat(5, 1fr);
    }
    .popular-slots-wrapper {
      grid-template-columns: repeat(5, 1fr);
    }
  }
  .chat-body {
    height: calc(100dvh - 340px);
  }
  .chat-item {
    width: 100%;
  }
  .message-body {
    width: 100%;
  }
  .container {
    width: 100%;
    max-width: 100%;
    &.chat-open {
      width: 100%;
    }
  }
  main {
    padding-left: 16px;
    padding-right: 16px;
    &.chat-open {
      padding-left: 16px;
      padding-right: 16px;
    }
  }
  .chat-box {
    display: none;
  }
  .sidebar {
    display: none;
  }
  .header-wrapper {
    width: 100%;
    padding-right: 16px;
    &.chat-open {
      width: 100%;
    }
  }
  .mines-fields {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1120px) {
  .original-games {
    grid-template-columns: repeat(3, 1fr);
  }

  .header-search-social {
    display: none;
  }
}
@media (max-width: 820px) {
  .promotion-banner {
    padding: 16px 16px 24px 16px;
    h3 {
      font-size: 15px;
    }
    p {
      font-size: 12px;
      width: 140px;
      margin-top: 6px;
      margin-bottom: 16px;
    }
    button {
      height: 40px;
      font-size: 12px;
      padding: 11px 18px;
    }
  }
  .chat-header {
    display: none;
  }
  .game-place {
    height: 593px;
  }
  .dice-game {
    padding: 16px 16px 30px 16px;
  }
  .footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-left {
    display: flex;
    align-items: center;
    gap: 5.67px;
    img {
      width: 15.58px;
      height: 15.58px;
    }
    p {
      font-size: 11.33px;
      color: #fff;
      font-size: 11.33px;
      font-weight: 500;
      line-height: 14px;
    }
  }
  footer {
    padding: 16px;
    display: block;
  }
  .footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
    a {
      color: #383e4f;
      font-size: 11px;
      font-weight: 500;
      line-height: 127%;
      transition: all 0.3s ease-in-out;
      &:active {
        color: #fff;
      }
    }
    p {
      color: #383e4f;
      font-size: 11px;
      font-weight: 500;
      line-height: 14px;
    }
  }
  .level-bars-row {
    padding: 12px 16px;
    gap: 4px;
    .level-label {
      gap: 4px;
      img {
        width: 20px;
      }
      p {
        font-size: 12px;
      }
    }
    .level-cash-bonus {
      font-size: 12px;
      .icon {
        width: 12px;
        height: 12px;
      }
    }
    .tournament-start-wrapper {
      h3 {
        font-size: 18px;
      }
      p {
        font-size: 15px;
      }
    }
    .btn-fouth {
      height: 44px;
      font-size: 12px;
    }

    .level-cashback-procent {
      font-size: 12px;
      width: 100px;
    }
    .level-points {
      font-size: 12px;
    }
  }
  .sub-page-title {
    margin-top: 20px;
    margin-bottom: 12px;
  }
  .wallet-open-btn {
    width: 36px;
    .icon {
      width: 18px;
      height: 18px;
    }
    span {
      display: none;
    }
  }
  .user-balance-value-wrapper {
    height: 36px;
    padding-left: 10px;
  }
  .user-balance-value {
    font-size: 12px;
    padding-right: 7px;
    img {
      width: 12px;
    }
  }
  .profile-btn {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    img {
      width: 36px;
      height: 36px;
    }
  }
  .profile-statistic-title {
    font-size: 12px;
  }
  .profile-setting-btn {
    display: none;
  }
  .all-sessions-close-wrapper {
    flex-direction: column;
    gap: 12px;
    button {
      width: 100%;
    }
  }
  .chat-btn {
    width: 36px;
    height: 36px;
  }
  .last-wins-table-wrapper {
    h3 {
      font-size: 12px;
    }
  }
  .promotion-banner-wrapper {
    .swiper-pagination-bullet {
      height: 5px !important;
      border-radius: 5px;
    }
    .swiper-pagination-bullet-active {
      border-radius: 5px;
    }
    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
      bottom: 4px !important;
    }
  }
  .profile-change-block {
    h3 {
      font-size: 12px;
    }
  }
  .dice-range-wrapper {
    width: 305.53px;
  }
  .tournament-players-table-title {
    font-size: 12px;
    margin-bottom: 12px;
    margin-top: 28px;
  }
  .mobile-menu {
    width: 100%;
    height: 56px;
    border-radius: 14px 14px 0px 0px;
    background: #151822;
    position: fixed;
    bottom: -1px;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 30px 9px 21px;
    a {
      color: #383e4f;
      font-size: 12px;
      font-weight: 500;
      line-height: 131%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      span {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        margin-top: -25px;
        background: linear-gradient(
          178.44deg,
          #ff8820 -1.776%,
          #fc641d 131.035%
        );
        margin-bottom: 5px;
        color: #fff;
      }
      .icon {
        width: 20px;
        height: 20px;
      }
    }
  }
  .chat-box {
    display: block;
    top: 60px;
    max-width: 100%;
    right: 0;
    &.chat-open {
      display: none;
      right: -100%;
    }
  }
  .message-body {
    width: 100%;
  }
  .setting-input {
    height: 44px;
    font-size: 12px;
  }
  .setting-profile-wrapper {
    flex-direction: column;
  }
  .deposite-bonus-text {
    padding: 16px;
    p {
      font-size: 12px;
    }
  }
  .game-win-popup {
    h3 {
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      line-height: 143.2%;
      text-align: center;
    }
    p {
      text-align: center;
      color: #ffffff;
      font-size: 12px;
      font-weight: 500;
      line-height: 131.2%;
      margin-top: 6px;
      margin-bottom: 24px;
    }
    span {
      padding: 10px 20px 9px 18px;
      img {
        width: 12px;
      }
      span {
        padding: 0;
        font-size: 12px;
      }
    }
    button {
      font-size: 12px;
      &:hover {
        color: #fff;
      }
    }
    div {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      flex-grow: 1;
    }
  }
  .win-logo {
    width: 113px;
  }
  .deposite-bonus-title {
    font-size: 12px;
    margin-bottom: 12px;
    margin-top: 28px;
  }
  .profile-avatar-wrapper {
    padding: 12px 36px 12px 37px;
    p {
      border-radius: 5px;
      font-size: 12px;
      height: 32px;
    }
  }
  .profile-level-info {
    .btn-secondary {
      margin-top: 29px;
      font-size: 12px;
      height: 32px;
    }
  }
  .all-sessions-close-wrapper {
    margin-top: 28px;
    span {
      border-radius: 4px;
      min-width: 28px;
      height: 28px;
      img {
        width: 16px;
      }
    }
    p {
      font-size: 12px;
    }
    button {
      font-size: 12px;
      padding: 10px 0;
    }
  }
  .profile-statistic-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .level-progress-header {
    p {
      font-size: 12px;
    }
  }
  .profile-level-info {
    padding: 14px 16px 12px 16px;
  }
  .profile-main {
    padding: 16px;
  }
  .provider-card {
    min-width: 93px;
    height: 44px;
    img {
      width: 60%;
    }
  }
  .mines-amounts-image-shadow {
    display: none;
    animation: shadow-scale 3s ease-in-out infinite;
  }
  .profile-statistic-wrapper {
    span {
      font-size: 12px;
    }
    p {
      font-size: 12px;
    }
  }
  .user-agreement-text {
    font-size: 12px;
    a {
      font-size: 12px;
    }
  }
  .level-bar {
    margin-top: 8px;
  }
  .referals-wrapper {
    margin-top: 16px;
  }
  .transaction-select-header {
    font-size: 12px;
    img {
      width: 20px;
      height: 20px;
    }
  }

  .search-modal-header {
    h3 {
      font-size: 15px;
    }
  }
  .chat-box {
    background: #0e1119;
    .chat-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 16px;
    }
  }
  .chat-header-btn {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background: #151822;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #383e4f;
  }
  .header-right {
    gap: 8px;
  }
  .close-modal-btn {
    width: 28px;
    height: 28px;
    .icon {
      width: 18px;
      height: 18px;
    }
  }
  .profile-header-wrapper {
    .chat-open-btn {
      display: flex;
    }
  }
  .chat-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    span {
      width: 36px;
      height: 36px;
      border-radius: 5px;
      background: #151822;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #383e4f;
    }
    p {
      color: #ffffff;
      font-size: 15px;
      font-weight: 500;
      line-height: 145.2%;
    }
  }
  .message-value {
    font-size: 12px;
  }
  .chat-profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 5px;
  }
  .chat-username {
    .simple-user {
      font-size: 15px;
    }
  }
  .time {
    width: 28px;
    height: 32px;
    font-size: 12px;
  }
  .chat-wrapper {
    padding: 16px;
  }
  .faq-header {
    .drop-down-icon {
      width: 20px;
    }
  }
  .faq-grid {
    gap: 9px;
  }
  .faq-side {
    gap: 8px;
  }
  .promo-timer {
    p {
      font-size: 12px;
    }
  }
  .game-input-secondary {
    input {
      font-size: 12px;
    }
  }
  .chat-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .auth-big-bg {
    display: none;
  }
  .register-modal {
    .scroll-container {
      padding-right: 4px;
    }
  }
  .login-modal {
    .scroll-container {
      padding-right: 4px;
    }
  }
  .login-wrapper,
  .register-wrapper {
    padding: 16px 12px 16px 16px;
    gap: 0;
  }
  .login-wrapper {
    width: 100%;
  }
  .register-wrapper {
    width: 100%;
  }
  .login-modal {
    height: 500px;
  }
  .register-modal {
    height: 500px;
  }
  .transaction-select {
    margin-top: 0;
    margin-bottom: 12px;
  }
  .slots-header {
    height: 90px;
    flex-direction: column;
    gap: 12px;
  }
  .providers-list {
    gap: 8px;
    &.opened {
      max-height: 45px;
    }
  }
  .slot-card {
    &:hover {
      .hover-block {
        display: none;
      }
    }
  }
  .irs-grid {
    width: 91.2609% !important;
  }
  .slots-header-right {
    min-height: 44px;
    justify-content: space-between;
  }
  .type-btn {
    font-size: 12px;
  }
  .provider-select {
    padding: 8px 16px;
    input {
      font-size: 12px;
    }
  }
  .all-slots-list {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 20px;
  }
  .search-input {
    img {
      width: 18px;
    }
    input {
      font-size: 12px;
    }
  }
  .provider-select {
    min-width: 129px;
    width: 100%;
  }
  .btn-primary {
    font-size: 12px;
  }
  .referal-input-label {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .transaction-select-item {
    font-size: 12px;
  }
  .referal-link-wrapper {
    padding: 12px 16px 16px 16px;
  }
  .original-games {
    grid-template-columns: repeat(2, 1fr);
    gap: 7.66px 11.84px;
    margin-top: 21px;
    a {
      height: 67.86px;
    }
  }

  .referal-table-nav-btn {
    width: 36px;
    height: 36px;
    .icon {
      width: 21px;
      height: 21px;
    }
  }
  .agreement-block-title {
    color: #f9fbff;
    font-size: 12px;
  }
  .agreement-block-text {
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .promotion-card {
    padding: 11px 22px 11px 12px;
    min-width: 123px;
    p {
      font-size: 10px;
    }
    span {
      width: 25px;
      height: 25px;
      img {
        width: 14.32px;
        height: 14.32px;
      }
    }
  }
  .promotions-list {
    .promotion-card {
      border-radius: 10px;
      min-width: 123px;
      &::after {
        content: "";
        position: absolute;
        width: 205.34px;
        height: 51.16px;
        left: 14.9px;
        top: 60.6px;
        transform: rotate(-3.26deg);
      }
    }
  }
  .referal-input {
    .referal-copy-btn {
      font-size: 12px;
    }
    input {
      font-size: 12px;
    }
  }
  .referal-stat {
    padding: 12px 20px;
    span {
      font-size: 12px;
    }
    p {
      font-size: 12px;
      margin-top: 6px;
    }
  }
  .level-progress {
    p {
      font-size: 12px;
    }
  }
  .irs-grid-text {
    color: #f1f6ff33 !important;
    font-size: 12px !important;
  }
  .chart-display-level {
    width: 40px;
    height: 40px;
    font-size: 16px;
    &::after {
      border-radius: 5px;
    }
  }
  .level-progress {
    padding: 27px 0 30px 0;
  }
  .referal-table-title {
    font-size: 12px;
  }
  .referal-table-count {
    font-size: 12px;
  }
  .referal-table-wrapper {
    margin-top: 28px;
  }
  .all-slots-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .chat-open {
    .new-slots-wrapper {
      grid-template-columns: repeat(4, 1fr);
    }
    .popular-slots-wrapper {
      grid-template-columns: repeat(4, 1fr);
    }
    .all-slots-list {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  .slot-group-header {
    margin-bottom: 12px;
    h3 {
      font-size: 12px;
    }
    a {
      font-size: 12px;
    }
  }
  .game-input-secondary-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .tournament-banner {
    padding: 16px 16px 19px 16px;
    h3 {
      font-size: 15px;
      width: 99px;
      margin-bottom: 13px;
    }
    .btn-primary {
      height: 40px;
      padding: 12px 24.5px;
    }
  }
  .modal-layout {
    padding: 0 16px;
  }
  .wallet-modal {
    width: 100%;
    max-height: 90dvh;
    padding: 12px 16px 20px 16px;
  }
  .header-wrapper {
    padding: 12px 16px;
  }
  .wallet-history-header {
    padding: 14px 16px 15px 16px;
    p {
      font-size: 12px;
      &:nth-child(3) {
        justify-self: start;
      }
    }
  }
  .transaction-status {
    width: 60px;
  }
  .wallet-history-item {
    padding: 15px 16px 14px 16px;
    p {
      font-size: 12px;
      &:nth-child(3) {
        justify-self: start;
      }
      span {
        display: none;
      }
    }
  }
  .wallet-nav {
    gap: 12px;
    button {
      font-size: 12px;
      .icon {
        width: 20px;
        height: 20px;
      }
    }
  }
  main {
    padding-top: 70px;
  }
  .popular-slots {
    margin-top: 28px;
  }
  .new-slots {
    margin-top: 28px;
  }
  .bonus-tournament {
    grid-column: span 1;
    padding: 16px;
    h3 {
      font-size: 15px;
    }
    p {
      font-size: 12px;
      margin-top: 8px;
      margin-bottom: 18px;
    }
    .btn-primary {
      width: 159px;
    }
  }
  .bonus-grid {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
  .tournament-information-card {
    padding: 12px 16px;
  }
  .tournament-start-wrapper {
    padding: 12px 16px;
  }
  .bonus-promo {
    padding: 16px;
    h3 {
      font-size: 12px;
    }
    .btn-third {
      height: 44px;
      font-size: 12px;
    }
  }
  .level-icons-wrapper {
    margin-top: 16px;
    img {
      width: 20px;
    }
  }
  .profile-nav-wrapper {
    gap: 11px;
    button {
      font-size: 12px;
      gap: 2px;
      .icon {
        width: 20px;
        height: 20px;
      }
    }
  }
  .profile-statistic-item {
    padding: 12px 16px;
  }
  .last-win-empty {
    padding: 0 11px 0 10px;
    h3 {
      font-size: 12px;
    }
    p {
      max-width: 100%;
      font-size: 12px;
    }
  }
  .profile-nav {
    gap: 11px;
  }
  .promo-input {
    height: 44px;
    margin-top: 12px;
    margin-bottom: 20px;
    input {
      font-size: 12px;
    }
  }
  .tournament-place-value {
    font-size: 12px;
  }
  .wallet-wrapper {
    gap: 20px;
    flex-direction: column;
  }

  .wallet-payments-system-list {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }
  .payment-system {
    min-width: 141px;
    padding: 10px;
    h3 {
      font-size: 12px;
      width: 55px;
      overflow: hidden;
    }
    p {
      font-size: 12px;
    }
    img {
      width: 28px;
    }
  }
  .auth-header {
    h3 {
      font-size: 15px;
    }
  }
  .eye-btn {
    width: 18px;
    height: 18px;
    .icon {
      width: 18px;
      height: 18px;
    }
  }
  .payments-left {
    gap: 4px;
  }
  .deposite-variant {
    width: 100%;
  }
  .withdraw-variant {
    width: 100%;
  }
  .custom-input {
    height: 44px;
    .inner-label {
      font-size: 12px;
    }
    input {
      font-size: 12px;
    }
  }

  .additional-btns {
    button {
      font-size: 12px;
      height: 36px;
    }
  }
  .wallet-info-text {
    font-size: 12px;
    margin-top: 57px;
  }
  .wallet-promo {
    margin-top: 12px;
  }
  .tournament-player {
    font-size: 12px;
    gap: 5px;
    img {
      width: 24px;
      height: 24px;
      border-radius: 4px;
    }
  }
  .tournament-reward-value {
    font-size: 12px;
    gap: 5px;
    img {
      width: 12px;
    }
  }
  .tournament-point-value {
    font-size: 12px;
    gap: 5px;
    img {
      width: 12px;
    }
  }
  .tournament-players-table-item-left {
    gap: 12px;
  }
  .tournament-players-table-item-right {
    gap: 8px;
  }
  .tournament-access-games {
    width: calc(100dvw - 64px);
    gap: 8px;
    overflow-x: auto;
    .slot-card {
      width: 64px;
      height: 87px;
    }
  }
  .chat-rules-modal {
    width: 328px;
    border-radius: 12px;
    padding: 16px;
    .btn-primary {
      width: 100%;
      margin-top: 36px;
    }
  }
  .chat-rules-header {
    margin-bottom: 20px;
    h3 {
      font-size: 15px;
    }
  }
  .chat-rules-text {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .tournament-players-table-item {
    padding: 10px 16px;
  }
  .vk-bonus,
  .tg-bonus {
    padding: 16px;
    h3 {
      font-size: 12px;
    }
    p {
      font-size: 12px;
      margin-top: 4px;
      margin-bottom: 16px;
    }
    button {
      font-size: 12px;
      height: 44px;
    }
  }
  .page-title {
    h3 {
      font-size: 15px;
    }
  }
  body {
    padding-bottom: 80px;
  }
  .mobile-link {
    padding: 10px 12px;
    border-radius: 5px;
    background: #1a1e29;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #383e4f;
    .icon {
      width: 20px;
      height: 20px;
    }

    span {
      color: inherit;
      font-size: 12px;
      font-weight: 500;
      line-height: 127%;
      transition: all 0.3s ease-in-out;
    }
    &:active {
      background: linear-gradient(
        178.44deg,
        #ff882033 32.552%,
        #fc641d33 85.097%
      );
      .icon {
        filter: drop-shadow(0 0 0 #ff8820);
        color: #fc641d;
        transition: all 0.3s ease;
      }
      span {
        background: linear-gradient(178.44deg, #ff8820, #fc641d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 12px;
        font-weight: 500;
        line-height: 127%;
      }
    }
    &.active {
      background: linear-gradient(
        178.44deg,
        #ff882033 32.552%,
        #fc641d33 85.097%
      );
      .icon {
        filter: drop-shadow(0 0 0 #ff8820);
        color: #fc641d;
        transition: all 0.3s ease;
      }
      span {
        background: linear-gradient(178.44deg, #ff8820, #fc641d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 12px;
        font-weight: 500;
        line-height: 127%;
      }
    }
  }
  .last-wins-table-header {
    grid-template-columns: repeat(3, 1fr);
    p {
      font-size: 12px;
      &:nth-child(2),
      &:nth-child(3) {
        display: none;
      }
    }
  }
  .mobile-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    .exit-link {
      background: #351f26;
      color: #d64443;
    }
  }
  .dice-value-part {
    width: 64px;
    height: 77px;
    font-size: 40px;
  }
  .btn-third {
    font-size: 12px;
  }
  .bet-sides {
    width: 100%;
    button {
      width: 100%;
      height: 44px;
    }
  }
  .bet-side {
    width: 100%;
    gap: 12px;
    p {
      font-size: 12px;
    }
  }
  .dice-game {
    padding: 16px 16px 20px 16px;
  }
  .value-separator {
    font-size: 40px;
  }
  .possible-winnings {
    margin-top: 12px;
    margin-bottom: 0;
    p {
      font-size: 12px;
    }
    span {
      font-size: 12px;
      gap: 4px;
      img {
        width: 12px;
      }
    }
  }
  .active-tournament-card {
    h3 {
      font-size: 15px;
    }
  }
  .tournament-result-label {
    font-size: 12px;
    margin-bottom: 4px;
    margin-top: 8px;
  }
  .tournament-result {
    font-size: 12px;
    gap: 4px;
    margin-bottom: 24px;
    img {
      width: 14px;
    }
  }
  .go-to-register-btn,
  .go-to-login-btn {
    font-size: 12px;
  }
  .active-tournament-card {
    padding: 9px 8px 16px 8px;
    .btn-primary {
      padding: 10px;
      border-radius: 5px;
    }
    .card-gradient {
      top: 120.64px;
      left: 0;
    }
  }
  .last-wins-table-item {
    grid-template-columns: repeat(3, 1fr);
    p {
      font-size: 12px;
      img {
        width: 14px;
      }
      &:nth-child(2),
      &:nth-child(3) {
        display: none;
      }
    }
  }
  .and-text {
    font-size: 12px;
    margin-bottom: 12px;
    margin-top: 28px;
  }
  .auth-vk,
  .auth-tg {
    height: 40px;
    .icon {
      width: 24px;
      height: 24px;
    }
  }

  .tournament-balance {
    span {
      width: 24px;
      height: 24px;
      img {
        width: 10px;
      }
    }
    p {
      font-size: 12px;
    }
  }
  .tournament-timer {
    gap: 2px;
    .time {
      font-size: 12px;
      width: 20px;
      height: 22px;
      border-radius: 3px;
    }
    .timer-separator {
      font-size: 11px;
    }
  }
  .tournament-card-wide {
    padding: 16px 16px 20px 16px;
    margin-top: 16px;
    margin-bottom: 28px;
    h3 {
      font-size: 15px;
    }
    p {
      font-size: 12px;
      margin-top: 8px;
    }
  }
  .tournament-conditions {
    margin-bottom: 20px;
  }
  .active-tournaments-grid {
    margin-bottom: 32px;
    gap: 12px;
  }
  .game-input {
    height: 44px;
    input {
      font-size: 12px;
    }
  }
  .input-setter-btns {
    .btn-secondary {
      font-size: 12px;
      height: 36px;
    }
  }
  .last-game-item {
    grid-template-columns: 1fr 1fr 1fr;
    p {
      img {
        width: 14px;
      }
      font-size: 12px;
      &:nth-child(2),
      &:nth-child(3) {
        display: none;
      }
    }
  }
  .withdraw-limit {
    margin-top: 8px;
  }
  .game-options {
    padding: 12px 16px 16px 16px;
  }
  .last-game-table-nav {
    margin-top: 28px;
  }
  .last-game-nav-btn {
    font-size: 12px;
  }
  .online-count {
    p {
      font-size: 12px;
    }
  }
  .game-input {
    img {
      font-size: 12px;
    }
  }
  .chat-body {
    height: calc(100dvh - 340px);
  }
  .chat-input {
    input {
      font-size: 12px;
    }
  }
  .faq-grid {
    margin-top: 16px;
  }
  .faq-title {
    font-size: 12px;
  }
  .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    img {
      width: 15px;
    }
  }
  .faq-body {
    p {
      font-size: 12px;
    }
  }
  .mines-game {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 8px;
    padding: 16px;
    position: relative;
  }
  .mines-fields {
    grid-column: span 2;
    order: 1;
  }
  .lightning-amount-wrapper {
    order: 2;
  }
  .bombs-amount-wrapper {
    order: 3;
  }
  .mines-field {
    border-radius: 5px;
  }
  .game-input-secondary {
    margin-top: 0;
    height: 44px;
  }
  .mines-amounts-wrapper {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    border-radius: 5px;
    padding: 16px 20px;
    p {
      display: none;
    }
  }
  .game-input-secondary-btns {
    gap: 4px;
  }
  .game-options {
    .btn-primary {
      margin-top: 0;
    }
  }
  .mines-fields {
    width: 100%;
    justify-self: center;
  }
  .coef-list {
    margin-top: 36px;
  }
  .coef-item {
    height: 44px;
    span {
      font-size: 12px;
    }
  }
  .coef-item {
    min-width: 93px;
    p {
      font-size: 12px;
    }
  }

  .lightning-amount,
  .bombs-amount {
    font-size: 12px;
  }
  .mines-amounts-image-wrapper {
    flex-grow: 0;
    gap: 0px;
    img {
      width: 21px;
      animation: none;
    }
  }
  .open-slot-header {
    position: relative;
    margin-top: 35px;
    margin-bottom: 8px;
    .page-title {
      position: absolute;
      top: -36px;
      left: 50%;
      transform: translateX(-50%);
    }
  }
  .demo-checker {
    gap: 19px;
    padding: 7px 14px 7px 16px;
    p {
      font-size: 12px;
    }
  }
  .open-slot-btn {
    width: 36px;
    height: 36px;
    img {
      width: 21px;
      height: 21px;
    }
  }
  .referal-table-header {
    grid-template-columns: repeat(4, 1fr);
    padding: 14px 16px;
    p {
      font-size: 12px;
      &:nth-child(1) {
        display: none;
      }
    }
  }
  .referal-table-item {
    grid-template-columns: repeat(4, 1fr);
    padding: 10px 16px;
    p {
      &:nth-child(3) {
        width: 24px;
        height: 24px;
        font-size: 12px;
        padding: 4px 2.5px 4px 4.5px;
        margin-left: -10px;
      }
      &:nth-child(5) {
        font-size: 12px;
        img {
          width: 12px;
        }
      }
      font-size: 12px;
      &:nth-child(1) {
        display: none;
      }
    }
    div {
      img {
        width: 24px;
        height: 24px;
      }
    }
  }
  .profile-sub {
    gap: 8px;
  }
  .tournament-start-wrapper {
    h3 {
      font-size: 18px;
    }
    p {
      font-size: 15px;
    }
    .tournament-timer {
      .time {
        width: 30px;
        height: 34px;
        background: #f06bf959;
      }
    }
  }
  .tournament-information-title {
    font-size: 12px;
  }
  .promotions-list {
    overflow-x: auto;
  }
  .tournament-information-subtitle {
    font-size: 12px;
    margin-top: 8px;
  }
  .prizes-count {
    gap: 6px;
    span {
      width: 28px;
      height: 28px;
      img {
        width: 16px;
      }
    }
    p {
      font-size: 12px;
    }
  }
  .members-count {
    gap: 6px;
    span {
      width: 28px;
      height: 28px;
      img {
        width: 16px;
      }
    }
    p {
      font-size: 12px;
    }
  }
  .tournament-players-table-header {
    padding: 14px 31px 14px 16px;
    div {
      &:nth-child(1) {
        gap: 13px;
      }
      &:nth-child(2) {
        gap: 48px;
      }
    }
    p {
      font-size: 12px;
    }
  }
  .btn-fouth {
    font-size: 12px;
    height: 44px;
  }
  .game-input {
    img {
      width: 12px;
    }
  }
}
@media (max-width: 560px) {
  .popular-slots-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .prizes-wrapper {
    flex-direction: row;
    gap: 8px;
    margin-top: 12px;
  }
  .new-slots-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .all-slots-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .chat-open {
    .popular-slots-wrapper {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .new-slots-wrapper {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .all-slots-list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .sign-in-btn {
    font-size: 12px;
    padding: 9.5px 16.5px;
  }
  .sign-up-btn {
    font-size: 12px;
    padding: 9.5px 20.5px;
  }
  .logo {
    width: 113px;
    img {
      width: 100%;
    }
  }

  .wallet-history-item {
    display: flex;
    justify-content: space-between;
  }
  .search-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 360px) {
  .logo {
    width: 90px;
  }
  .wallet-history-item {
    p {
      font-size: 10px;
    }
  }
  .profile-nav-wrapper {
    align-items: baseline;
    flex-direction: column;
    gap: 8px;
  }
  .prizes-wrapper {
    flex-direction: column;
  }
  .dice-value-part {
    width: 42px;
    height: 64px;
    font-size: 28px;
  }
  .dice-range-wrapper {
    width: 217.53px;
  }
  .irs-grid {
    width: 88.2609% !important;
  }
}
@media (max-height: 700px) {
  .sidebar-footer {
    display: none;
  }
  .sidebar-links {
    gap: 20px;
  }
}

.dice-value-wrapper {
	transition: color 0.4s ease, text-shadow 0.4s ease;
	font-weight: bold;
	font-size: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dice-value-wrapper.scrambling {
	filter: blur(2px);
	transform: scale(0.98);
	opacity: 0.8;
	transition: filter 0.2s, transform 0.2s, opacity 0.2s;
}

.dice-value-wrapper.win {
	color: #ffb800;
	text-shadow: 0 0 6px rgba(255, 184, 0, 0.6),
	             0 0 12px rgba(255, 184, 0, 0.5),
	             0 0 20px rgba(255, 150, 0, 0.4);
}

.dice-value-wrapper.lose {
	color: #ff5252; 
	text-shadow: 0 0 5px rgba(255, 82, 82, 0.5), 
	             0 0 15px rgba(255, 82, 82, 0.4);
}

.toast {
	position: fixed;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(25, 28, 35, 0.9);
	color: #fff;
	padding: 12px 22px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 500;
	z-index: 9999;
	display: none;
	box-shadow: 0 4px 15px rgba(0,0,0,0.4);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

	.btn-primary:hover, .btn-secondary:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	}
	.btn-primary:active, .btn-secondary:active {
		transform: translateY(0);
		box-shadow: none;
	}
	.btn-primary, .btn-secondary {
		transition: all 0.2s ease-out;
	}
	.btn-primary:disabled, .btn-secondary:disabled {
		opacity: 0.6;
		cursor: not-allowed;
		transform: none;
		box-shadow: none;
	}

	.mines-fields {
		perspective: 1200px; 
	}
	.mines-field {
		position: relative;
		transform-style: preserve-3d;
		transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s;
		cursor: pointer;
		transform: rotateY(180deg);
		opacity: 0;
		visibility: hidden; 
	}
	.mines-field.visible {
		transform: rotateY(0deg);
		opacity: 1;
		visibility: visible;
	}
	.mines-field.no-transition {
		transition: none !important;
	}

	.mines-field::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: #2a2c3c; 
		border: 1px solid #4a4d60;
		border-radius: 8px;
		backface-visibility: hidden;
		z-index: 2;
	}
	.mines-field:hover::before {
		background: #3a3c50;
	}
	.mines-field .light, .mines-field .bomb {
		backface-visibility: hidden;
		transform: rotateY(180deg);
	}
	.mines-field.opened {
		transform: rotateY(180deg);
		cursor: default;
	}

	@keyframes shake {
		10%, 90% { transform: translate3d(-1px, 0, 0); }
		20%, 80% { transform: translate3d(2px, 0, 0); }
		30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
		40%, 60% { transform: translate3d(4px, 0, 0); }
	}
	.mines-game-wrapper.shake {
		animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
	}

	.mines-field.opened.light .light {
		animation: lightning-glow 1.5s infinite ease-in-out;
	}
	@keyframes lightning-glow {
		0%, 100% { filter: drop-shadow(0 0 3px #ffab00) brightness(1); }
		50% { filter: drop-shadow(0 0 12px #ffab00) brightness(1.3); }
	}

	.mines-field.faded {
		opacity: .25;
	}

	.game-win-popup {
		transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
		opacity: 0;
		transform: scale(0.7) translateY(20px);
		pointer-events: none;
	}
	.game-win-popup.show {
		display: flex !important;
		opacity: 1;
		transform: scale(1) translateY(0);
		pointer-events: auto;
	}

	.game-collect-btn{
		display:flex;
		align-items:center;
		justify-content:center;
		gap:10px;
		white-space:nowrap;
	}
	.game-collect-btn span{
		display:flex;
		align-items:center;
	}
	.game-collect-btn svg{
		margin-right:4px;
	}

.last-game-item.appearing {
	opacity: 0;
	transform: translateY(-5px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.last-game-item {
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.chat-controls {
	display: flex;
	gap: 4px;
	margin-left: 10px;
}

.chat-controls button {
	background: transparent;
	border: none;
	color: #aaa;
	cursor: pointer;
	font-size: 14px;
	padding: 0 4px;
	transition: color 0.2s;
}

.chat-controls button:hover {
	color: #ff5252;
}

.clear-chat-btn svg {
	width: 18px;
	height: 18px;
	fill: #bbb;
	transition: fill 0.2s;
}

.clear-chat-btn:hover svg {
	fill: #ff5c5c;
}

.open-tournament-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		align-items: stretch;
	}

	.tournament-start-wrapper {
		background: linear-gradient(90deg, #722EA5, #A738B5);
		color: white;
		border-radius: 12px;
		padding: 20px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.tournament-information-wrapper {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.tournament-start-wrapper {
		background: linear-gradient(135deg, #8B44C3, #C76DD7);
		color: white;
		border-radius: 16px;
		padding: 24px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
		min-height: 100%;
	}

	.tournament-start-wrapper h3 {
		font-size: 24px;
		font-weight: 700;
		margin-bottom: 12px;
	}

	.tournament-start-wrapper p {
		font-size: 16px;
		display: flex;
		align-items: center;
		gap: 8px;
		margin-bottom: auto;
		opacity: 0.9;
	}

	.tournament-btn-wrapper {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top: 24px;
	}

	.tournament-btn-wrapper .btn-fouth {
		padding: 12px 24px;
		background-color: #e46ee6;
		color: white;
		border-radius: 8px;
		font-weight: bold;
		font-size: 16px;
		border: none;
		cursor: pointer;
		transition: background 0.3s;
	}

	.tournament-btn-wrapper .btn-fouth:hover {
		background-color: #d753e3;
	}

	.tournament-timer {
		display: flex;
		align-items: center;
		gap: 6px;
		font-weight: bold;
	}

	.tournament-timer .time {
		background-color: rgba(255, 255, 255, 0.15);
		padding: 8px 12px;
		border-radius: 6px;
		min-width: 36px;
		text-align: center;
	}

	.tournament-information-card {
		background-color: #181A21;
		border-radius: 12px;
		padding: 20px;
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
	}

	.tournament-information-title {
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 12px;
	}

	.tournament-information-subtitle {
		font-size: 14px;
		color: #8a8f9c;
		line-height: 1.5;
	}

.slot-card {
	opacity: 0 !important;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.slot-card.show {
	opacity: 1 !important;
	transform: translateY(0);
}

@media (max-width: 768px) {
	.open-tournament-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.tournament-btn-wrapper {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.tournament-btn-wrapper .btn-fouth {
		width: 100%;
		font-size: 16px;
		padding: 14px 0;
	}

	.tournament-timer {
		justify-content: center;
	}

	.tournament-information-wrapper {
		flex-direction: column;
	}

	.tournament-information-card {
		padding: 16px;
	}

}

.deposite-wrapper,
.withdraw-wrapper {
  display: flex;
  gap: 24px; 
}

.wallet-payments-system-list {
  width: 50%;
}

.deposite-variant {
  width: 50%;
  display: flex; 
  flex-direction: column;
}
.withdraw-variant {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.deposite-variant .btn-primary {
  width: 100%;
  margin-top: 16px;
}
.withdraw-variant .btn-primary {
  width: 100%;
  margin-top: 8px;
}
.wallet-promo {
  margin-top: 24px;
}


@media (max-width: 768px) {
    
    .deposite-wrapper, .withdraw-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
	.wallet-payments-system-list {
		width: 100%;
	}

	.deposite-variant {
		width: 100%;
	}

	.withdraw-variant {
		width: 100%;
	}
}

