@charset "UTF-8";
.drawer-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 90vh;
  background-color: var(--color-bg-primary);
  z-index: 9999;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.drawer-menu.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.drawer-menu__header {
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 18px 0px 18px;
  background-color: var(--color-bg-primary);
}
.drawer-menu__header p {
  margin: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-22);
  color: var(--color-white);
}
.drawer-menu__close {
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--radius-md);
  -webkit-transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0px;
  margin: 0px;
}
.drawer-menu__close:hover {
  background-color: var(--color-bg-primary-dark-sm);
}
.drawer-menu__close i::before {
  content: "✕";
  font-style: normal;
}
.drawer-menu__content {
  overflow-y: auto;
  padding: 0 18px 18px 18px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.drawer-menu__balance {
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
  text-align: center;
}
.drawer-menu__balance img.banner {
  width: 100%;
  height: 100%;
  max-height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-lg);
}
.drawer-menu__balance .balance-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.drawer-menu__balance .balance-display .balance-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-20);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.drawer-menu__balance .balance-display .balance-amount {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-32);
  color: var(--color-white);
}
.drawer-menu__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.drawer-menu__cards img {
  width: 100%;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.drawer-menu__games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 17px 0px;
}
.drawer-menu__games div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer-menu__links {
  -webkit-column-gap: 41px;
     -moz-column-gap: 41px;
          column-gap: 41px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #1d2239;
  padding: 12px 16px;
  border: 1px solid #47536b;
  border-radius: var(--radius-md);
}
.drawer-menu__links div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.drawer-menu__links div p {
  margin-bottom: 0px;
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  line-height: 100%;
  color: #bcbdc4;
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .drawer-menu__games {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .drawer-menu__games div {
    border-radius: var(--radius-lg);
    cursor: pointer;
    -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .drawer-menu__games div:hover {
    background-color: var(--color-bg-primary-dark-xs);
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .drawer-menu__games .game-item {
    padding: 10px 6px;
  }
  .drawer-menu__games .game-item .game-icon {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
  .drawer-menu__games .game-item span {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .drawer-menu__cards .menu-card {
    padding: 12px 8px;
  }
  .drawer-menu__cards .menu-card img {
    width: 28px;
    height: 28px;
  }
}/*# sourceMappingURL=drawer-menu.css.map */