@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
@import url("fragment.css?v=3");
* {
  font-family: "Onest", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #111111;
  line-height: 1.4;
  transition: 0.4s all ease-in-out;
  padding: 0px;
  margin: 0px;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *::before, *::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html {
  background: transparent;
  color-scheme: dark;
}

html.light {
  background: transparent;
  color-scheme: light;
}

input, button, textarea {
  font-family: "Onest", sans-serif;
}

@media (hover: none) and (pointer: coarse) {
  input, textarea, select {
    font-size: 16px !important;
  }
}
input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

body {
  background: #2a2a2a;
}
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #2a2a2a;
}
body::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  background-color: rgba(86, 86, 96, 0.45);
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}

.container {
  width: 1200px;
  padding: 0px 20px;
  margin: 0px auto;
}

.header {
  width: 100%;
  background: rgba(22, 22, 22, 0.6392156863);
  box-shadow: 0px 0px 20px #111111;
  position: relative;
  z-index: 2;
}
.header__body {
  height: 100%;
  padding: 10px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.header__left:hover .header__circle {
  box-shadow: inset 0px 4px 16px rgba(0, 0, 0, 0.908);
}
.header__left:hover .header__circle img {
  height: 200%;
  bottom: -60px;
}
.header__circle {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  position: relative;
}
.header__circle img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 100%;
}
.header__name {
  display: none;
  flex-direction: column;
  gap: 6px;
}
.header__name p {
  color: #F15946;
  font-size: 22px;
  line-height: 1;
}
.header__name span {
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  display: block;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__icon-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #868686;
  flex-shrink: 0;
  box-shadow: inset 0px 0px 5px rgba(16, 16, 16, 0.79);
}
.header__icon-btn svg {
  flex-shrink: 0;
  stroke: #909090;
}
.header__icon-btn .header__theme-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.header__icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.header__lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__lang-flag img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 50%;
}
.header__auth {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.header__auth-login {
  border-radius: 50px;
  padding: 10px 24px;
  background: #b42929;
  box-shadow: inset 0px 0px 8px rgba(16, 16, 16, 0.615);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.header__auth-login:hover {
  box-shadow: inset 0px 4px 10px rgba(16, 16, 16, 0.506);
  background: rgba(205, 205, 205, 0.9882352941);
  color: #171717;
}
.header__auth-registration {
  border-radius: 50px;
  padding: 10px 24px;
  background: rgba(243, 243, 243, 0);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}
.header__auth-registration:hover {
  opacity: 0.7;
}
.header__user {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.header__user-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 10px;
}
.header__user-inner:hover {
  background: rgba(255, 255, 255, 0.031372549);
}
.header__user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  overflow: hidden;
  background: #612727;
  box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}
.header__user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__user-info p {
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.header__user-info span {
  color: #868686;
  font-size: 11px;
  line-height: 1;
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 210px;
  background: #1c1c1c;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.7), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}
.header__dropdown--open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}
.header__dropdown-item {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #aeaeae;
  cursor: pointer;
}
.header__dropdown-item:hover {
  background: #2a2a2a;
  color: #fff;
}
.header__dropdown-item--danger {
  color: #e76262;
}
.header__dropdown-item--danger:hover {
  background: #2d1f1f;
  color: #ff7070;
}
.header__dropdown-divider {
  height: 1px;
  background: #2a2a2a;
  margin: 4px 0px;
}

.preference-confirm .logout-confirm__icon img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

.search {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  height: 40px;
}
.search--clear-visible {
  gap: 10px;
}
.search__area {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1254901961);
  box-shadow: inset 0px 4px 10px rgba(20, 20, 20, 0.356);
  width: 300px;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.search__area input {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  color: #8b8b8b;
  padding-left: 40px;
  padding-right: 20px;
}
.search__area img {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0px;
  top: 0px;
  transform: scale(0.4);
  filter: invert(1);
  opacity: 0.5;
}
.search__area p {
  font-size: 13px;
  color: #9d9d9d;
  line-height: 1;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.search__clear {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34, 34, 34, 0.7960784314);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  max-width: 0px;
}
.search__clear img {
  width: 100%;
  height: auto;
  transform: scale(0.4);
  filter: invert(1);
  opacity: 0.5;
}
.search__clear:hover {
  box-shadow: inset 0px 0px 16px rgba(16, 16, 16, 0.829);
  background: #ff4b4b;
}
.search__clear:hover img {
  opacity: 1;
}

.sort {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.sort__title {
  padding-top: 6px;
  padding-right: 10px;
}
.sort__title p {
  color: #fff;
  line-height: 1;
}
.sort__title span {
  font-size: 10px;
  color: #868686;
  line-height: 1;
}
.sort__select {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34, 34, 34, 0.7960784314);
  background: rgba(0, 0, 0, 0.062745098);
  padding: 0;
  cursor: pointer;
}
.sort__select svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
  fill: none;
  color: #aaa4ae;
  stroke: #aaa4ae;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.18s ease, stroke 0.18s ease;
}
.sort__select svg * {
  fill: none;
  stroke: inherit;
}
.sort__select svg .sort-icon-fill {
  fill: currentColor !important;
  stroke: none !important;
}
.sort__select-active {
  background: rgba(177, 177, 177, 0.2666666667);
  box-shadow: inset 0px 0px 8px rgba(16, 16, 16, 0.656);
}
.sort__select-active svg {
  opacity: 1;
  color: #fff;
  stroke: #fff;
}
.sort__select .sort-icon-fill {
  color: #aaa4ae !important;
  fill: #aaa4ae !important;
}
.sort__select-active .sort-icon-fill {
  color: #fff !important;
  fill: #fff !important;
}
.sort__select:hover {
  box-shadow: inset 0px 0px 14px rgba(16, 16, 16, 0.841);
}
.sort__select:hover svg {
  opacity: 1;
}

.push {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.push__message {
  width: fit-content;
  max-width: min(420px, 100vw - 32px);
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: inset 0px 0px 8px rgba(16, 16, 16, 0.656);
  font-size: 14px;
  text-shadow: 0px 0px 10px #000;
  position: fixed;
  top: 84px;
  right: 24px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.push__message p {
  color: #fff;
}
.push__message-warning {
  background: rgba(255, 255, 255, 0.0823529412);
}
.push__message-active {
  transform: translateY(0px);
  opacity: 1;
  padding: 10px 10px;
}

.catalog {
  padding-bottom: 40px;
}
.catalog__title {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
}
.catalog__title p, .catalog__title h2 {
  font-size: 28px;
  color: #fff;
  line-height: 1;
  font-weight: 400;
}
.catalog__title span {
  color: #5e5e5e;
  line-height: 1;
  display: block;
  transform: translateY(-4px);
}
.catalog__tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.catalog__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
}
.catalog__card {
  border-radius: 14px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.062745098);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  border: 1px solid rgba(141, 141, 141, 0.1568627451);
}
.catalog__card:hover .catalog__bar {
  max-height: 60px;
  opacity: 1;
}
.catalog__card:hover .catalog__picture img {
  opacity: 1;
}
.catalog__card:hover .catalog__mark {
  opacity: 1;
}
.catalog__mark {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 100px;
  box-shadow: inset 0px 4px 10px rgba(16, 16, 16, 0.123);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  opacity: 0;
}
.catalog__mark img {
  width: 50%;
  height: auto;
  opacity: 0.5;
}
.catalog__mark:hover {
  box-shadow: inset 0px 4px 10px rgba(16, 16, 16, 0.424);
  background: #ffcc4b;
}
.catalog__mark:hover img {
  opacity: 1;
}
.catalog__mark--active {
  opacity: 1;
  background: #efaf0e;
  box-shadow: inset 0px 4px 10px rgba(16, 16, 16, 0.424);
}
.catalog__mark--active img {
  opacity: 1;
}
.catalog__picture {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.catalog__picture::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  box-shadow: inset 0px 0px 46px rgba(16, 16, 16, 0.734);
}
.catalog__picture img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}
.catalog__purchased {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(23, 23, 23, 0.046);
  box-shadow: inset 0px 0px 3px rgba(16, 16, 16, 0.734);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.catalog__purchased svg {
  width: 14px;
  height: auto;
  stroke: rgba(55, 55, 55, 0.964);
}
.catalog__purchased p {
  font-size: 10px;
  font-weight: 400;
  color: rgba(55, 55, 55, 0.964);
  line-height: 1;
}
.catalog__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}
.catalog__open, .catalog__buy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
}
.catalog__open img, .catalog__buy img {
  width: 16px;
  height: auto;
  filter: invert(0);
}
.catalog__open p, .catalog__buy p {
  color: #fff;
  font-size: 12px;
}
.catalog__open {
  height: 38px;
  width: calc(100% - 40px);
  cursor: pointer;
  border-radius: 10px;
  background: rgba(32, 32, 32, 0.7607843137);
  box-shadow: inset 0px 0px 16px rgba(28, 28, 28, 0.744);
}
.catalog__open:hover {
  background: #a0a0a0;
  box-shadow: inset 0px 0px 14px rgb(16, 16, 16);
}
.catalog__buy {
  height: 38px;
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  background: rgba(227, 227, 227, 0.1098039216);
  border-radius: 100px;
  cursor: pointer;
}
.catalog__buy img {
  width: 20px;
}
.catalog__buy:hover img {
  transform: scale(1.2);
}
.catalog__info {
  border-radius: 10px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.1254901961);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog__name {
  font-size: 13px;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 4px;
  border-radius: 8px;
}
.catalog__line {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.catalog__price, .catalog__minimum, .catalog__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 6px;
}
.catalog__price img, .catalog__minimum img, .catalog__number img {
  width: 24px;
  padding: 4px;
  border-radius: 100px;
}
.catalog__price p, .catalog__minimum p, .catalog__number p {
  color: #aeaeae;
  font-size: 11px;
}
.catalog__price-empty p, .catalog__minimum-empty p, .catalog__number-empty p {
  color: #e76262;
}
.catalog__price-empty img, .catalog__minimum-empty img, .catalog__number-empty img {
  background: rgba(181, 42, 42, 0.8392156863);
  box-shadow: inset 0px 0px 5px rgba(12, 12, 12, 0.79);
}
.catalog__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.catalog__button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: rgba(34, 34, 34, 0.7960784314);
  color: rgba(255, 255, 255, 0.5254901961);
  font-size: 14px;
  cursor: pointer;
}
.catalog__button svg {
  width: 24px;
  height: auto;
  opacity: 0.5;
}
.catalog__button-active {
  background: rgba(177, 177, 177, 0.7960784314);
  background: #b42929;
  box-shadow: inset 0px 0px 8px rgba(16, 16, 16, 0.638);
  color: #fff;
}
.catalog__button-active svg {
  opacity: 1;
}
.catalog__button:hover {
  color: #fff;
  box-shadow: inset 0px 0px 14px rgba(16, 16, 16, 0.929);
}
.catalog__button:hover svg {
  opacity: 1;
}
.catalog__empty {
  width: 100%;
  padding: 40px 20px;
  position: absolute;
  text-align: center;
  top: 40px;
}
.catalog__empty p {
  font-size: 14px;
  color: #999999;
}

img.emoji {
  height: 1.15em;
  width: auto;
  vertical-align: -0.2em;
  display: inline;
  margin: 0 1px;
  margin-color: #858585;
}

.product {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}
.product--open {
  opacity: 1;
  pointer-events: all;
}
.product--open .product__body {
  transform: translateY(0px) scale(1);
  opacity: 1;
  max-height: 88vh;
}
.product__body {
  width: 860px;
  max-width: 90vw;
  max-height: 0vh;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.85), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(-100px) scale(0.5);
  opacity: 0;
}
.product__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 10px;
  flex-shrink: 0;
  cursor: pointer;
}
.product__close p {
  color: #5e5e5e;
  font-size: 12px;
  line-height: 1;
}
.product__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.3;
}
.product__close:hover p {
  color: #bbbbbb;
}
.product__close:hover img {
  opacity: 0.7;
}
.product__block {
  display: flex;
  gap: 16px;
  padding: 0px 16px 18px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
.product__left {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.product__picture {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.product__picture::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  box-shadow: inset 0px 0px 46px rgba(16, 16, 16, 0.985);
}
.product__picture img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border-radius: 24px;
}
.product__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  min-height: 0;
}
.product__right::-webkit-scrollbar {
  width: 4px;
}
.product__right::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.1450980392);
  border-radius: 4px;
}
.product__right-title {
  font-size: 15px;
  color: #fff;
}
.product__name {
  font-size: 14px;
  text-align: center;
  color: #fff;
  line-height: 1.3;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.031372549);
  border-radius: 10px;
  box-shadow: inset 0px 0px 10px rgba(16, 16, 16, 0.5);
  flex-shrink: 0;
}
.product__line {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product__price, .product__number, .product__minimum, .product__format {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1254901961);
}
.product__price img, .product__number img, .product__minimum img, .product__format img {
  width: 34px;
  min-width: 34px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.8705882353);
}
.product__price p, .product__number p, .product__minimum p, .product__format p {
  color: #aeaeae;
  font-size: 12px;
  line-height: 1;
}
.product__format {
  flex-wrap: wrap;
  gap: 2px 10px;
}
.product__format p {
  white-space: nowrap;
  flex-shrink: 0;
}
.product__format-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}
.product__format-tags span {
  background: rgba(255, 255, 255, 0.0588235294);
  color: #aeaeae;
  padding: 2px 8px;
  padding-right: 12px;
  border-radius: 10px;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.product__format-tags span img {
  width: 12px;
  min-width: 12px;
  height: auto;
  padding: 0px;
  border-radius: 0px;
  overflow: auto;
  background: none;
}
.product__description {
  padding-right: 4px;
  min-height: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 4px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1254901961);
  gap: 0px;
}
.product__description-icon {
  width: 34px;
  min-width: 34px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.8705882353);
  margin-right: 10px;
  margin-bottom: 4px;
}
.product__description p {
  color: #aeaeae;
  font-size: 12px;
  line-height: 1;
}
.product__description span {
  font-size: 11px;
  color: #7e7e7e;
  line-height: 1.2;
  white-space: pre-wrap;
  display: block;
  background: rgba(255, 255, 255, 0.0235294118);
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  max-height: auto;
  overflow-y: auto;
}
.product__description span::-webkit-scrollbar {
  width: 4px;
}
.product__description span::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.1450980392);
  border-radius: 4px;
}
.product__number-empty p {
  color: #e76262;
}
.product__number-empty img {
  background: rgba(197, 12, 12, 0.5098039216);
}
.product__buy {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 10px;
  background: #b42929;
  box-shadow: inset 0px 0px 16px rgba(16, 16, 16, 0.7);
  cursor: pointer;
  flex-shrink: 0;
}
.product__buy img {
  width: 16px;
  height: auto;
  filter: drop-shadow(0px 0px 7px #000);
}
.product__buy p {
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.product__buy:hover {
  background: #c93232;
  box-shadow: inset 0px 0px 22px rgba(16, 16, 16, 0.9);
}
.product__buy--disabled {
  background: #2d2d2d;
  cursor: default;
  box-shadow: inset 0px 0px 10px rgba(16, 16, 16, 0.5);
}
.product__buy--disabled p {
  color: #555555;
}
.product__buy--disabled img {
  opacity: 0.3;
}
.product__buy--disabled:hover {
  background: #2d2d2d;
  box-shadow: inset 0px 0px 10px rgba(16, 16, 16, 0.5);
}

.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 500px;
  height: 100%;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  margin: 0 auto;
}
.auth-modal--open {
  opacity: 1;
  pointer-events: all;
}
.auth-modal--open .auth-modal__body {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.auth-modal__body {
  width: 460px;
  max-width: 92vw;
  max-height: 90vh;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.9), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.04);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 0px 0px 20px;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
}
.auth-modal__body::-webkit-scrollbar {
  width: 4px;
}
.auth-modal__body::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.1254901961);
  border-radius: 4px;
}
.auth-modal__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.auth-modal__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.auth-modal__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.auth-modal__close:hover p {
  color: #aaaaaa;
}
.auth-modal__close:hover img {
  opacity: 0.6;
}
.auth-modal__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 16px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 4px;
}
.auth-modal__logo-circle {
  width: 84px;
  position: relative;
  flex-shrink: 0;
}
.auth-modal__logo-circle img {
  width: 100%;
}
.auth-modal__logo-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.auth-modal__logo-name p {
  color: #F15946;
  font-size: 18px;
  line-height: 1;
}
.auth-modal__logo-name span {
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
}
.auth-modal__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px 20px 0px;
}
.auth-modal__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #222222;
  cursor: pointer;
}
.auth-modal__tab img {
  width: 16px;
  height: auto;
  filter: invert(1);
  opacity: 0.6;
}
.auth-modal__tab p {
  color: #5e5e5e;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.auth-modal__tab--active {
  background: #2d2020;
  box-shadow: inset 0px 0px 8px rgba(16, 16, 16, 0.5);
}
.auth-modal__tab--active img {
  opacity: 1;
}
.auth-modal__tab--active p {
  color: #F15946;
}
.auth-modal__tab:hover:not(.auth-modal__tab--active) {
  background: #282828;
}
.auth-modal__tab:hover:not(.auth-modal__tab--active) p {
  color: #aeaeae;
}
.auth-modal__panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 20px 0px;
}
.auth-modal__panel--active {
  display: flex;
}
.auth-modal__hint {
  font-size: 12px;
  color: #5e5e5e;
  line-height: 1.5;
  text-align: center;
}
.auth-modal__hint strong {
  color: #aeaeae;
}
.auth-modal__hint b, .auth-modal__hint-email {
  color: #e0e0e0;
  font-size: inherit;
  font-weight: 600;
}
.auth-modal__tg-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}
.auth-modal__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.auth-modal__avatar {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  background: #2d2d2d;
  flex-shrink: 0;
}
.auth-modal__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.auth-modal__avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-modal__avatar-fallback-logo {
  position: absolute !important;
  z-index: 0 !important;
  width: 50% !important;
  height: 50% !important;
  object-fit: contain !important;
  opacity: 0;
  filter: drop-shadow(0 0 14px rgba(255, 52, 52, 0.18));
}
.auth-modal__avatar--fallback .auth-modal__avatar-fallback-logo {
  opacity: 0.42;
  display: block;
}
.auth-modal__uname {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}
.auth-modal__uinfo {
  font-size: 12px;
  color: #5e5e5e;
  line-height: 1.6;
  text-align: center;
}
.auth-modal__big-icon {
  font-size: 40px;
  line-height: 1;
  text-align: center;
}
.auth-modal__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 250px;
}
.auth-modal__input {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  background: rgba(34, 34, 34, 0.7960784314);
  box-shadow: inset 0px 0px 8px rgba(16, 16, 16, 0.5);
  padding: 0px 14px;
  color: #aeaeae;
  font-size: 13px;
  resize: none;
}
.auth-modal__input::-webkit-outer-spin-button, .auth-modal__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.auth-modal__input[type=number] {
  -moz-appearance: textfield;
}
.auth-modal__input::placeholder {
  color: #4a4a4a;
}
.auth-modal__input:focus {
  box-shadow: inset 0px 0px 12px rgba(16, 16, 16, 0.7), 0px 0px 0px 1px rgba(180, 41, 41, 0.2509803922);
}
.auth-modal__action-btn {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  background: #b42929;
  box-shadow: inset 0px 0px 14px rgba(16, 16, 16, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  flex-shrink: 0;
}
.auth-modal__action-btn:hover {
  background: #c93232;
  box-shadow: inset 0px 0px 20px rgba(16, 16, 16, 0.8);
}
.auth-modal__action-btn--green {
  background: #2d6b28;
}
.auth-modal__action-btn--green:hover {
  background: #367030;
}
.auth-modal__action-btn--red {
  background: #3d2020;
  color: #e76262;
}
.auth-modal__action-btn--red:hover {
  background: #4d2828;
}
.auth-modal__error {
  font-size: 11px;
  color: #e76262;
  text-align: center;
  line-height: 1.4;
}
.auth-modal__subtabs {
  display: flex;
  gap: 0px;
  border-radius: 10px;
  overflow: hidden;
  background: #222222;
  padding: 4px;
  gap: 4px;
}
.auth-modal__subtab {
  flex: 1;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 13px;
  color: #5e5e5e;
  cursor: pointer;
}
.auth-modal__subtab--active {
  background: #2d2020;
  color: #F15946;
}
.auth-modal__subtab:hover:not(.auth-modal__subtab--active) {
  color: #aeaeae;
}
.auth-modal__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth-modal__captcha {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 78px;
  margin: 4px 0;
}
.auth-modal__captcha > div {
  margin: 0 auto;
  width: 298px !important;
  height: 72px !important;
  overflow: hidden;
  border-radius: 2px;
  background: #1f1f1f;
}
.auth-modal__captcha iframe {
  display: block;
  border: 0 !important;
  outline: 0 !important;
  margin: -2px 0 0 -2px;
}
.auth-modal__input--code {
  text-align: center;
  letter-spacing: 6px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.auth-modal__link {
  text-align: center;
  font-size: 12px;
  color: #888;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline dotted rgba(255, 255, 255, 0.15);
  text-underline-offset: 3px;
}
.auth-modal__link:hover {
  color: #b42929;
}

.logout-confirm {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}
.logout-confirm--open {
  opacity: 1;
  pointer-events: all;
}
.logout-confirm--open .logout-confirm__body {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.logout-confirm__body {
  width: 340px;
  max-width: 90vw;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.85), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.04);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
}
.logout-confirm__icon {
  font-size: 36px;
  line-height: 1;
}
.logout-confirm__title {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}
.logout-confirm__text {
  font-size: 12px;
  color: #5e5e5e;
  line-height: 1.6;
  text-align: center;
}
.logout-confirm__buttons {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
}
.logout-confirm__btn {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}
.logout-confirm__btn--yes {
  background: #3d2020;
  color: #e76262;
  box-shadow: inset 0px 0px 10px rgba(16, 16, 16, 0.5);
}
.logout-confirm__btn--yes:hover {
  background: #5a2020;
  color: #ff7070;
}
.logout-confirm__btn--no {
  background: rgba(34, 34, 34, 0.7960784314);
  color: #aeaeae;
  box-shadow: inset 0px 0px 10px rgba(16, 16, 16, 0.5);
}
.logout-confirm__btn--no:hover {
  background: #2d2d2d;
  color: #fff;
}

.buy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}
.buy-modal--open {
  opacity: 1;
  pointer-events: all;
}
.buy-modal--open .buy-modal__body {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.buy-modal__body {
  width: 480px;
  max-width: 92vw;
  max-height: 90vh;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.9), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.04);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0px 0px 20px;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
}
.buy-modal__body::-webkit-scrollbar {
  width: 4px;
}
.buy-modal__body::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.1254901961);
  border-radius: 4px;
}
.buy-modal__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.buy-modal__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.buy-modal__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.buy-modal__close:hover p {
  color: #aaaaaa;
}
.buy-modal__close:hover img {
  opacity: 0.6;
}
.buy-modal__title {
  padding: 0px 20px;
  color: #fff;
  font-size: 16px;
}
.buy-modal__header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0px 20px;
}
.buy-modal__picture {
  width: 200px;
  min-width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #2a2a2a;
  flex-shrink: 0;
  position: relative;
}
.buy-modal__picture::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  box-shadow: inset 0px 0px 46px rgba(16, 16, 16, 0.734);
}
.buy-modal__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.buy-modal__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.buy-modal__name {
  font-size: 14px;
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
  word-break: break-word;
  margin-bottom: 10px;
}
.buy-modal__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 6px;
}
.buy-modal__meta-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.buy-modal__meta-row img {
  width: 30px;
  min-width: 30px;
  padding: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.062745098);
}
.buy-modal__meta-row p {
  font-size: 11px;
  color: #868686;
  line-height: 1;
}
.buy-modal__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0px 20px;
}
.buy-modal__section-number {
  padding: 0px;
}
.buy-modal__section-label {
  font-size: 11px;
  color: #5e5e5e;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.buy-modal__qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.buy-modal__qty-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1254901961);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #aeaeae;
  cursor: pointer;
  user-select: none;
  line-height: 1;
}
.buy-modal__qty-btn:hover {
  background: #2d2d2d;
  color: #fff;
  box-shadow: inset 0px 0px 12px rgba(16, 16, 16, 0.7);
}
.buy-modal__qty-btn:active {
  box-shadow: inset 0px 0px 16px rgba(16, 16, 16, 0.9);
}
.buy-modal__qty-input {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1254901961);
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.buy-modal__qty-input::-webkit-outer-spin-button, .buy-modal__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.buy-modal__qty-input[type=number] {
  -moz-appearance: textfield;
}
.buy-modal__formats {
  display: flex;
  gap: 6px;
}
.buy-modal__format {
  flex: 1;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1254901961);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #5e5e5e;
  cursor: pointer;
  text-align: center;
}
.buy-modal__format--active {
  background: #2d2020;
  color: #F15946;
}
.buy-modal__format:hover:not(.buy-modal__format--active) {
  background: #272727;
  color: #aeaeae;
}
.buy-modal__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.1254901961);
  margin: 0px 20px;
  border-radius: 10px;
}
.buy-modal__total span {
  font-size: 12px;
  color: #5e5e5e;
  line-height: 1;
}
.buy-modal__total p {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}
.buy-modal__balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
}
.buy-modal__balance span {
  font-size: 11px;
  color: #5e5e5e;
  line-height: 1;
}
.buy-modal__balance p {
  font-size: 12px;
  color: #6bdb5f;
  line-height: 1;
}
.buy-modal__balance--low p {
  color: #e76262;
}
.buy-modal__error {
  font-size: 11px;
  color: #e76262;
  text-align: center;
  padding: 0px 20px;
  line-height: 1.5;
}
.buy-modal__action-btn {
  margin: 0px 20px;
  height: 40px;
  border-radius: 10px;
  background: #b42929;
  box-shadow: inset 0px 0px 16px rgba(16, 16, 16, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}
.buy-modal__action-btn:hover {
  background: #c93232;
  box-shadow: inset 0px 0px 22px rgba(16, 16, 16, 0.85);
}
.buy-modal__action-btn--disabled {
  background: #2d2d2d;
  color: #4a4a4a;
  cursor: default;
}
.buy-modal__action-btn--disabled:hover {
  background: #2d2d2d;
  box-shadow: inset 0px 0px 16px rgba(16, 16, 16, 0.6);
}

.profile-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 350;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}
.profile-modal--open {
  opacity: 1;
  pointer-events: all;
}
.profile-modal--open .profile-modal__body {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.profile-modal__body {
  width: 520px;
  max-width: 92vw;
  max-height: 88vh;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.9), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.04);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding-bottom: 24px;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
}
.profile-modal__body::-webkit-scrollbar {
  width: 4px;
}
.profile-modal__body::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.1254901961);
  border-radius: 4px;
}
.profile-modal__close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
}
.profile-modal__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.profile-modal__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.profile-modal__close:hover p {
  color: #aaaaaa;
}
.profile-modal__close:hover img {
  opacity: 0.6;
}
.profile-modal__avatar-wrap {
  padding: 0px 0px 12px;
}
.profile-modal__avatar {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: #612727;
  box-shadow: inset 0px 4px 16px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.profile-modal__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-modal__name {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  text-align: center;
  padding: 0px 20px;
}
.profile-modal__badge {
  font-size: 11px;
  color: #868686;
  line-height: 1;
  margin-top: 6px;
  padding: 4px 12px;
  background: #222222;
  border-radius: 50px;
  margin-bottom: 10px;
}
.profile-modal__blocks {
  display: flex;
  gap: 8px;
  padding: 10px 0px;
  width: 100%;
}
.profile-modal__block {
  width: 100%;
  border-radius: 10px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.profile-modal__block span {
  font-size: 10px;
  color: #5e5e5e;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.profile-modal__block p {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: 500;
}
.profile-modal__balances {
  display: flex;
  gap: 8px;
  width: 100%;
}
.profile-modal__balance {
  flex: 1;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.profile-modal__balance span {
  font-size: 10px;
  color: #5e5e5e;
  line-height: 1;
}
.profile-modal__balance p {
  font-size: 15px;
  color: #41a736;
  line-height: 1;
  font-weight: 500;
}
.profile-modal__section {
  width: 100%;
  padding: 12px 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-modal__section-label {
  font-size: 11px;
  color: #5e5e5e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
.profile-modal__ref-row {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(0, 0, 0, 0.1254901961);
  border-radius: 10px;
  padding: 8px 10px;
}
.profile-modal__ref-link {
  flex: 1;
  font-size: 11px;
  color: #868686;
  line-height: 1.4;
  word-break: break-all;
}
.profile-modal__copy-btn {
  white-space: nowrap;
  font-size: 11px;
  color: #b42929;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  background: #2d2020;
  flex-shrink: 0;
}
.profile-modal__copy-btn:hover {
  background: #3d2020;
  color: #F15946;
}
.profile-modal__ref-count {
  font-size: 12px;
  color: #5e5e5e;
  line-height: 1;
}
.profile-modal__ref-count strong {
  color: #aeaeae;
}

#tu-symbol {
  color: #a2a2a2;
}

.topup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: 100%;
  z-index: 350;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}
.topup-modal--open {
  opacity: 1;
  pointer-events: all;
}
.topup-modal--open .topup-modal__body {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.topup-modal__body {
  width: 440px;
  max-width: 92vw;
  max-height: 88vh;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.9), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.04);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  padding-bottom: 20px;
}
.topup-modal__body::-webkit-scrollbar {
  width: 4px;
}
.topup-modal__body::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.1254901961);
  border-radius: 4px;
}
.topup-modal__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
}
.topup-modal__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.topup-modal__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.topup-modal__close:hover p {
  color: #aaaaaa;
}
.topup-modal__close:hover img {
  opacity: 0.6;
}
.topup-modal__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.topup-modal__picture {
  width: 260px;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.topup-modal__picture img {
  width: 60%;
}
.topup-modal__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.topup-modal__title {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.topup-modal__cur-balances {
  display: flex;
  gap: 8px;
}
.topup-modal__cur-balance {
  flex: 1;
  background: rgba(0, 0, 0, 0.1254901961);
  border-radius: 10px;
  padding: 10px 12px;
}
.topup-modal__cur-balance span {
  font-size: 10px;
  color: #5e5e5e;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.topup-modal__cur-balance p {
  font-size: 15px;
  color: #6bdb5f;
  line-height: 1;
}
.topup-modal__section-label {
  font-size: 11px;
  color: #5e5e5e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
.topup-modal__currencies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.topup-modal__currency {
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1254901961);
  font-size: 12px;
  color: #5e5e5e;
  cursor: pointer;
}
.topup-modal__currency--active {
  background: #2d2020;
  color: #F15946;
}
.topup-modal__currency:hover:not(.topup-modal__currency--active) {
  background: #272727;
  color: #aeaeae;
}
.topup-modal__input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1254901961);
  padding: 0px 14px;
  color: #fff;
  font-size: 16px;
}
.topup-modal__input::-webkit-outer-spin-button, .topup-modal__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.topup-modal__input[type=number] {
  -moz-appearance: textfield;
}
.topup-modal__input::placeholder {
  color: #4a4a4a;
}
.topup-modal__hint {
  font-size: 12px;
  color: #5e5e5e;
  line-height: 1;
}
.topup-modal__action-btn {
  height: 40px;
  border-radius: 10px;
  background: #b42929;
  box-shadow: inset 0px 0px 16px rgba(16, 16, 16, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}
.topup-modal__action-btn:hover {
  background: #c93232;
}
.topup-modal__action-btn--cancel {
  background: #2d1f1f;
  color: #e76262;
}
.topup-modal__action-btn--cancel:hover {
  background: #3d2020;
}
.topup-modal__pay-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.topup-modal__pay-field {
  background: rgba(34, 34, 34, 0.7960784314);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: inset 0px 0px 6px rgba(16, 16, 16, 0.4);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.topup-modal__pay-field-label {
  font-size: 11px;
  color: #5e5e5e;
  line-height: 1;
}
.topup-modal__pay-field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.topup-modal__pay-usd {
  font-size: 11px;
  color: #5e5e5e;
  line-height: 1;
}
.topup-modal__copy-val {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.4;
  word-break: break-all;
  flex: 1;
}
.topup-modal__copy-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  color: #5e5e5e;
}
.topup-modal__copy-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.topup-modal__copy-btn:hover {
  background: #383838;
  color: #c0c0c0;
}
.topup-modal__copy-btn--copied {
  color: #86ff90 !important;
  background: rgba(122, 255, 137, 0.5490196078) !important;
}
.topup-modal__invoice-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 10px;
  background: #1a2840;
  color: #5aabf0;
  font-size: 13px;
  text-decoration: none;
}
.topup-modal__invoice-link:hover {
  background: #1e3050;
}
.topup-modal__qr {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  align-self: center;
  background: #fff;
}
.topup-modal__timer {
  font-size: 12px;
  color: #868686;
  text-align: center;
  line-height: 1;
}
.topup-modal__status {
  font-size: 13px;
  color: #5e5e5e;
  text-align: center;
  line-height: 1;
}
.topup-modal__success-icon {
  font-size: 48px;
  text-align: center;
  padding-top: 10px;
}
.topup-modal__success-amount {
  font-size: 22px;
  color: #6bdb5f;
  text-align: center;
  font-weight: 500;
  line-height: 1;
}

.history-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 350;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}
.history-modal--open {
  opacity: 1;
  pointer-events: all;
}
.history-modal--open .history-modal__body {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.history-modal__body {
  width: 680px;
  max-width: 92vw;
  max-height: 88vh;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.9), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.04);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  padding-bottom: 20px;
}
.history-modal__body::-webkit-scrollbar {
  width: 4px;
}
.history-modal__body::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.1254901961);
  border-radius: 4px;
}
.history-modal__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
}
.history-modal__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.history-modal__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.history-modal__close:hover p {
  color: #aaaaaa;
}
.history-modal__close:hover img {
  opacity: 0.6;
}
.history-modal__title {
  font-size: 18px;
  color: #fff;
  padding-bottom: 12px;
  line-height: 1;
}
.history-modal__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.history-modal__empty {
  text-align: center;
  padding: 40px 20px;
}
.history-modal__empty p {
  font-size: 14px;
  color: #5e5e5e;
}
.history-modal__card {
  background: rgba(0, 0, 0, 0.1254901961);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.history-modal__card:hover {
  background: rgba(22, 22, 22, 0.1254901961);
}
.history-modal__card-picture {
  width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #2a2a2a;
  position: relative;
}
.history-modal__card-picture::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  box-shadow: inset 0px 0px 6px rgba(16, 16, 16, 0.734);
}
.history-modal__card-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.history-modal__card-picture--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}
.history-modal__card-picture-fallback-logo {
  position: absolute !important;
  z-index: 0 !important;
  width: 50% !important;
  height: 50% !important;
  object-fit: contain !important;
  opacity: 0;
  filter: drop-shadow(0 0 14px rgba(255, 52, 52, 0.18));
}
.history-modal__card-picture--fallback .history-modal__card-picture-fallback-logo {
  opacity: 0.42;
}
.history-modal__card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.history-modal__card-name {
  font-size: 13px;
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
  word-break: break-word;
}
.history-modal__card-phone {
  width: fit-content;
  max-width: 100%;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #9d98a4;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 500;
  word-break: break-all;
}
.history-modal__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.history-modal__card-tag {
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 10px;
  line-height: 1;
  background: #2a2a2a;
  color: #868686;
}
.history-modal__card-tag--green {
  background: #1e3020;
  color: #6bdb5f;
}
.history-modal__card-tag--red {
  background: #2d1f1f;
  color: #e76262;
}
.history-modal__card-cost {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.history-modal__card-price {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
.history-modal__card-qty {
  font-size: 11px;
  color: #5e5e5e;
  line-height: 1;
}
.history-modal__nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px 0px;
  padding-top: 20px;
}
.history-modal__nav--catalog-style {
  padding-top: 20px;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}
.history-modal__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: rgba(34, 34, 34, 0.7960784314);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: #868686;
  cursor: pointer;
}
.history-modal__nav-btn--active {
  background: #b42929;
  color: #fff;
}
.history-modal__nav-btn:hover:not(.history-modal__nav-btn--active) {
  background: #2d2d2d;
  color: #fff;
}

.deposit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 350;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}
.deposit-modal--open {
  opacity: 1;
  pointer-events: all;
}
.deposit-modal--open .deposit-modal__body {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.deposit-modal__body {
  width: 680px;
  max-width: 92vw;
  max-height: 88vh;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.9), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.04);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  padding-bottom: 20px;
}
.deposit-modal__body::-webkit-scrollbar {
  width: 4px;
}
.deposit-modal__body::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.1254901961);
  border-radius: 4px;
}
.deposit-modal__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
}
.deposit-modal__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.deposit-modal__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.deposit-modal__close:hover p {
  color: #aaaaaa;
}
.deposit-modal__close:hover img {
  opacity: 0.6;
}
.deposit-modal__title {
  font-size: 18px;
  color: #fff;
  padding-bottom: 12px;
  line-height: 1;
}
.deposit-modal__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deposit-modal__empty {
  text-align: center;
  padding: 40px 20px;
}
.deposit-modal__empty p {
  font-size: 14px;
  color: #5e5e5e;
}
.deposit-modal__card {
  background: rgba(0, 0, 0, 0.1254901961);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.deposit-modal__card:hover {
  background: rgba(22, 22, 22, 0.1254901961);
}
.deposit-modal__card-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.deposit-modal__card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.deposit-modal__card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.deposit-modal__card-name {
  font-size: 14px;
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
}
.deposit-modal__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.deposit-modal__card-tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 100px;
  background: #2a2a2a;
  color: #9a9a9a;
}
.deposit-modal__card-tag--green {
  background: #1e3020;
  color: #6bdb5f;
}
.deposit-modal__card-tag--yellow {
  background: #332e16;
  color: #e6c34a;
}
.deposit-modal__card-tag--red {
  background: #2d1f1f;
  color: #e76262;
}
.deposit-modal__card-tag--grey {
  background: #262626;
  color: #8a8a8a;
}
.deposit-modal__card-cost {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}
.deposit-modal__card-price {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.deposit-modal__card-usd {
  font-size: 11px;
  color: #6e6e6e;
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  white-space: normal;
}
.deposit-modal__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding-top: 14px;
}
.deposit-modal__nav-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(34, 34, 34, 0.7960784314);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #868686;
  cursor: pointer;
}
.deposit-modal__nav-btn--active {
  background: #b42929;
  color: #fff;
}
.deposit-modal__nav-btn:hover:not(.deposit-modal__nav-btn--active) {
  background: #2d2d2d;
  color: #fff;
}

#deposit-nav {
  padding-top: 20px;
}

.deposit-modal__nav.deposit-modal__nav--catalog-style,
.history-modal__nav.history-modal__nav--catalog-style,
.preorder-modal__nav.preorder-modal__nav--catalog-style {
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 0;
  padding-top: 20px;
}

.deposit-currency-icon--usdt {
  background: rgb(5, 177, 94) !important;
}

.deposit-currency-icon--bnb {
  background: rgb(240, 196, 20) !important;
}

.deposit-currency-icon--ton {
  background: rgb(16, 126, 211) !important;
}

.deposit-currency-icon--cryptobot {
  background: rgb(61, 183, 240) !important;
}

.deposit-currency-icon--xrocket {
  background: rgb(87, 194, 245) !important;
}

.deposit-currency-icon--trx {
  background: rgb(204, 25, 52) !important;
}

.deposit-modal__card-icon,
.deposit-detail__icon {
  position: relative;
  overflow: visible;
}

.deposit-currency-network {
  position: absolute;
  right: -6px;
  bottom: -6px;
  z-index: 2;
  width: 21px;
  height: 21px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3137254902);
}
.deposit-currency-network img {
  width: 15px !important;
  height: 15px !important;
  object-fit: contain;
}

.deposit-detail__icon .deposit-currency-network {
  width: 24px;
  height: 24px;
  right: -7px;
  bottom: -7px;
  border-radius: 8px;
}
.deposit-detail__icon .deposit-currency-network img {
  width: 16px !important;
  height: 16px !important;
}

html.light .deposit-currency-network {
  border-color: #fff;
}

.deposit-detail {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.deposit-detail--open {
  opacity: 1;
  pointer-events: all;
}
.deposit-detail--open .deposit-detail__body {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.deposit-detail__body {
  background: #1e1e1e;
  border-radius: 18px;
  width: 460px;
  max-width: calc(100vw - 32px);
  max-height: 88vh;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
}
.deposit-detail__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.deposit-detail__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.deposit-detail__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.5;
}
.deposit-detail__close:hover p {
  color: #8a8a8a;
}
.deposit-detail__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.deposit-detail__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #2a2a2a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.deposit-detail__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.deposit-detail__head-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.deposit-detail__name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.deposit-detail__status {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
  background: #262626;
  color: #9a9a9a;
}
.deposit-detail__status--paid {
  background: #1e3020;
  color: #6bdb5f;
}
.deposit-detail__status--pending {
  background: #332e16;
  color: #e6c34a;
}
.deposit-detail__status--cancelled {
  background: #2d1f1f;
  color: #e76262;
}
.deposit-detail__status--expired {
  background: #262626;
  color: #8a8a8a;
}
.deposit-detail__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #252525;
  border-radius: 12px;
  padding: 14px 16px;
}
.deposit-detail__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.deposit-detail__row--copy {
  align-items: flex-start;
}
.deposit-detail__label {
  font-size: 13px;
  color: #5e5e5e;
  flex-shrink: 0;
}
.deposit-detail__value {
  font-size: 13px;
  color: #c0c0c0;
  text-align: right;
  word-break: break-all;
}
.deposit-detail__value--price {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.deposit-detail__value--copy {
  cursor: pointer;
  color: #d3a4a4;
}
.deposit-detail__value--copy:hover {
  color: #fff;
}
.deposit-detail__value--copied {
  color: #6bdb5f !important;
}
.deposit-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deposit-detail__action-btn {
  background: #b42929;
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.deposit-detail__action-btn:hover {
  opacity: 0.85;
}
.deposit-detail__hint {
  font-size: 12px;
  color: #7a7a7a;
  line-height: 1.5;
  text-align: center;
  padding: 0 4px;
}

.purchase-detail {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.purchase-detail--open {
  opacity: 1;
  pointer-events: all;
}
.purchase-detail--open .purchase-detail__body {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.purchase-detail__body {
  background: #1e1e1e;
  border-radius: 18px;
  width: 460px;
  max-width: calc(100vw - 32px);
  max-height: 88vh;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
}
.purchase-detail__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.purchase-detail__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.purchase-detail__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.5;
}
.purchase-detail__close:hover p {
  color: #8a8a8a;
}
.purchase-detail__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.purchase-detail__picture {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #2a2a2a;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.purchase-detail__picture::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  box-shadow: inset 0px 0px 6px rgba(16, 16, 16, 0.734);
}
.purchase-detail__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.purchase-detail__picture--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}
.purchase-detail__picture .purchase-detail__fallback-logo {
  position: absolute !important;
  z-index: 0 !important;
  width: 50% !important;
  height: 50% !important;
  object-fit: contain !important;
  opacity: 0;
  filter: drop-shadow(0 0 14px rgba(255, 52, 52, 0.18));
}
.purchase-detail__picture--fallback .purchase-detail__fallback-logo {
  opacity: 0.42;
}
.purchase-detail__head-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.purchase-detail__name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.purchase-detail__status {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.purchase-detail__status--success {
  background: #1e3020;
  color: #6bdb5f;
}
.purchase-detail__status--error {
  background: #2d1f1f;
  color: #e76262;
}
.purchase-detail__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #252525;
  border-radius: 12px;
  padding: 14px 16px;
}
.purchase-detail__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.purchase-detail__label {
  font-size: 13px;
  color: #5e5e5e;
}
.purchase-detail__value {
  font-size: 13px;
  color: #c0c0c0;
  text-align: right;
}
.purchase-detail__value--price {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.purchase-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.purchase-detail__action-btn {
  background: #b42929;
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.purchase-detail__action-btn--secondary {
  background: #2a2a2a;
  color: #868686;
}
.purchase-detail__action-btn:hover {
  opacity: 0.85;
}
.purchase-detail__action-btn--disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.purchase-detail__unavail {
  font-size: 13px;
  color: #5e5e5e;
  text-align: center;
  padding: 8px 0;
}

.preorder-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 350;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}
.preorder-modal--open {
  opacity: 1;
  pointer-events: all;
}
.preorder-modal--open .preorder-modal__body {
  transform: translateY(0px) scale(1);
  opacity: 1;
}
.preorder-modal__body {
  width: 680px;
  max-width: 92vw;
  max-height: 88vh;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.9), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.04);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  padding-bottom: 20px;
}
.preorder-modal__body::-webkit-scrollbar {
  width: 4px;
}
.preorder-modal__body::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.1254901961);
  border-radius: 4px;
}
.preorder-modal__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
}
.preorder-modal__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.preorder-modal__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.preorder-modal__close:hover p {
  color: #aaaaaa;
}
.preorder-modal__close:hover img {
  opacity: 0.6;
}
.preorder-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
}
.preorder-modal__title {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.preorder-modal__create-btn {
  font-size: 12px;
  color: #b42929;
  cursor: pointer;
  padding: 2px 12px;
  border-radius: 50px;
  background: #2d1a1a;
  line-height: 1;
}
.preorder-modal__create-btn:hover {
  background: #b42929;
  color: #fff;
}
.preorder-modal__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.preorder-modal__empty {
  text-align: center;
  padding: 40px 20px;
}
.preorder-modal__empty p {
  font-size: 14px;
  color: #5e5e5e;
}
.preorder-modal__card {
  background: rgba(0, 0, 0, 0.1254901961);
  border-radius: 12px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: inset 0px 0px 6px rgba(16, 16, 16, 0.3);
  cursor: pointer;
}
.preorder-modal__card:hover {
  background: rgba(32, 32, 32, 0.1254901961);
}
.preorder-modal__card-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.preorder-modal__card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.preorder-modal__card-name {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  word-break: break-word;
}
.preorder-modal__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.preorder-modal__card-tag {
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 10px;
  line-height: 1;
  background: #2a2a2a;
  color: #868686;
}
.preorder-modal__card-tag--green {
  background: #1e3020;
  color: #6bdb5f;
}
.preorder-modal__card-tag--yellow {
  background: #2e2a16;
  color: #d4b84a;
}
.preorder-modal__card-tag--red {
  background: #2d1f1f;
  color: #e76262;
}
.preorder-modal__card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.preorder-modal__card-qty {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
.preorder-modal__card-cancel {
  font-size: 11px;
  color: #5e5e5e;
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.preorder-modal__card-cancel:hover {
  background: #b42929;
  color: #fff;
}
.preorder-modal__nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px 0px;
}
.preorder-modal__nav--catalog-style {
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}
.preorder-modal__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: rgba(34, 34, 34, 0.7960784314);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: #868686;
  cursor: pointer;
}
.preorder-modal__nav-btn--active {
  background: #b42929;
  color: #fff;
}
.preorder-modal__nav-btn:hover:not(.preorder-modal__nav-btn--active) {
  background: #2d2d2d;
  color: #fff;
}

.preorder-create {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.preorder-create--open {
  opacity: 1;
  pointer-events: all;
}
.preorder-create--open .preorder-create__body {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.preorder-create__body {
  width: 460px;
  max-width: 92vw;
  background: #1c1c1c;
  border-radius: 18px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.95), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05);
  padding: 0px 0px 24px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
}
.preorder-create__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
}
.preorder-create__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.preorder-create__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.preorder-create__close:hover p {
  color: #aaaaaa;
}
.preorder-create__close:hover img {
  opacity: 0.6;
}
.preorder-create__title {
  font-size: 20px;
  color: #fff;
  text-align: center;
  padding: 4px 24px 0px;
  line-height: 1;
}
.preorder-create__steps {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 16px 24px 0px;
}
.preorder-create__step {
  height: 4px;
  flex: 1;
  border-radius: 100px;
  background: #2a2a2a;
}
.preorder-create__step--active {
  background: #b42929;
}
.preorder-create__label {
  font-size: 13px;
  color: #868686;
  text-align: center;
  padding: 14px 24px 0px;
  line-height: 1.4;
}
.preorder-create__input {
  margin: 12px 24px 0px;
  background: #141414;
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-size: 14px;
  box-shadow: inset 0px 2px 8px rgba(0, 0, 0, 0.4);
  width: calc(100% - 48px);
  -moz-appearance: textfield;
  appearance: textfield;
}
.preorder-create__input::-webkit-outer-spin-button, .preorder-create__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.preorder-create__input::placeholder {
  color: #484848;
}
.preorder-create__input:focus {
  box-shadow: inset 0px 2px 8px rgba(0, 0, 0, 0.4), 0px 0px 0px 1px #b42929;
}
.preorder-create__hint {
  font-size: 11px;
  color: #444444;
  padding: 8px 24px 0px;
  text-align: center;
  line-height: 1.4;
}
.preorder-create__error {
  font-size: 11px;
  color: #e76262;
  padding: 6px 24px 0px;
  text-align: center;
  min-height: 22px;
  line-height: 1.4;
}
.preorder-create__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 24px 0px;
}
.preorder-create__btn {
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.preorder-create__btn--primary {
  background: #b42929;
  color: #fff;
}
.preorder-create__btn--primary:hover {
  background: #cc3030;
}
.preorder-create__btn--secondary {
  background: #222222;
  color: #686868;
}
.preorder-create__btn--secondary:hover {
  background: #2a2a2a;
  color: #aaaaaa;
}

.desktop-push {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e1e1e;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.7), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.06);
  z-index: 9999;
  min-width: 300px;
  max-width: 420px;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
}
.desktop-push--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.desktop-push--success {
  background: #182318;
  box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.7), inset 0px 0px 0px 1px rgba(107, 219, 95, 0.15);
}
.desktop-push__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.desktop-push__icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}
.desktop-push__icon--payment {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.desktop-push__icon--payment img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.desktop-push__icon--payment .deposit-currency-network {
  width: 18px;
  height: 18px;
  right: -5px;
  bottom: -5px;
  border-radius: 6px;
}
.desktop-push__icon--payment .deposit-currency-network img {
  width: 11px !important;
  height: 11px !important;
}
.desktop-push__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.desktop-push__title {
  font-size: 13px;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.desktop-push__timer {
  font-size: 11px;
  color: #5e5e5e;
  line-height: 1;
}
.desktop-push__btn {
  background: #b42929;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
.desktop-push__btn:hover {
  opacity: 0.85;
}

:root {
  --sidebar-width: 254px;
  --sidebar-collapsed-width: 76px;
  --chrome-gap: 18px;
  --workspace-max-width: 1200px;
  --sidebar-center-offset: 127px;
}

body {
  padding-top: 76px;
  background: radial-gradient(circle at 72% -20%, #3a2027 0%, #1b1b1e 38%, #121216 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
}

body:not(.workspace-ready) .catalog {
  display: none !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(18, 18, 22, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 500;
}
.header .container {
  width: 100%;
  max-width: none;
}
.header__circle {
  width: 40px;
  height: 40px;
}
.header__left:hover .header__circle img {
  height: 100%;
  bottom: auto;
}
.header__name {
  gap: 5px;
}
.header__name p {
  letter-spacing: -1.2px;
  font-size: 17px;
}
.header__name span {
  font-family: "Onest", sans-serif;
  color: #87838a;
  letter-spacing: 0.02em;
  font-size: 9px;
}
.header__sidebar-toggle {
  display: none;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.header__sidebar-toggle span {
  display: block;
  width: 15px;
  height: 1px;
  border-radius: 99px;
  background: #c9c2cb;
  transition: transform 0.18s ease;
}
.header__sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header__user-inner {
  cursor: default;
}
.header__dropdown {
  display: none !important;
}

.app-sidebar {
  width: var(--sidebar-width);
  position: fixed;
  left: 0;
  top: 60px;
  bottom: 0;
  z-index: 450;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  background: rgba(18, 18, 22, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transition: width 0.28s ease;
  overflow-y: scroll;
  overscroll-behavior: contain;
  scrollbar-gutter: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: margin 0.28s ease, width 0.28s ease;
}
.app-sidebar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.app-sidebar::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.app-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.app-sidebar::-webkit-scrollbar-thumb {
  background: rgba(86, 86, 96, 0.5);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 10px;
}
.app-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(126, 126, 140, 0.62);
}
.app-sidebar__top {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 34px;
  padding: 0 8px;
  margin-bottom: 22px;
}
.app-sidebar__toggle {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex: 0 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}
.app-sidebar__toggle span {
  width: 14px;
  height: 1px;
  background: rgba(210, 204, 208, 0.737254902);
  border-radius: 10px;
}
.app-sidebar__toggle:hover {
  background: rgba(255, 107, 94, 0.22);
}
.app-sidebar__label {
  color: #807a82;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 600;
}
.app-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.app-sidebar__bottom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.app-sidebar__item {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 12px;
  padding: 0 12px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  color: #aaa4ab;
}
.app-sidebar__item b {
  width: 20px;
  flex: 0 0 20px;
  text-align: center;
  color: #96909a;
  line-height: 1;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-sidebar__item b svg {
  width: 19px;
  height: 19px;
  color: inherit !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-sidebar__item b svg path, .app-sidebar__item b svg circle, .app-sidebar__item b svg rect {
  stroke: currentColor !important;
  fill: none !important;
}
.app-sidebar__item span {
  color: inherit;
  font-size: 13px;
  font-weight: 500;
}
.app-sidebar__item:hover {
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}
.app-sidebar__item:hover b {
  color: #fff;
}
.app-sidebar__item--active {
  background: linear-gradient(90deg, rgba(241, 89, 70, 0.24), rgba(241, 89, 70, 0.06));
  box-shadow: inset 0 0 0 1px rgba(255, 107, 94, 0.15);
  color: #fff;
}
.app-sidebar__item--active b {
  color: #ff7668;
}
.app-sidebar__item--danger {
  color: #cb7580;
}
.app-sidebar__item--danger b {
  color: #d76673;
}
.app-sidebar__item--danger:hover {
  background: rgba(206, 72, 87, 0.12);
}

.app-sidebar__item b svg,
.app-sidebar__item b svg * {
  color: #96909a !important;
  stroke: #96909a !important;
}

.app-sidebar__item:hover b svg,
.app-sidebar__item:hover b svg * {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.app-sidebar__item.app-sidebar__item--active b svg,
.app-sidebar__item.app-sidebar__item--active b svg * {
  color: #ff7668 !important;
  stroke: #ff7668 !important;
}

.app-sidebar__item.app-sidebar__item--danger b svg,
.app-sidebar__item.app-sidebar__item--danger b svg * {
  color: #d76673 !important;
  stroke: #d76673 !important;
}

body.sidebar-collapsed {
  --sidebar-width: var(--sidebar-collapsed-width);
  --sidebar-center-offset: 38px;
}
body.sidebar-collapsed .app-sidebar {
  overflow-x: hidden;
}
body.sidebar-collapsed .app-sidebar__label, body.sidebar-collapsed .app-sidebar__item span {
  opacity: 0;
  pointer-events: none;
}
body.sidebar-collapsed .app-sidebar__item {
  padding-left: 16px;
  gap: 0;
}
body.sidebar-collapsed .app-sidebar__toggle span:last-child {
  transform: translateX(4px);
}

.app-sidebar + .container {
  width: calc(100% - var(--sidebar-width) - 28px);
  max-width: 1200px;
  margin: 0 18px 0 calc(var(--sidebar-width) + 18px);
  padding: 0 12px 30px;
  transition: margin 0.28s ease, width 0.28s ease;
}

.main {
  margin-top: 80px;
}

body.workspace-open {
  overflow: hidden;
}
body.workspace-open .app-sidebar + .container {
  display: none;
}

body.workspace-open .profile-modal.profile-modal--open,
body.workspace-open .topup-modal.topup-modal--open,
body.workspace-open .history-modal.history-modal--open,
body.workspace-open .deposit-modal.deposit-modal--open,
body.workspace-open .preorder-modal.preorder-modal--open,
body.workspace-open .auth-modal.auth-modal--open,
body.workspace-open .product.product--open {
  top: 94px;
  right: 24px;
  bottom: 24px;
  left: calc(var(--sidebar-width) + 18px);
  width: fit-content;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: transparent;
  backdrop-filter: none;
  z-index: 420;
  opacity: 1;
  pointer-events: all;
  transition: left 0.28s ease;
}

body[data-workspace=auth] .auth-modal.auth-modal--open,
body.workspace-open .product.product--open {
  top: 76px;
  right: 0;
  bottom: 0;
  left: var(--sidebar-width);
  background: #151519;
  align-items: flex-start;
  overflow-y: auto;
}

body[data-workspace=auth] .auth-modal.auth-modal--open .auth-modal__body {
  width: min(680px, 100%);
  max-width: none;
  min-height: 0;
  height: auto;
  margin: 0 auto;
  padding: 0 0 42px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

body.workspace-open .product.product--open .product__body {
  width: min(1320px, 100%);
  max-width: none;
  height: auto;
  min-height: 100%;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.workspace-open .product.product--open .product__block {
  padding: 0px;
  gap: 28px;
}

body.workspace-open .auth-modal__close,
body.workspace-open .product__close {
  justify-content: flex-start;
  padding: 0 0 24px;
  background: transparent;
}

body.workspace-open .auth-modal__close p,
body.workspace-open .product__close p {
  color: #9c96a0;
  font-size: 13px;
}

body.workspace-open .auth-modal__close img,
body.workspace-open .product__close img {
  transform: rotate(180deg);
  opacity: 0.6;
}

body.workspace-open .profile-modal.profile-modal--open .profile-modal__body,
body.workspace-open .topup-modal.topup-modal--open .topup-modal__body,
body.workspace-open .history-modal.history-modal--open .history-modal__body,
body.workspace-open .deposit-modal.deposit-modal--open .deposit-modal__body,
body.workspace-open .preorder-modal.preorder-modal--open .preorder-modal__body,
body.workspace-open .auth-modal.auth-modal--open .auth-modal__body,
body.workspace-open .product.product--open .product__body {
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  border-radius: 22px;
  transform: none;
  opacity: 1;
}

body.workspace-open .profile-modal.profile-modal--open .profile-modal__body,
body.workspace-open .topup-modal.topup-modal--open .topup-modal__body {
  margin: auto;
  height: auto;
}

body.workspace-open .auth-modal.auth-modal--open .auth-modal__body {
  max-width: 760px;
  margin: auto;
  height: auto;
}

body.workspace-open .product.product--open .product__body {
  padding: 0;
  max-width: none;
}

body.workspace-open .history-modal.profile-modal--open .history-modal__body {
  min-height: 0;
}

body.workspace-open .history-modal.history-modal--open .history-modal__body,
body.workspace-open .deposit-modal.deposit-modal--open .deposit-modal__body,
body.workspace-open .preorder-modal.preorder-modal--open .preorder-modal__body {
  padding-bottom: 26px;
}

body.workspace-open .profile-modal__close,
body.workspace-open .topup-modal__close,
body.workspace-open .history-modal__close,
body.workspace-open .deposit-modal__close,
body.workspace-open .preorder-modal__close,
body.workspace-open .auth-modal__close,
body.workspace-open .product__close {
  position: sticky;
  top: 0;
  z-index: 1;
  background: inherit;
  padding-top: 18px;
}

body.workspace-open .profile-modal__close p,
body.workspace-open .topup-modal__close p,
body.workspace-open .history-modal__close p,
body.workspace-open .deposit-modal__close p,
body.workspace-open .preorder-modal__close p,
body.workspace-open .auth-modal__close p,
body.workspace-open .product__close p {
  color: #a49da5;
}

.light .app-sidebar {
  background: rgba(248, 247, 248, 0.82);
  border-color: rgba(40, 22, 29, 0.08);
}

.light .app-sidebar__item {
  color: #625b62;
}
.light .app-sidebar__item b {
  color: #746d75;
}

.light .app-sidebar__item--active {
  color: #33171b;
  background: linear-gradient(90deg, rgba(241, 89, 70, 0.24), rgba(241, 89, 70, 0.07));
}

.light .app-sidebar__item:hover {
  background: rgba(30, 20, 25, 0.06);
}

.buy-confirm {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.buy-confirm--open {
  opacity: 1;
  pointer-events: all;
}
.buy-confirm--open .buy-confirm__body {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.buy-confirm__body {
  width: 400px;
  max-width: 92vw;
  background: #1c1c1c;
  border-radius: 18px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.95), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
}
.buy-confirm__icon {
  font-size: 36px;
  line-height: 1;
}
.buy-confirm__title {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}
.buy-confirm__text {
  font-size: 13px;
  color: #868686;
  text-align: center;
  line-height: 1.6;
  padding: 0px 10px;
  white-space: pre-line;
}
.buy-confirm__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}
.buy-confirm__btn {
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}
.buy-confirm__btn--yes {
  background: #b42929;
  color: #fff;
}
.buy-confirm__btn--yes:hover {
  background: #cc3030;
}
.buy-confirm__btn--no {
  background: #222222;
  color: #686868;
}
.buy-confirm__btn--no:hover {
  background: #2a2a2a;
  color: #aaaaaa;
}

.buy-success {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.buy-success--open {
  opacity: 1;
  pointer-events: all;
}
.buy-success--open .buy-success__body {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.buy-success__body {
  width: 400px;
  max-width: 92vw;
  background: #1c1c1c;
  border-radius: 18px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.95), inset 0px 0px 0px 1px rgba(107, 219, 95, 0.1);
  padding: 0px 0px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
}
.buy-success__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
  width: 100%;
}
.buy-success__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.buy-success__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.buy-success__close:hover p {
  color: #aaaaaa;
}
.buy-success__close:hover img {
  opacity: 0.6;
}
.buy-success__icon {
  font-size: 48px;
  line-height: 1;
  margin-top: 10px;
}
.buy-success__title {
  font-size: 20px;
  color: #6bdb5f;
  font-weight: 600;
  margin-top: 8px;
}
.buy-success__info {
  font-size: 13px;
  color: #868686;
  text-align: center;
  line-height: 1.5;
  padding: 8px 24px 0px;
  white-space: pre-line;
}
.buy-success__download {
  margin: 14px 24px 0px;
  height: 44px;
  border-radius: 10px;
  background: #1e3020;
  color: #6bdb5f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  width: calc(100% - 48px);
}
.buy-success__download:hover {
  background: #243827;
}
.buy-success__action-btn {
  margin: 8px 24px 0px;
  width: calc(100% - 48px);
  height: 40px;
  border-radius: 10px;
  background: #222222;
  color: #686868;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
}
.buy-success__action-btn:hover {
  background: #2a2a2a;
  color: #aaaaaa;
}

.buy-loading {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 18, 28, 0.6);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.buy-loading--open {
  display: flex;
}
.buy-loading__box {
  background: #1c1c1c;
  border-radius: 20px;
  padding: 38px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 340px;
  text-align: center;
}
.buy-loading__spinner {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #b42929;
  border-radius: 50%;
  animation: buy-spin 0.8s linear infinite;
}
.buy-loading__title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.buy-loading__text {
  color: #888;
  font-size: 13px;
  line-height: 1.5;
}

@keyframes buy-spin {
  to {
    transform: rotate(360deg);
  }
}
.phonecode-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.phonecode-modal--open {
  opacity: 1;
  pointer-events: all;
}
.phonecode-modal--open .phonecode-modal__body {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.phonecode-modal__body {
  width: 440px;
  max-width: 92vw;
  background: #1c1c1c;
  border-radius: 18px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.95), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05);
  padding: 0px 0px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
}
.phonecode-modal__close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 0px;
  cursor: pointer;
  width: 100%;
}
.phonecode-modal__close p {
  color: #4a4a4a;
  font-size: 12px;
  line-height: 1;
}
.phonecode-modal__close img {
  width: 14px;
  height: auto;
  filter: invert(1);
  opacity: 0.25;
}
.phonecode-modal__close:hover p {
  color: #aaaaaa;
}
.phonecode-modal__close:hover img {
  opacity: 0.6;
}
.phonecode-modal__banner {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 8px;
}
.phonecode-modal__status {
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 16px 24px 0px;
  line-height: 1.6;
  white-space: pre-line;
}
.phonecode-modal__status strong {
  color: #F15946;
}
.phonecode-modal__copyable {
  display: inline-block;
  cursor: pointer;
  padding: 2px 8px;
  margin: 0 1px;
  border-radius: 6px;
  background: rgba(241, 89, 70, 0.08);
  color: inherit;
  position: relative;
  transition: background 0.18s ease, transform 0.15s ease;
  user-select: all;
  -webkit-user-select: all;
}
.phonecode-modal__copyable:hover {
  background: rgba(241, 89, 70, 0.16);
}
.phonecode-modal__copyable:active {
  transform: scale(0.97);
}
.phonecode-modal__copyable::after {
  content: "✓ Скопировано";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #2e7d32;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.phonecode-modal__copyable--copied {
  background: rgba(46, 125, 50, 0.18);
}
.phonecode-modal__copyable--copied::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.phonecode-modal__timer-block {
  margin-top: 12px;
}
.phonecode-modal__timer {
  font-size: 28px;
  color: #F15946;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.phonecode-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 24px 0px;
  width: 100%;
}
.phonecode-modal__btn {
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}
.phonecode-modal__btn--cancel {
  background: #2d1f1f;
  color: #e76262;
}
.phonecode-modal__btn--cancel:hover {
  background: #3d2020;
}
.phonecode-modal__btn--home {
  background: #222222;
  color: #868686;
}
.phonecode-modal__btn--home:hover {
  background: #2a2a2a;
  color: #aaaaaa;
}

.format {
  margin-top: 64px;
  margin-bottom: 64px;
}
.format__header {
  text-align: center;
  margin-bottom: 40px;
}
.format__title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}
.format__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.format__block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.format__card {
  width: 100%;
  border-radius: 10px;
  padding: 20px;
  background: #333333;
}
.format__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.format__icon {
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(127, 127, 127, 0.0509803922);
}
.format__icon img {
  width: 50%;
}
.format__name {
  font-size: 16px;
  color: #b3b3b3;
  width: 100%;
  text-align: center;
}

.format {
  margin-top: 64px;
  margin-bottom: 64px;
}
.format__header {
  text-align: center;
  margin-bottom: 40px;
}
.format__title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}
.format__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.format__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.format__card {
  background: rgba(0, 0, 0, 0.062745098);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: fit-content;
  align-self: flex-start;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3764705882);
}
.format__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.format__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.format__icon img {
  width: 50%;
  height: auto;
}
.format__name {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4392156863);
}
.format--tdata .format__name {
  color: #6bb8ff;
}
.format--session .format__name {
  color: #5de090;
}
.format--phonecode .format__name {
  color: #ffb060;
}
.format__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.format__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
.format__desc b {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.format__desc code {
  background: rgba(127, 127, 127, 0.0509803922);
  padding: 1px 7px;
  border-radius: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3137254902);
}
.format__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.format__features li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.format__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 11px;
  font-weight: 700;
  top: 1px;
}
.format--tdata .format__features li::before {
  color: #4a9eff;
}
.format--session .format__features li::before {
  color: #4cdb80;
}
.format--phonecode .format__features li::before {
  color: #ffa040;
}
.format__for {
  margin-top: auto;
  background: rgba(127, 127, 127, 0.0509803922);
  border-radius: 10px;
  padding: 13px 16px;
}
.format__for span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #ffffff;
}
.format__for p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.format--tdata .format__for span {
  color: #4a9eff;
}
.format--session .format__for span {
  color: #4cdb80;
}
.format--phonecode .format__for span {
  color: #ffa040;
}

.faq {
  margin-top: 64px;
  margin-bottom: 64px;
}
.faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.faq__title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}
.faq__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.faq__body {
  display: flex;
  justify-content: space-between;
  position: relative;
  min-height: 0px;
}
.faq__picture {
  width: 26%;
  position: sticky;
  top: 100px;
  height: fit-content;
  padding-top: 100px;
}
.faq__picture img {
  width: 100%;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 64%;
  margin: 0 auto;
}
.faq__item {
  background: rgba(255, 255, 255, 0.04);
  background: rgba(0, 0, 0, 0.062745098);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3764705882);
}
.faq__item--open {
  border-color: rgba(131, 131, 131, 0.4);
}
.faq__item--open .faq__arrow {
  transform: rotate(180deg);
  color: #b42929;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
}
.faq__question:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq__question span {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}
.faq__arrow {
  flex-shrink: 0;
  transition: transform 0.35s ease, color 0.35s ease;
  width: 30px;
  height: auto;
  stroke: #6e6e6e;
  background: rgba(0, 0, 0, 0.062745098);
  box-shadow: inset 0px 0px 5px rgba(28, 28, 28, 0.433);
  padding: 4px;
  border-radius: 100px;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__answer p {
  padding: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  box-shadow: inset 0px 0px 16px rgba(28, 28, 28, 0.344);
}
.faq__answer p b {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.contacts {
  margin-bottom: 40px;
}
.contacts__header {
  text-align: center;
  margin-bottom: 36px;
}
.contacts__title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}
.contacts__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contacts__card {
  border-radius: 16px;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.1254901961);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3764705882);
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
}
.contacts__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}
.contacts__card-icon {
  font-size: 32px;
  line-height: 1;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4392156863);
}
.contacts__card-avatar-fallback {
  font-size: 32px;
  line-height: 1;
}
.contacts__card-type-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}
.contacts__card-type-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.3;
}
.contacts__card:hover .contacts__card-type-icon img {
  opacity: 1;
}
.contacts__card-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.contacts__card-value {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  word-break: break-all;
}
.contacts__card-btn {
  margin-top: 6px;
  padding: 10px 24px;
  background: #b42929;
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  display: block;
}
.contacts__card-btn:hover {
  background: #9e2020;
  color: #fff;
}
.contacts__loading, .contacts__empty, .contacts__error {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  padding: 20px;
  grid-column: 1/-1;
}

.contact__card-wrapper {
  min-width: 0;
  flex: 1 1 auto;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 20px;
}
.footer__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo-circle {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.footer__logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(2);
}
.footer__logo-name {
  display: none;
}
.footer__logo-name p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3137254902);
}
.footer__logo-name span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
.footer__top {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.0196078431);
  box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__top:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

[data-letter] {
  position: relative;
}
[data-letter]::before {
  content: attr(data-letter);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(135deg, #b42929 0%, #6e1818 100%);
}
[data-letter] img {
  position: relative;
  z-index: 1;
}

.profile-modal__avatar[data-letter]::before {
  font-size: 36px;
}

.auth-modal__avatar[data-letter]::before {
  font-size: 36px;
}

.auth-modal__error {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.25s ease, margin 0.25s ease;
  margin: 0;
}
.auth-modal__error--visible {
  opacity: 1;
  max-height: 60px;
  margin: 4px 0;
}

.auth-modal__action-btn--loading {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.header__api-btn {
  display: inline-flex;
  display: none;
  align-items: center;
  height: 36px;
  padding: 0px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #b42929 0%, #8a1e1e 100%);
  box-shadow: inset 0px 0px 10px rgba(16, 16, 16, 0.4), 0px 2px 12px rgba(180, 41, 41, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s, box-shadow 0.25s, opacity 0.25s;
}
.header__api-btn:hover {
  background: linear-gradient(135deg, #c93232 0%, #9e2424 100%);
  box-shadow: inset 0px 0px 10px rgba(16, 16, 16, 0.4), 0px 4px 18px rgba(180, 41, 41, 0.45);
  color: #fff;
}
.header__api-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0px 0px 6px rgba(16, 16, 16, 0.3);
  color: #aaa;
}
.header__api-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0px 0px 6px rgba(16, 16, 16, 0.3);
}

.api-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.api-section-head--left {
  text-align: left;
  margin-bottom: 32px;
}
.api-section-head__title {
  font-size: 30px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}
.api-section-head__sub {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  display: block;
}

.hero-intro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
.hero-intro__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.hero-intro__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 6px;
  position: relative;
}
.hero-intro__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.1254901961);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3137254902);
  border-radius: 50px;
  font-size: 12px;
  color: #aaa;
  backdrop-filter: blur(10px);
}
.hero-intro__pill img {
  width: 20px;
}
.hero-intro__lead {
  font-size: 14px;
  line-height: 1.7;
  color: #888;
}
.hero-intro__lead b {
  color: #d0d0d0;
  font-weight: 600;
}
.hero__slider {
  position: relative;
}
.hero__graffiti {
  width: 240px;
  height: auto;
  position: absolute;
  top: -56px;
  left: -50px;
  z-index: 5;
}
.hero__graffiti img {
  width: 100%;
  transform: rotate(-5deg);
}
.hero__box {
  width: 130px;
  height: auto;
  position: absolute;
  bottom: -78px;
  left: 320px;
}
.hero__box img {
  width: 100%;
  transform: rotate(42deg);
  opacity: 0.7;
}
.hero__telegram {
  width: 180px;
  height: auto;
  position: absolute;
  top: -80px;
  left: 700px;
  z-index: 2;
}
.hero__telegram img {
  width: 100%;
  transform: rotate(6deg);
}
.hero__screen {
  width: 100%;
  height: 300px;
  background: rgba(0, 0, 0, 0.3137254902);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  position: relative;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5019607843);
}
.hero__page {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}
.hero__page-info {
  width: 70%;
}
.hero__page-title {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #ff4b4b;
  color: #fff;
  text-shadow: 0px 0px 20px #000;
}
.hero__page-subtitle {
  font-size: 14px;
  color: #a4a4a4;
  padding-top: 0px;
}
.hero__page-subtitle b {
  font-size: inherit;
  color: #fff;
}
.hero__page-subtitle h1 {
  font-size: inherit;
  color: #fff;
  display: inline;
}
.hero__page-picture {
  width: 160px;
  transform: translateX(-70px);
}
.hero__page-picture img {
  width: 100%;
  transform: rotate(12deg);
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3137254902));
}

.seller-mode-nav {
  position: relative;
  z-index: 4;
  padding: 24px 0 4px;
}
.seller-mode-nav .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seller-mode-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 260px);
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(7, 7, 10, 0.72);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.32), 0 10px 28px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  isolation: isolate;
}
.seller-mode-switch__thumb {
  position: absolute;
  z-index: -1;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border: 1px solid rgba(241, 89, 70, 0.45);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(180, 41, 41, 0.88), rgba(116, 24, 24, 0.92));
  box-shadow: 0 5px 18px rgba(180, 41, 41, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.seller-mode-switch--openapi .seller-mode-switch__thumb {
  transform: translateX(100%);
}
.seller-mode-switch__option {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #777b84;
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.seller-mode-switch__option:hover {
  color: #d5d6da;
}
.seller-mode-switch__option:focus-visible {
  outline: 2px solid rgba(241, 89, 70, 0.75);
  outline-offset: -3px;
}
.seller-mode-switch__option--active {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.seller-mode-nav__hint {
  margin-top: 10px;
  color: #5f626b;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.seller-offer-stage {
  position: relative;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.seller-offer-panel {
  width: 100%;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.38s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.seller-offer-panel--from-left {
  transform: translateX(-24px);
}
.seller-offer-panel--active {
  opacity: 1;
  transform: translateX(0);
}
.seller-offer-panel[hidden] {
  display: none;
}

html.light .seller-mode-switch {
  border-color: rgba(27, 29, 37, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 16px rgba(27, 29, 37, 0.04), 0 10px 28px rgba(27, 29, 37, 0.08);
}
html.light .seller-mode-switch__option {
  color: #777b84;
}
html.light .seller-mode-switch__option:hover {
  color: #31343c;
}
html.light .seller-mode-switch__option--active {
  color: #fff;
}
html.light .seller-mode-nav__hint {
  color: #858a94;
}

@media (max-width: 600px) {
  .seller-mode-nav {
    padding: 18px 0 2px;
  }
  .seller-mode-switch {
    width: min(100%, 250px);
    min-height: 40px;
  }
  .seller-mode-switch__option {
    font-size: 12px;
  }
  .seller-mode-nav__hint {
    max-width: 300px;
    margin-top: 8px;
    padding: 0 8px;
    font-size: 11px;
  }
}

.openapi-endpoints {
  padding: 72px 0;
}
.openapi-endpoints__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 30px auto 16px;
}

.openapi-endpoint {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px 12px;
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 15px;
  background: rgba(8, 8, 11, 0.34);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.openapi-endpoint:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 89, 70, 0.25);
  background: rgba(15, 13, 16, 0.62);
}
.openapi-endpoint__method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(80, 201, 135, 0.3);
  border-radius: 7px;
  background: rgba(80, 201, 135, 0.11);
  color: #65d89a;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
}
.openapi-endpoint__method--post {
  border-color: rgba(241, 89, 70, 0.34);
  background: rgba(241, 89, 70, 0.12);
  color: #f1786a;
}
.openapi-endpoint code {
  min-width: 0;
  overflow: hidden;
  color: #e4e5e8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.openapi-endpoint p {
  grid-column: 1/-1;
  color: #70737c;
  font-size: 12px;
  line-height: 1.55;
}

.openapi-code {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;
  background: #09090c;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}
.openapi-code__top {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(255, 255, 255, 0.025);
}
.openapi-code__top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f15946;
}
.openapi-code__top span:nth-child(2) {
  background: #dca94d;
}
.openapi-code__top span:nth-child(3) {
  background: #54b982;
}
.openapi-code__top b {
  margin-left: 7px;
  color: #686b73;
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.04em;
}
.openapi-code pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
}
.openapi-code pre code {
  color: #bfc3ca;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.75;
  white-space: pre;
}

html.light .openapi-endpoint {
  border-color: var(--light-border);
  background: #fff;
  box-shadow: 0 5px 18px rgba(27, 29, 37, 0.04);
}
html.light .openapi-endpoint:hover {
  border-color: rgba(201, 65, 69, 0.24);
  background: #fffafa;
}
html.light .openapi-endpoint code {
  color: #2b2e36;
}
html.light .openapi-endpoint p {
  color: var(--light-text-muted);
}
html.light .openapi-code {
  border-color: var(--light-border);
  background: #18191e;
  box-shadow: 0 12px 32px rgba(27, 29, 37, 0.12);
}

@media (max-width: 700px) {
  .openapi-endpoints {
    padding: 54px 0;
  }
  .openapi-endpoints__grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
  .openapi-endpoint {
    padding: 15px 16px;
  }
  .openapi-endpoint code {
    font-size: 12px;
  }
  .openapi-code pre {
    padding: 16px;
  }
  .openapi-code pre code {
    font-size: 11px;
  }
}

.api-hero {
  padding: 80px 0px 70px;
  position: relative;
  overflow: hidden;
}
.api-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(180, 41, 41, 0.12) 0%, rgba(180, 41, 41, 0) 70%);
  pointer-events: none;
}
.api-hero__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.api-hero__badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  background: rgba(180, 41, 41, 0.15);
  border: 1px solid rgba(180, 41, 41, 0.3);
  color: #F15946;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.api-hero__title {
  font-size: 46px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 780px;
}
.api-hero__subtitle {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}
.api-hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
}
.api-hero__btn {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #b42929 0%, #8a1e1e 100%);
  box-shadow: 0px 4px 20px rgba(180, 41, 41, 0.4), inset 0px 0px 12px rgba(16, 16, 16, 0.3);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s;
}
.api-hero__btn:hover {
  background: linear-gradient(135deg, #c93232 0%, #9e2424 100%);
  box-shadow: 0px 6px 28px rgba(180, 41, 41, 0.55), inset 0px 0px 12px rgba(16, 16, 16, 0.3);
  color: #fff;
}
.api-hero__btn--ghost {
  background: rgba(0, 0, 0, 0.1254901961);
  box-shadow: inset 0px 0px 8px rgba(16, 16, 16, 0.3);
  color: #aaa;
}
.api-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0px 0px 8px rgba(16, 16, 16, 0.3);
}
.api-hero__stats {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.1254901961);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}
.api-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 40px;
  gap: 6px;
}
.api-hero__stat p {
  font-size: 26px;
  color: #F15946;
  line-height: 1;
}
.api-hero__stat span {
  font-size: 12px;
  color: #555;
  line-height: 1;
}
.api-hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.api-benefits {
  padding: 70px 0px;
}
.api-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.api-benefits__card {
  background: rgba(0, 0, 0, 0.1254901961);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, background 0.25s;
}
.api-benefits__card:hover {
  background: #1e1e1e;
  border-color: rgba(180, 41, 41, 0.25);
}
.api-benefits__icon {
  font-size: 28px;
  line-height: 1;
}
.api-benefits__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.api-benefits__name {
  font-size: 15px;
  color: #e0e0e0;
  font-weight: 500;
  line-height: 1.3;
}
.api-benefits__text {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}

.api-delivery {
  padding: 70px 0px;
}
.api-delivery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.api-delivery__card {
  background: rgba(0, 0, 0, 0.1254901961);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.api-delivery__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.api-delivery__card--tdata::before {
  background: linear-gradient(90deg, #4a9eff, transparent);
}
.api-delivery__card--session::before {
  background: linear-gradient(90deg, #4cdb80, transparent);
}
.api-delivery__card--phonecode::before {
  background: linear-gradient(90deg, #ffa040, transparent);
}
.api-delivery__card:hover {
  background: #1e1e1e;
  border-color: rgba(255, 255, 255, 0.09);
}
.api-delivery__card-icon {
  font-size: 30px;
  line-height: 1;
}
.api-delivery__card-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
.api-delivery__card-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.api-delivery__card--tdata .api-delivery__card-name {
  color: #4a9eff;
}
.api-delivery__card--session .api-delivery__card-name {
  color: #4cdb80;
}
.api-delivery__card--phonecode .api-delivery__card-name {
  color: #ffa040;
}
.api-delivery__card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}
.api-delivery__card-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 4px;
}
.api-delivery__card-list li {
  font-size: 12px;
  color: #555;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.api-delivery__card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 11px;
}
.api-delivery__card--tdata .api-delivery__card-list li::before {
  color: #4a9eff;
}
.api-delivery__card--session .api-delivery__card-list li::before {
  color: #4cdb80;
}
.api-delivery__card--phonecode .api-delivery__card-list li::before {
  color: #ffa040;
}

.api-included {
  padding: 70px 0px;
}
.api-included__body {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.api-included__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.api-included__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.api-included__list li > span {
  font-size: 14px;
  color: #F15946;
  flex-shrink: 0;
  margin-top: 1px;
}
.api-included__list li strong {
  display: block;
  font-size: 14px;
  color: #e0e0e0;
  font-weight: 500;
  margin-bottom: 5px;
}
.api-included__list li p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.api-included__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.api-included__quote {
  background: rgba(0, 0, 0, 0.1254901961);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  border-left: 3px solid #b42929;
}
.api-included__quote p {
  font-size: 17px;
  color: #e0e0e0;
  line-height: 1.4;
  margin-bottom: 10px;
}
.api-included__quote span {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  display: block;
}
.api-included__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.api-included__tag {
  padding: 7px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  color: #666;
}

.api-earn {
  padding: 70px 0px;
}
.api-earn__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.api-earn__card {
  background: rgba(0, 0, 0, 0.1254901961);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.api-earn__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.api-earn__card--api::before {
  background: linear-gradient(90deg, #b42929, transparent);
}
.api-earn__card--own::before {
  background: linear-gradient(90deg, #4cdb80, transparent);
}
.api-earn__badge {
  align-self: flex-start;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.api-earn__card--api .api-earn__badge {
  background: rgba(180, 41, 41, 0.15);
  color: #F15946;
}
.api-earn__card--own .api-earn__badge {
  background: rgba(76, 219, 128, 0.12);
  color: #4cdb80;
}
.api-earn__percent {
  font-size: 40px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0px;
}
.api-earn__percent span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
.api-earn__card--api .api-earn__percent {
  color: #F15946;
}
.api-earn__card--own .api-earn__percent {
  color: #4cdb80;
}
.api-earn__name {
  font-size: 16px;
  font-weight: 600;
  color: #e8e8e8;
}
.api-earn__text {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
}
.api-earn__text b {
  color: #cfcfcf;
}
.api-earn__admin {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 26px 28px;
}
.api-earn__admin-icon {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
}
.api-earn__admin-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}
.api-earn__admin-title {
  font-size: 15px;
  font-weight: 600;
  color: #e8e8e8;
  margin-bottom: 7px;
}
.api-earn__admin-text {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
}

.api-pricing {
  padding: 70px 0px;
}
.api-pricing__wrap {
  display: flex;
  justify-content: center;
}
.api-pricing__card {
  width: 440px;
  background: rgba(0, 0, 0, 0.1254901961);
  border: 1px solid rgba(180, 41, 41, 0.3);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0px 0px 60px rgba(180, 41, 41, 0.08);
}
.api-pricing__badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  background: rgba(180, 41, 41, 0.15);
  color: #F15946;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.api-pricing__price {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}
.api-pricing__price span {
  font-size: 64px;
  color: #fff;
  line-height: 1;
}
.api-pricing__price p {
  font-size: 18px;
  color: #888;
  margin-top: 12px;
}
.api-pricing__label {
  font-size: 12px;
  color: #555;
  margin-bottom: 28px;
}
.api-pricing__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 28px;
}
.api-pricing__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #aaa;
  text-align: left;
  padding: 9px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.api-pricing__list li::before {
  content: "✓";
  font-size: 12px;
  color: #F15946;
  flex-shrink: 0;
}
.api-pricing__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 50px;
  background: linear-gradient(135deg, #b42929 0%, #8a1e1e 100%);
  box-shadow: 0px 4px 20px rgba(180, 41, 41, 0.35), inset 0px 0px 12px rgba(16, 16, 16, 0.3);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
  cursor: pointer;
}
.api-pricing__btn:hover {
  background: linear-gradient(135deg, #c93232 0%, #9e2424 100%);
  color: #fff;
}
.api-pricing__note {
  font-size: 12px;
  color: #444;
  line-height: 1.6;
}

.api-cta {
  padding: 70px 0px 80px;
}
.api-cta__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.api-cta__title {
  font-size: 34px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.api-cta__sub {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
  display: block;
}
.api-cta__actions {
  display: flex;
  gap: 12px;
}
.api-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #b42929 0%, #8a1e1e 100%);
  box-shadow: 0px 4px 24px rgba(180, 41, 41, 0.4), inset 0px 0px 12px rgba(16, 16, 16, 0.3);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.api-cta__btn:hover {
  background: linear-gradient(135deg, #c93232 0%, #9e2424 100%);
  box-shadow: 0px 6px 32px rgba(180, 41, 41, 0.55), inset 0px 0px 12px rgba(16, 16, 16, 0.3);
  color: #fff;
}
.api-cta__btn svg {
  flex-shrink: 0;
}

html.light body {
  background: #fafbfd;
}
html.light .header__circle,
html.light .header__icon-btn,
html.light .header__auth-login,
html.light .header__api-btn,
html.light .api-hero__btn,
html.light .api-hero__btn--ghost,
html.light .api-pricing__btn,
html.light .api-cta__btn,
html.light .api-hero__stats,
html.light [class$=__action-btn],
html.light [class$=__input],
html.light [class$=__copy-val],
html.light [class$=__copy-row],
html.light [class$=__pay-field],
html.light [class$=__success-card],
html.light [class$=__body] {
  box-shadow: none;
}
html.light .product__body,
html.light .buy-modal__body,
html.light .logout-confirm__body,
html.light .history-modal__body,
html.light .purchase-detail__body,
html.light .profile-modal__body,
html.light .topup-modal__body,
html.light .auth-modal__body,
html.light .preorder-modal__body,
html.light .preorder-create__body,
html.light .buy-confirm__body,
html.light .buy-success__body,
html.light .phonecode-modal__body {
  box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
html.light .header__api-btn,
html.light .api-hero__btn,
html.light .api-pricing__btn,
html.light .api-cta__btn {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  color: #fff;
}
html.light .header__api-btn:hover,
html.light .api-hero__btn:hover,
html.light .api-pricing__btn:hover,
html.light .api-cta__btn:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
  color: #fff;
}
html.light .api-hero__badge,
html.light .api-pricing__badge {
  background: rgba(213, 69, 69, 0.1);
  border-color: rgba(213, 69, 69, 0.18);
  color: #d54545;
}
html.light .api-included__quote {
  border-left-color: #d54545;
}
html.light .api-hero::before {
  background: radial-gradient(ellipse, rgba(213, 69, 69, 0.06) 0%, rgba(213, 69, 69, 0) 70%);
}
html.light .header__auth-login {
  background: #d54545;
  color: #fff;
}
html.light .header__auth-login:hover {
  background: #c93232;
  color: #fff;
}
html.light .header__auth-registration {
  color: #666;
}
html.light .header__auth-registration:hover {
  color: #222;
  opacity: 1;
}
html.light .header__circle {
  background: #ffeaea;
}
html.light [class$=__subtab--active],
html.light [class$=__filter--active],
html.light [class$=__tab--active] {
  background: #ffeaea;
  color: #d54545;
}
html.light .header {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 2px 12px rgba(0, 0, 0, 0.03);
}
html.light .header__name p {
  color: #d54545;
}
html.light .header__name span {
  color: #888;
}
html.light .header__icon-btn {
  background: rgba(0, 0, 0, 0.04);
  color: #666;
}
html.light .header__icon-btn:hover {
  background: rgba(0, 0, 0, 0.07);
  color: #222;
}
html.light .header__user-info p {
  color: #222;
}
html.light .header__user-info span {
  color: #999;
}
html.light .header__user-inner:hover {
  background: rgba(0, 0, 0, 0.03);
}
html.light .header__dropdown {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
html.light .header__dropdown-item {
  color: #555;
}
html.light .header__dropdown-item:hover {
  background: #f5f6fa;
  color: #111;
}
html.light .header__dropdown-item--danger {
  color: #b42929;
}
html.light .header__dropdown-divider {
  background: #eef0f5;
}
html.light .header__auth-login {
  background: #b42929;
  color: #fff;
}
html.light .header__auth-registration {
  color: #555;
}
html.light .push .push__message {
  background: #fff;
  border: 1px solid #eaecf2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
html.light .push .push__message p {
  color: #444;
}
html.light .catalog__title p, html.light .catalog__title h2 {
  color: #111;
}
html.light .catalog__title span {
  color: #bbb;
}
html.light .catalog__card {
  background: #fff;
  border: 1px solid #eaecf2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
html.light .catalog__card:hover {
  border-color: rgba(213, 69, 69, 0.18);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
html.light .catalog__picture::after {
  display: none;
}
html.light .catalog__name {
  color: #111;
  box-shadow: inset 0px 0px 8px rgba(0, 0, 0, 0.1254901961);
  border-radius: 8px;
}
html.light .catalog__price p, html.light .catalog__number p, html.light .catalog__minimum p {
  color: #777;
}
html.light .catalog__price img, html.light .catalog__number img, html.light .catalog__minimum img {
  background: rgba(0, 0, 0, 0.07);
  filter: none;
}
html.light .catalog__number-empty img {
  background: rgba(255, 63, 63, 0.6117647059);
  box-shadow: none;
}
html.light .catalog__open {
  background: rgba(0, 0, 0, 0.04);
  box-shadow: none;
}
html.light .catalog__open:hover {
  background: rgba(0, 0, 0, 0.07);
}
html.light .catalog__open:hover p {
  color: #111;
}
html.light .catalog__open p {
  color: #888;
}
html.light .catalog__open img {
  filter: none;
}
html.light .catalog__buy {
  background: #d8d8d8;
}
html.light .catalog__mark img {
  filter: none;
  opacity: 0.4;
}
html.light .catalog__button {
  background: #eef0f5;
  color: #777;
}
html.light .catalog__button svg {
  stroke: #000;
}
html.light .catalog__button-active {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  color: #fff;
}
html.light .catalog__loader {
  background: #f0f2f7;
}
html.light .catalog__info {
  background: #f4f5f9;
}
html.light .sort__title p {
  color: #777;
}
html.light .sort__title span {
  color: #222;
}
html.light .sort__select {
  background: #eef0f5;
}
html.light .sort__select svg, html.light .sort__select svg * {
  stroke: #888;
}
html.light .sort__select svg {
  color: #888;
}
html.light .sort__select .sort-icon-fill {
  color: #888 !important;
  fill: #888 !important;
}
html.light .sort__select:hover {
  background: #e4e7ef;
  box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.062745098);
}
html.light .sort__select-active {
  background: #eef0f9;
  box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.1882352941);
}
html.light .sort__select-active svg, html.light .sort__select-active svg * {
  stroke: #000000;
}
html.light .sort__select-active svg {
  color: #000;
}
html.light .sort__select-active .sort-icon-fill {
  color: #000 !important;
  fill: #000 !important;
}
html.light .search__area {
  background: #fff;
  border: 1px solid #eaecf2;
  box-shadow: none;
}
html.light .search__area input {
  color: #111;
}
html.light .search__area input::placeholder {
  color: #ccc;
}
html.light .search__area img {
  filter: none;
  opacity: 0.35;
}
html.light .search__area p {
  color: #bbb;
}
html.light .search__clear {
  background: #eef0f5;
}
html.light .search__clear img {
  filter: none;
  opacity: 0.4;
}
html.light .search__clear:hover {
  background: rgba(213, 69, 69, 0.1);
}
html.light .search__clear:hover img {
  opacity: 0.7;
}
html.light .product {
  background: rgba(15, 18, 28, 0.35);
}
html.light .product__body {
  background: #fff;
  border-left: 1px solid #eaecf2;
}
html.light .product__name {
  color: #111;
}
html.light .product__close p {
  color: #aaa;
}
html.light .product__close img {
  filter: none;
  opacity: 0.35;
}
html.light .product__price p, html.light .product__number p, html.light .product__minimum p, html.light .product__format p {
  color: #777;
}
html.light .product__price p, html.light .product__number p, html.light .product__minimum p, html.light .product__format p, html.light .product .product__description p {
  color: #111;
}
html.light .product__description span {
  color: #888;
}
html.light .product__description p {
  color: #111;
}
html.light .product__buy {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 16px rgba(213, 69, 69, 0.28);
}
html.light .product__buy p {
  color: #fff;
}
html.light .product__buy:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .product__buy--disabled p {
  opacity: 0.3;
}
html.light .product__right-title {
  color: #000;
}
html.light .product__price, html.light .product__number, html.light .product__minimum, html.light .product__format, html.light .product__description {
  background: #f4f5f9;
  box-shadow: none;
}
html.light .product__price img, html.light .product__number img, html.light .product__minimum img, html.light .product__format img, html.light .product__description img {
  background: rgba(255, 255, 255, 0.3);
}
html.light .product__description span {
  background: rgba(172, 172, 172, 0.0784313725);
}
html.light .product__description span img {
  padding: 0px;
  background: none;
}
html.light .product__name {
  background: #f4f5f9;
  box-shadow: none;
}
html.light .product__picture::after {
  display: none;
}
html.light .buy-modal {
  background: rgba(15, 18, 28, 0.35);
}
html.light .buy-modal__body {
  background: #fff;
  border: 1px solid #eaecf2;
}
html.light .buy-modal__close p {
  color: #aaa;
}
html.light .buy-modal__close img {
  filter: none;
  opacity: 0.35;
}
html.light .buy-modal__name {
  color: #111;
}
html.light .buy-modal__meta-row p {
  color: #777;
}
html.light .buy-modal__section-label {
  color: #888;
}
html.light .buy-modal__qty-btn {
  background: #f4f5f9;
  color: #777;
}
html.light .buy-modal__qty-btn:hover {
  background: #eef0f5;
  color: #111;
}
html.light .buy-modal__qty-input {
  background: #f4f5f9;
  color: #111;
}
html.light .buy-modal__format {
  background: #f4f5f9;
  color: #777;
  border: 1px solid transparent;
}
html.light .buy-modal__format:hover {
  background: #eef0f5;
}
html.light .buy-modal__format--active {
  background: #ffeaea;
  color: #d54545;
  border-color: rgba(213, 69, 69, 0.2);
}
html.light .buy-modal__total {
  background: #f4f5f9;
  border: 1px solid #eaecf2;
}
html.light .buy-modal__total span {
  color: #888;
}
html.light .buy-modal__total p {
  color: #111;
}
html.light .buy-modal__balance span {
  color: #888;
}
html.light .buy-modal__balance p {
  color: #2e7d32;
}
html.light .buy-modal__balance--low p {
  color: #d54545;
}
html.light .buy-modal__error {
  color: #d54545;
}
html.light .buy-modal__action-btn {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 16px rgba(213, 69, 69, 0.28);
  color: #fff;
}
html.light .buy-modal__action-btn:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .buy-modal__picture::after {
  display: none;
}
html.light .buy-modal__meta-row img {
  filter: none;
  background: rgba(0, 0, 0, 0.062745098);
}
html.light .buy-modal__qty-btn, html.light .buy-modal__qty-input, html.light .buy-modal__qty-btn, html.light .buy-modal__format, html.light .buy-modal__total {
  box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.1254901961);
}
html.light .purchase-detail__picture::after {
  display: none;
}
html.light .purchase-detail__status--success {
  background: #ecf7ff;
}
html.light .purchase-detail__grid {
  background: rgba(236, 247, 255, 0.4784313725);
}
html.light .history-modal__card-picture::after {
  display: none;
}
html.light .history-modal, html.light .deposit-modal, html.light .deposit-detail, html.light .purchase-detail, html.light .profile-modal, html.light .topup-modal, html.light .logout-confirm, html.light .auth-modal, html.light .preorder-modal, html.light .preorder-create, html.light .buy-confirm, html.light .buy-success, html.light .phonecode-modal {
  background: rgba(15, 18, 28, 0.3);
}
html.light .history-modal__body, html.light .deposit-modal__body, html.light .deposit-detail__body, html.light .purchase-detail__body, html.light .profile-modal__body, html.light .topup-modal__body, html.light .logout-confirm__body, html.light .auth-modal__body, html.light .preorder-modal__body, html.light .preorder-create__body, html.light .buy-confirm__body, html.light .buy-success__body, html.light .phonecode-modal__body {
  background: #fff;
  border: 1px solid #eaecf2;
}
html.light .history-modal__title, html.light .deposit-modal__title, html.light .deposit-detail__title, html.light .purchase-detail__title, html.light .profile-modal__title, html.light .topup-modal__title, html.light .logout-confirm__title, html.light .auth-modal__title, html.light .preorder-modal__title, html.light .preorder-create__title, html.light .buy-confirm__title, html.light .buy-success__title, html.light .phonecode-modal__title {
  color: #111;
}
html.light .history-modal__close p, html.light .deposit-modal__close p, html.light .deposit-detail__close p, html.light .purchase-detail__close p, html.light .profile-modal__close p, html.light .topup-modal__close p, html.light .logout-confirm__close p, html.light .auth-modal__close p, html.light .preorder-modal__close p, html.light .preorder-create__close p, html.light .buy-confirm__close p, html.light .buy-success__close p, html.light .phonecode-modal__close p {
  color: #aaa;
}
html.light .history-modal__close img, html.light .deposit-modal__close img, html.light .deposit-detail__close img, html.light .purchase-detail__close img, html.light .profile-modal__close img, html.light .topup-modal__close img, html.light .logout-confirm__close img, html.light .auth-modal__close img, html.light .preorder-modal__close img, html.light .preorder-create__close img, html.light .buy-confirm__close img, html.light .buy-success__close img, html.light .phonecode-modal__close img {
  filter: none;
  opacity: 0.35;
}
html.light .history-modal__card {
  background: #fff;
  border: 1px solid #eaecf2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
html.light .history-modal__card:hover {
  background: #fafbfd;
  border-color: rgba(213, 69, 69, 0.18);
  transform: translateY(-1px);
}
html.light .history-modal__card-name {
  color: #111;
}
html.light .history-modal__card-tag {
  background: #f4f5f9;
  color: #888;
  border: 1px solid #eaecf2;
}
html.light .history-modal__card-cost {
  color: #111;
}
html.light .history-modal__card-meta {
  color: #aaa;
}
html.light .history-modal__nav-btn {
  background: #eef0f5;
  color: #777;
}
html.light .history-modal__nav-btn:hover {
  background: #e4e7ef;
}
html.light .history-modal__nav-btn--active {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  color: #fff;
}
html.light .history-modal__empty p {
  color: #bbb;
}
html.light .deposit-modal__card {
  background: #fff;
  border: 1px solid #eaecf2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
html.light .deposit-modal__card:hover {
  background: #fafbfd;
  border-color: rgba(213, 69, 69, 0.18);
  transform: translateY(-1px);
}
html.light .deposit-modal__card-icon {
  background: #f4f5f9;
}
html.light .deposit-modal__card-name {
  color: #111;
}
html.light .deposit-modal__card-tag {
  background: #f4f5f9;
  color: #888;
  border: 1px solid #eaecf2;
}
html.light .deposit-modal__card-tag--green {
  background: #e8f7ec;
  color: #2e9e54;
  border-color: rgba(46, 158, 84, 0.18);
}
html.light .deposit-modal__card-tag--yellow {
  background: #fdf6e3;
  color: #b8860b;
  border-color: rgba(184, 134, 11, 0.18);
}
html.light .deposit-modal__card-tag--red {
  background: #fdecec;
  color: #d54545;
  border-color: rgba(213, 69, 69, 0.18);
}
html.light .deposit-modal__card-tag--grey {
  background: #f1f2f5;
  color: #999;
}
html.light .deposit-modal__card-price {
  color: #111;
}
html.light .deposit-modal__card-usd {
  color: #aaa;
}
html.light .deposit-modal__nav-btn {
  background: #eef0f5;
  color: #777;
}
html.light .deposit-modal__nav-btn:hover {
  background: #e4e7ef;
}
html.light .deposit-modal__nav-btn--active {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  color: #fff;
}
html.light .deposit-modal__empty p {
  color: #bbb;
}
html.light .deposit-detail__icon {
  background: #f4f5f9;
}
html.light .deposit-detail__name {
  color: #111;
}
html.light .deposit-detail__status {
  background: #f1f2f5;
  color: #888;
}
html.light .deposit-detail__status--paid {
  background: #e8f7ec;
  color: #2e9e54;
}
html.light .deposit-detail__status--pending {
  background: #fdf6e3;
  color: #b8860b;
}
html.light .deposit-detail__status--cancelled {
  background: #fdecec;
  color: #d54545;
}
html.light .deposit-detail__status--expired {
  background: #f1f2f5;
  color: #999;
}
html.light .deposit-detail__grid {
  background: #f7f8fb;
  border: 1px solid #eef0f5;
}
html.light .deposit-detail__label {
  color: #888;
}
html.light .deposit-detail__value {
  color: #222;
}
html.light .deposit-detail__value--price {
  color: #111;
}
html.light .deposit-detail__value--copy {
  color: #c93232;
}
html.light .deposit-detail__value--copy:hover {
  color: #8a1f1f;
}
html.light .deposit-detail__value--copied {
  color: #2e9e54 !important;
}
html.light .deposit-detail__action-btn {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 14px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .deposit-detail__action-btn:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .deposit-detail__hint {
  color: #999;
}
html.light .purchase-detail__head-info .purchase-detail__name {
  color: #111;
}
html.light .purchase-detail__label {
  color: #888;
}
html.light .purchase-detail__value {
  color: #111;
}
html.light .purchase-detail__row {
  border-bottom: 1px solid #eef0f5;
}
html.light .purchase-detail__action-btn {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 14px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .purchase-detail__action-btn:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .purchase-detail__action-btn--secondary {
  background: #eef0f5;
  color: #555;
  box-shadow: none;
}
html.light .purchase-detail__action-btn--secondary:hover {
  background: #e4e7ef;
  color: #111;
}
html.light .purchase-detail__unavail {
  color: #bbb;
}
html.light .profile-modal__name {
  color: #111;
}
html.light .profile-modal__badge {
  color: #888;
}
html.light .profile-modal__blocks {
  background: #fafbfd;
}
html.light .profile-modal__block {
  border-color: #eaecf2;
}
html.light .profile-modal__block span {
  color: #888;
}
html.light .profile-modal__block p {
  color: #111;
}
html.light .profile-modal__balance span {
  color: #888;
}
html.light .profile-modal__balance p {
  color: #2e7d32;
}
html.light .profile-modal__section-label {
  color: #888;
}
html.light .profile-modal__ref-link {
  background: #fafbfd;
  border: 1px solid #eaecf2;
  color: #444;
}
html.light .profile-modal__copy-btn {
  background: #eef0f5;
  color: #555;
}
html.light .profile-modal__copy-btn:hover {
  background: rgba(213, 69, 69, 0.1);
  color: #d54545;
}
html.light .profile-modal__ref-count {
  color: #aaa;
}
html.light .topup-modal__title {
  color: #111;
  text-align: center;
}
html.light .topup-modal__cur-balance {
  background: #fafbfd;
  border: 1px solid #eaecf2;
}
html.light .topup-modal__cur-balance span {
  color: #888;
}
html.light .topup-modal__cur-balance p {
  color: #2e7d32;
}
html.light .topup-modal__section-label {
  color: #888;
}
html.light .topup-modal__currency {
  background: #f4f5f9;
  color: #777;
  border: 1px solid transparent;
}
html.light .topup-modal__currency:hover {
  background: #eef0f5;
}
html.light .topup-modal__currency--active {
  background: #ffeaea;
  color: #d54545;
  border-color: rgba(213, 69, 69, 0.2);
}
html.light .topup-modal__input {
  background: #fafbfd;
  border: 1px solid #eaecf2;
  color: #111;
}
html.light .topup-modal__input::placeholder {
  color: #ccc;
}
html.light .topup-modal__hint {
  color: #aaa;
}
html.light .topup-modal__pay-field {
  background: #fafbfd;
  border: 1px solid #eaecf2;
}
html.light .topup-modal__pay-field-label {
  color: #888;
}
html.light .topup-modal__copy-val {
  color: #111;
}
html.light .topup-modal__copy-row {
  background: #fff;
  border: 1px solid #eaecf2;
}
html.light .topup-modal__status {
  color: #666;
}
html.light .topup-modal__timer {
  color: #aaa;
}
html.light .topup-modal__success-amount {
  color: #2e7d32;
  text-align: center;
}
html.light .topup-modal__success-card {
  background: #f0faf2;
  border: 1px solid rgba(46, 125, 50, 0.15);
}
html.light .topup-modal__action-btn {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 14px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .topup-modal__action-btn:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .topup-modal__action-btn--cancel {
  background: #ffeaea;
  color: #d54545;
  box-shadow: none;
}
html.light .topup-modal__action-btn--cancel:hover {
  background: rgba(213, 69, 69, 0.18);
  color: #c93232;
}
html.light .logout-confirm__title {
  color: #111;
}
html.light .logout-confirm__text {
  color: #777;
}
html.light .logout-confirm__btn--yes {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 14px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .logout-confirm__btn--yes:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .logout-confirm__btn--no {
  background: #eef0f5;
  color: #555;
}
html.light .logout-confirm__btn--no:hover {
  background: #e4e7ef;
  color: #111;
}
html.light .auth-modal__logo-name p {
  color: #111;
}
html.light .auth-modal__logo-name span {
  color: #aaa;
}
html.light .auth-modal__link {
  color: #888;
  text-decoration-color: rgba(0, 0, 0, 0.15);
}
html.light .auth-modal__link:hover {
  color: #d54545;
}
html.light .auth-modal__input--code {
  background: #fafbfd;
  border: 1px solid #eaecf2;
  color: #111;
}
html.light .auth-modal__tabs {
  background: #fafbfd;
  border: 1px solid #eaecf2;
}
html.light .auth-modal__tab {
  color: #888;
}
html.light .auth-modal__tab p {
  color: #888;
}
html.light .auth-modal__tab--active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}
html.light .auth-modal__tab--active p {
  color: #d54545;
}
html.light .auth-modal__tab:hover {
  color: #444;
}
html.light .auth-modal__tab:hover p {
  color: #444;
}
html.light .auth-modal__hint {
  color: #888;
}
html.light .auth-modal__hint b {
  color: #222;
}
html.light .auth-modal__uname {
  color: #111;
}
html.light .auth-modal__uinfo {
  color: #888;
}
html.light .auth-modal__input {
  background: #fafbfd;
  border: 1px solid #eaecf2;
  color: #111;
}
html.light .auth-modal__input::placeholder {
  color: #ccc;
}
html.light .auth-modal__input:focus {
  border-color: rgba(213, 69, 69, 0.3);
}
html.light .auth-modal__error {
  color: #d54545;
}
html.light .auth-modal__action-btn {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 14px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .auth-modal__action-btn:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .auth-modal__action-btn--green {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
  box-shadow: 0 4px 14px rgba(76, 175, 80, 0.3);
  color: #fff;
}
html.light .auth-modal__action-btn--green:hover {
  background: linear-gradient(135deg, #5ab85e 0%, #449a48 100%);
}
html.light .auth-modal__action-btn--red {
  background: #ffeaea;
  color: #d54545;
  box-shadow: none;
}
html.light .auth-modal__action-btn--red:hover {
  background: rgba(213, 69, 69, 0.18);
}
html.light .auth-modal__subtabs {
  background: #fafbfd;
  border: 1px solid #eaecf2;
}
html.light .auth-modal__subtab {
  color: #888;
}
html.light .auth-modal__subtab--active {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}
html.light .auth-modal__avatar {
  background: #eef0f5;
  box-shadow: none;
}
html.light .preorder-modal__body {
  background: #fff;
  border: 1px solid #eaecf2;
}
html.light .preorder-modal__title {
  color: #111;
}
html.light .preorder-modal__create-btn {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 14px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .preorder-modal__create-btn:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .preorder-modal__card {
  background: #fff;
  border: 1px solid #eaecf2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
html.light .preorder-modal__card:hover {
  background: #fafbfd;
  border-color: rgba(213, 69, 69, 0.18);
  transform: translateY(-1px);
}
html.light .preorder-modal__card-name {
  color: #111;
}
html.light .preorder-modal__card-tag {
  background: #f4f5f9;
  color: #888;
  border: 1px solid #eaecf2;
}
html.light .preorder-modal__card-tag--active {
  background: #fff5dd;
  color: #b56000;
  border-color: rgba(181, 96, 0, 0.2);
}
html.light .preorder-modal__card-tag--completed {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: rgba(46, 125, 50, 0.15);
}
html.light .preorder-modal__card-tag--cancelled {
  background: #ffeaea;
  color: #d54545;
  border-color: rgba(213, 69, 69, 0.2);
}
html.light .preorder-modal__card-qty {
  color: #777;
}
html.light .preorder-modal__card-meta {
  color: #aaa;
}
html.light .preorder-modal__empty p {
  color: #bbb;
}
html.light .preorder-modal__nav-btn {
  background: #eef0f5;
  color: #777;
}
html.light .preorder-modal__nav-btn:hover {
  background: #e4e7ef;
}
html.light .preorder-modal__nav-btn--active {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  color: #fff;
}
html.light .preorder-modal__card-cancel {
  background: rgba(42, 42, 42, 0.0823529412);
}
html.light .preorder-modal__card-cancel:hover {
  background: rgba(42, 42, 42, 0.1882352941);
  color: #000;
}
html.light .preorder-create__body {
  background: #fff;
  border: 1px solid #eaecf2;
}
html.light .preorder-create__title {
  color: #111;
}
html.light .preorder-create__label {
  color: #888;
}
html.light .preorder-create__steps .preorder-create__step {
  background: #eef0f5;
}
html.light .preorder-create__steps .preorder-create__step--active {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
}
html.light .preorder-create__input {
  background: #fafbfd;
  border: 1px solid #eaecf2;
  color: #111;
}
html.light .preorder-create__input::placeholder {
  color: #ccc;
}
html.light .preorder-create__input:focus {
  border-color: rgba(213, 69, 69, 0.3);
}
html.light .preorder-create__hint {
  color: #aaa;
}
html.light .preorder-create__error {
  color: #d54545;
}
html.light .preorder-create__btn--primary {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 14px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .preorder-create__btn--primary:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .preorder-create__btn--secondary {
  background: #eef0f5;
  color: #555;
}
html.light .preorder-create__btn--secondary:hover {
  background: #e4e7ef;
  color: #111;
}
html.light .buy-confirm__title {
  color: #111;
}
html.light .buy-confirm__text {
  color: #777;
}
html.light .buy-confirm__text b {
  color: #111;
}
html.light .buy-confirm__btn--yes {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 14px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .buy-confirm__btn--yes:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .buy-confirm__btn--no {
  background: #eef0f5;
  color: #555;
}
html.light .buy-confirm__btn--no:hover {
  background: #e4e7ef;
  color: #111;
}
html.light .buy-loading {
  background: rgba(15, 18, 28, 0.35);
}
html.light .buy-loading__box {
  background: #fff;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
}
html.light .buy-loading__spinner {
  border-color: rgba(0, 0, 0, 0.08);
  border-top-color: #d54545;
}
html.light .buy-loading__title {
  color: #111;
}
html.light .buy-loading__text {
  color: #888;
}
html.light .buy-success__title {
  color: #2e7d32;
}
html.light .buy-success__info {
  color: #777;
}
html.light .buy-success__info b {
  color: #111;
}
html.light .buy-success__download {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.15);
}
html.light .buy-success__download:hover {
  background: #dcefdd;
}
html.light .buy-success__action-btn {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 4px 14px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .buy-success__action-btn:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .phonecode-modal__status {
  color: #555;
}
html.light .phonecode-modal__status strong {
  color: #d54545;
}
html.light .phonecode-modal__timer {
  color: #d54545;
}
html.light .phonecode-modal__code-box {
  background: #fafbfd;
  border: 1px solid #eaecf2;
  color: #111;
}
html.light .phonecode-modal__copyable {
  background: rgba(213, 69, 69, 0.08);
  color: #d54545;
  font-weight: 500;
}
html.light .phonecode-modal__copyable:hover {
  background: rgba(213, 69, 69, 0.16);
}
html.light .phonecode-modal__copyable--copied {
  background: rgba(46, 125, 50, 0.16);
  color: #2e7d32;
}
html.light .phonecode-modal__btn--cancel {
  background: #ffeaea;
  color: #d54545;
}
html.light .phonecode-modal__btn--cancel:hover {
  background: rgba(213, 69, 69, 0.18);
  color: #c93232;
}
html.light .phonecode-modal__btn--home {
  background: #eef0f5;
  color: #555;
}
html.light .phonecode-modal__btn--home:hover {
  background: #e4e7ef;
  color: #111;
}
html.light .desktop-push {
  background: #fff;
  border: 1px solid #eaecf2;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
html.light .desktop-push__icon {
  color: inherit;
}
html.light .desktop-push__title {
  color: #111;
}
html.light .desktop-push__text {
  color: #777;
}
html.light .desktop-push__timer {
  color: #aaa;
}
html.light .desktop-push__btn {
  background: linear-gradient(135deg, #e35a5a 0%, #c93232 100%);
  box-shadow: 0 2px 10px rgba(213, 69, 69, 0.25);
  color: #fff;
}
html.light .desktop-push__btn:hover {
  background: linear-gradient(135deg, #ec6868 0%, #d33838 100%);
}
html.light .desktop-push--success {
  background: #f0faf2;
  border-color: rgba(46, 125, 50, 0.2);
}
html.light .faq__title {
  color: #111;
}
html.light .faq__subtitle {
  color: #aaa;
}
html.light .faq__item {
  background: #fff;
  border-color: #eaecf2;
}
html.light .faq__item--open {
  border-color: rgba(180, 41, 41, 0.22);
}
html.light .faq__item--open .faq__arrow {
  color: #b42929;
}
html.light .faq__question span {
  color: #111;
}
html.light .faq__question:hover {
  background: #fafbfd;
}
html.light .faq__arrow {
  color: #d0d3df;
  background: rgba(153, 153, 153, 0.06);
  box-shadow: inset 0px 0px 5px rgba(28, 28, 28, 0.08);
}
html.light .faq__answer p {
  color: #777;
}
html.light .faq__answer p b {
  color: #111;
}
html.light .contacts__title {
  color: #111;
}
html.light .contacts__subtitle {
  color: #aaa;
}
html.light .contacts__card {
  background: #fff;
  border-color: #eaecf2;
}
html.light .contacts__card:hover {
  background: #fafbfd;
  border-color: rgba(180, 41, 41, 0.18);
}
html.light .contacts__card-label {
  color: #111;
}
html.light .contacts__card-value {
  color: #ccc;
}
html.light .contacts__loading, html.light .contacts__empty, html.light .contacts__error {
  color: #ccc;
}
html.light .format__title {
  color: #111;
}
html.light .format__subtitle {
  color: #aaa;
}
html.light .format__card {
  background: #fff;
  border-color: #eaecf2;
}
html.light .format--tdata html.light .format__icon {
  background: rgba(74, 158, 255, 0.08);
}
html.light .format--session html.light .format__icon {
  background: rgba(76, 219, 128, 0.08);
}
html.light .format--phonecode html.light .format__icon {
  background: rgba(255, 160, 64, 0.08);
}
html.light .format__name {
  color: #333;
}
html.light .format--tdata html.light .format__name {
  color: #1d6bbf;
}
html.light .format--session html.light .format__name {
  color: #1a7f45;
}
html.light .format--phonecode html.light .format__name {
  color: #b56000;
}
html.light .format__desc {
  color: #666;
}
html.light .format__desc b {
  color: #111;
}
html.light .format__desc code {
  background: rgba(0, 0, 0, 0.062745098);
  color: #111;
}
html.light .format__features li {
  color: #777;
}
html.light .format--tdata html.light .format__features li::before {
  color: #1d6bbf;
}
html.light .format--session html.light .format__features li::before {
  color: #1a7f45;
}
html.light .format--phonecode html.light .format__features li::before {
  color: #b56000;
}
html.light .format__for {
  background: #f4f5f9;
}
html.light .format__for p {
  color: #666;
}
html.light .format__for span {
  color: #000;
}
html.light .format--tdata html.light .format__for span {
  color: #1d6bbf;
}
html.light .format--session html.light .format__for span {
  color: #1a7f45;
}
html.light .format--phonecode html.light .format__for span {
  color: #b56000;
}
html.light .footer {
  border-top-color: rgba(0, 0, 0, 0.06);
}
html.light .footer__logo-name p {
  color: #111;
}
html.light .footer__logo-name span {
  color: #ccc;
}
html.light .footer__copy {
  color: #ccc;
}
html.light .footer__top {
  color: #bbb;
  border-color: #e0e3ec;
}
html.light .footer__top:hover {
  color: #111;
  border-color: #c0c4d0;
}
html.light .header__api-btn {
  box-shadow: inset 0px 0px 10px rgba(16, 16, 16, 0.15), 0px 2px 10px rgba(180, 41, 41, 0.2);
}
html.light .header__api-btn--ghost {
  background: rgba(0, 0, 0, 0.05);
  color: #888;
  box-shadow: none;
}
html.light .header__api-btn--ghost:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #333;
}
html.light .hero-intro__title {
  color: #111;
}
html.light .hero-intro__title span {
  color: #d54545;
  background: rgba(0, 0, 0, 0.031372549);
}
html.light .hero-intro__lead {
  color: #666;
}
html.light .hero-intro__lead b {
  color: #222;
}
html.light .hero-intro__pill {
  background: #fff;
  border-color: #eaecf2;
  color: #666;
}
html.light .api-section-head__title {
  color: #111;
}
html.light .api-section-head__sub {
  color: #aaa;
}
html.light .api-hero__title {
  color: #111;
}
html.light .api-hero__subtitle {
  color: #888;
}
html.light .api-hero__stats {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.07);
}
html.light .api-hero__stat span {
  color: #aaa;
}
html.light .api-hero__stat-sep {
  background: rgba(0, 0, 0, 0.08);
}
html.light .api-benefits__card {
  background: #fff;
  border-color: #eaecf2;
}
html.light .api-benefits__card:hover {
  background: #fafbfd;
  border-color: rgba(180, 41, 41, 0.2);
}
html.light .api-benefits__name {
  color: #222;
}
html.light .api-benefits__text {
  color: #777;
}
html.light .api-delivery__card {
  background: #fff;
  border-color: #eaecf2;
}
html.light .api-delivery__card:hover {
  background: #fafbfd;
  border-color: #dde0ea;
}
html.light .api-delivery__card-desc {
  color: #777;
}
html.light .api-delivery__card-list li {
  color: #888;
}
html.light .api-included__list li strong {
  color: #222;
}
html.light .api-included__list li p {
  color: #777;
}
html.light .api-included__quote {
  background: #fff;
  border-color: #eaecf2;
}
html.light .api-included__quote p {
  color: #222;
}
html.light .api-included__quote span {
  color: #aaa;
}
html.light .api-included__tag {
  background: rgba(0, 0, 0, 0.04);
  border-color: #e0e3ec;
  color: #888;
}
html.light .api-pricing__card {
  background: #fff;
  border-color: rgba(180, 41, 41, 0.2);
  box-shadow: 0px 0px 40px rgba(180, 41, 41, 0.05);
}
html.light .api-pricing__price span {
  color: #111;
}
html.light .api-pricing__price p {
  color: #aaa;
}
html.light .api-pricing__label {
  color: #bbb;
}
html.light .api-pricing__list li {
  background: rgba(0, 0, 0, 0.03);
  color: #666;
}
html.light .api-pricing__note {
  color: #bbb;
}
html.light .api-earn__card {
  background: #fff;
  border-color: #eaecf2;
}
html.light .api-earn__card--api html.light .api-earn__badge {
  background: rgba(213, 69, 69, 0.1);
  color: #d54545;
}
html.light .api-earn__card--own html.light .api-earn__badge {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}
html.light .api-earn__card--api html.light .api-earn__percent {
  color: #d54545;
}
html.light .api-earn__card--own html.light .api-earn__percent {
  color: #2e7d32;
}
html.light .api-earn__percent span {
  color: #aaa;
}
html.light .api-earn__name {
  color: #222;
}
html.light .api-earn__text {
  color: #777;
}
html.light .api-earn__text b {
  color: #222;
}
html.light .api-earn__admin {
  background: #fff;
  border-color: #eaecf2;
}
html.light .api-earn__admin-title {
  color: #222;
}
html.light .api-earn__admin-text {
  color: #777;
}
html.light .api-cta__title {
  color: #111;
}
html.light .api-cta__sub {
  color: #888;
}
html.light .auth-modal__tabs {
  padding: 10px;
  background: none;
}
html.light .auth-modal__tab {
  background: #e7efff;
}
html.light .auth-modal__tab img {
  filter: none;
}
html.light .auth-modal__tab:hover {
  background: #e7effe;
}
html.light .auth-modal__logo {
  border: 0px;
}
html.light .push__message {
  text-shadow: 0px;
}
html.light .topup-modal__cur-balance, html.light .topup-modal__currency {
  box-shadow: inset 0px 0px 6px rgba(16, 16, 16, 0.1);
}
html.light .profile-modal__block, html.light .profile-modal__balance, html.light .profile-modal__ref-row {
  background: #fff;
}
html.light .profile-modal__ref-link {
  background: none;
  border: none;
}
html.light .profile-modal__badge {
  background: rgba(16, 16, 16, 0.05);
}

html.light-v2-disabled body {
  background: #f4f6fa;
  background-image: radial-gradient(circle at 85% 0%, rgba(255, 151, 125, 0.18), transparent 32%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #20222b;
}
html.light-v2-disabled .header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom-color: #e4e7ee;
  box-shadow: 0 8px 24px rgba(36, 45, 65, 0.05);
}
html.light-v2-disabled .header__circle {
  background: #fff;
  box-shadow: 0 5px 14px rgba(36, 45, 65, 0.1), inset 0 0 0 1px #e7e8ed;
}
html.light-v2-disabled .header__name p {
  color: #bd3e42;
}
html.light-v2-disabled .header__name span {
  color: #7a8191;
}
html.light-v2-disabled .header__icon-btn {
  background: #f1f3f7;
  box-shadow: none;
}
html.light-v2-disabled .header__icon-btn svg {
  stroke: #596174;
}
html.light-v2-disabled .header__icon-btn:hover {
  background: #e8ebf1;
}
html.light-v2-disabled .header__api-btn, html.light-v2-disabled .header__auth-login {
  background: #bd3e42;
  box-shadow: 0 8px 16px rgba(189, 62, 66, 0.18);
}
html.light-v2-disabled .header__api-btn:hover, html.light-v2-disabled .header__auth-login:hover {
  background: #a93439;
}
html.light-v2-disabled .header__auth-registration {
  color: #5b6272;
}
html.light-v2-disabled .header__user-info p {
  color: #292d38;
}
html.light-v2-disabled .header__user-info span {
  color: #778094;
}
html.light-v2-disabled .app-sidebar {
  background: rgba(255, 255, 255, 0.78);
  border-right-color: #e4e7ee;
}
html.light-v2-disabled .app-sidebar__toggle {
  background: #f1f3f7;
}
html.light-v2-disabled .app-sidebar__toggle span {
  background: #596174;
}
html.light-v2-disabled .app-sidebar__toggle:hover {
  background: #ffe8e5;
}
html.light-v2-disabled .app-sidebar__label {
  color: #9aa1af;
}
html.light-v2-disabled .app-sidebar__bottom {
  border-top-color: #e8ebf0;
}
html.light-v2-disabled .app-sidebar__item {
  color: #5c6475;
}
html.light-v2-disabled .app-sidebar__item b {
  color: #737c8f;
}
html.light-v2-disabled .app-sidebar__item:hover {
  background: #f1f3f7;
  color: #20232d;
}
html.light-v2-disabled .app-sidebar__item:hover b {
  color: #20232d;
}
html.light-v2-disabled .app-sidebar__item--active {
  color: #9b3036;
  background: #fff0ee;
  box-shadow: inset 0 0 0 1px #ffd9d4;
}
html.light-v2-disabled .app-sidebar__item--active b {
  color: #c34449;
}
html.light-v2-disabled .app-sidebar__item--danger {
  color: #b74a51;
}
html.light-v2-disabled .hero-intro__title, html.light-v2-disabled .catalog__title h2, html.light-v2-disabled .format__title, html.light-v2-disabled .faq__title, html.light-v2-disabled .contacts__title {
  color: #20232d;
}
html.light-v2-disabled .hero-intro__lead, html.light-v2-disabled .format__subtitle, html.light-v2-disabled .faq__subtitle, html.light-v2-disabled .contacts__subtitle {
  color: #6f7788;
}
html.light-v2-disabled .hero-intro__lead b {
  color: #363c49;
}
html.light-v2-disabled .hero-intro__title span {
  color: #b63b40;
  background: #fff0ee;
}
html.light-v2-disabled .hero-intro__pill {
  color: #515a6c;
  background: rgba(255, 255, 255, 0.72);
  border-color: #e3e7ee;
}
html.light-v2-disabled .catalog__card, html.light-v2-disabled .format__card, html.light-v2-disabled .faq__item, html.light-v2-disabled .contacts__card {
  background: rgba(255, 255, 255, 0.88);
  border-color: #e1e5ec;
  box-shadow: 0 8px 20px rgba(37, 47, 67, 0.035);
}
html.light-v2-disabled .format__card {
  border-top-width: 1px;
}
html.light-v2-disabled .format__desc, html.light-v2-disabled .format__features li {
  color: #566073;
}
html.light-v2-disabled .format__desc b {
  color: #252b37;
}
html.light-v2-disabled .format__desc code, html.light-v2-disabled .format__for {
  background: #f3f5f8;
  color: #4f596b;
}
html.light-v2-disabled .format__for p {
  color: #5c6576;
}
html.light-v2-disabled .faq__question span {
  color: #272d39;
}
html.light-v2-disabled .faq__question:hover {
  background: #f6f7fa;
}
html.light-v2-disabled .faq__answer p {
  color: #626b7c;
}
html.light-v2-disabled .faq__answer p b {
  color: #303744;
}
html.light-v2-disabled .search__area, html.light-v2-disabled .sort__select, html.light-v2-disabled .catalog__button {
  background: #fff;
  border: 1px solid #e1e5ec;
  box-shadow: none;
}
html.light-v2-disabled .search__area input, html.light-v2-disabled .sort__title span {
  color: #252b37;
}
html.light-v2-disabled .sort__title p, html.light-v2-disabled .catalog__title span {
  color: #818999;
}
html.light-v2-disabled .catalog__info, html.light-v2-disabled .catalog__name, html.light-v2-disabled .catalog__open, html.light-v2-disabled .catalog__button:hover {
  background: #f3f5f8;
}
html.light-v2-disabled .catalog__name {
  color: #282f3b;
}
html.light-v2-disabled .catalog__price p, html.light-v2-disabled .catalog__number p, html.light-v2-disabled .catalog__minimum p {
  color: #667084;
}
html.light-v2-disabled .catalog__button-active, html.light-v2-disabled .catalog__buy {
  background: #bd3e42;
  color: #fff;
}
html.light-v2-disabled .footer {
  border-top-color: #e1e5ec;
}
html.light-v2-disabled .footer__copy, html.light-v2-disabled .footer__logo-name span {
  color: #8991a1;
}
html.light-v2-disabled .footer__logo-name p {
  color: #282e3a;
}
html.light-v2-disabled body.workspace-open .profile-modal__body,
html.light-v2-disabled body.workspace-open .topup-modal__body,
html.light-v2-disabled body.workspace-open .history-modal__body,
html.light-v2-disabled body.workspace-open .deposit-modal__body,
html.light-v2-disabled body.workspace-open .preorder-modal__body {
  background: #fff;
  border-color: #e1e5ec;
  box-shadow: 0 22px 60px rgba(37, 47, 67, 0.1);
}
html.light-v2-disabled body[data-workspace=auth] .auth-modal.auth-modal--open,
html.light-v2-disabled body.workspace-open .product.product--open {
  background: #f4f6fa;
}
html.light-v2-disabled body[data-workspace=auth] .auth-modal.auth-modal--open .auth-modal__body,
html.light-v2-disabled body.workspace-open .product.product--open .product__body {
  background: transparent;
  box-shadow: none;
}
html.light-v2-disabled .profile-modal__name, html.light-v2-disabled .topup-modal__title, html.light-v2-disabled .history-modal__title, html.light-v2-disabled .deposit-modal__title, html.light-v2-disabled .preorder-modal__title {
  color: #232934;
}

.workspace-home--hidden {
  display: none !important;
}

.app-sidebar ~ .workspace-home,
.workspace-home-footer {
  width: min(100vw - var(--sidebar-width) - 36px, var(--workspace-max-width));
  max-width: var(--workspace-max-width);
  margin-left: max(var(--sidebar-width) + 18px, 50vw + var(--sidebar-center-offset) - 600px);
  transition: margin 0.28s ease, width 0.28s ease;
  padding: 0px;
}

.workspace-home-footer {
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 12px;
  padding-right: 12px;
}
.workspace-home-footer .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.workspace-stage {
  display: none;
  width: min(100vw - var(--sidebar-width) - 36px, var(--workspace-max-width));
  height: 100%;
  margin: 0 auto 0 max(var(--sidebar-width) + 18px, 50vw + var(--sidebar-center-offset) - 600px);
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 24px;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(86, 86, 96, 0.55) transparent;
  transition: margin 0.28s ease, width 0.28s ease;
}
.workspace-stage::-webkit-scrollbar {
  width: 8px;
}
.workspace-stage::-webkit-scrollbar-track {
  background: transparent;
}
.workspace-stage::-webkit-scrollbar-thumb {
  background: rgba(86, 86, 96, 0.5);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 10px;
}
.workspace-stage::-webkit-scrollbar-thumb:hover {
  background-color: rgba(126, 126, 140, 0.62);
}
.workspace-stage--active {
  display: block;
}

#workspace-stage > .profile-modal,
#workspace-stage > .topup-modal,
#workspace-stage > .deposit-modal,
#workspace-stage > .history-modal,
#workspace-stage > .preorder-modal,
#workspace-stage > .auth-modal,
#workspace-stage > .admin-workspace,
#workspace-stage > .proxy-workspace,
#workspace-stage > .product {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0;
  display: none !important;
  opacity: 1 !important;
  pointer-events: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
  overflow: visible !important;
  z-index: auto !important;
}

#workspace-stage > .catalog-view {
  display: none;
}

#workspace-stage > .catalog-view.workspace-view--open {
  display: block;
}

#workspace-stage > .catalog-view .catalog {
  margin: 0;
}

#workspace-stage > .catalog-view .catalog__body {
  min-height: 0;
}

#workspace-stage > .profile-modal.profile-modal--open,
#workspace-stage > .topup-modal.topup-modal--open,
#workspace-stage > .deposit-modal.deposit-modal--open,
#workspace-stage > .history-modal.history-modal--open,
#workspace-stage > .preorder-modal.preorder-modal--open,
#workspace-stage > .auth-modal.auth-modal--open {
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  pointer-events: all !important;
}

#workspace-stage > .product.product--open {
  display: block !important;
  pointer-events: all !important;
}

#workspace-stage > .admin-workspace.admin-workspace--open {
  display: block !important;
  pointer-events: all !important;
}

#workspace-stage > .proxy-workspace.proxy-workspace--open {
  display: block !important;
  pointer-events: all !important;
}

#workspace-stage > .profile-modal .profile-modal__body,
#workspace-stage > .topup-modal .topup-modal__body,
#workspace-stage > .history-modal .history-modal__body,
#workspace-stage > .deposit-modal .deposit-modal__body,
#workspace-stage > .preorder-modal .preorder-modal__body,
#workspace-stage > .auth-modal .auth-modal__body,
#workspace-stage > .product .product__body {
  transform: none !important;
  opacity: 1 !important;
  max-height: none !important;
  margin: 0 !important;
  width: 100% !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow-y: auto;
}

#workspace-stage > .profile-modal .profile-modal__body,
#workspace-stage > .topup-modal .topup-modal__body,
#workspace-stage > .history-modal .history-modal__body,
#workspace-stage > .deposit-modal .deposit-modal__body,
#workspace-stage > .preorder-modal .preorder-modal__body {
  background: transparent !important;
}

#workspace-stage > .auth-modal .auth-modal__body {
  max-width: none;
  margin: 0 auto !important;
}

#workspace-stage > .product .product__block {
  align-items: start;
  gap: 14px;
}

#workspace-stage > .profile-modal .profile-modal__close,
#workspace-stage > .topup-modal .topup-modal__close,
#workspace-stage > .deposit-modal .deposit-modal__close,
#workspace-stage > .history-modal .history-modal__close,
#workspace-stage > .preorder-modal .preorder-modal__close,
#workspace-stage > .auth-modal .auth-modal__close,
#workspace-stage > .product .product__close {
  display: none !important;
}

#workspace-stage > .product .product__back {
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.062745098);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
#workspace-stage > .product .product__back svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: none;
}
#workspace-stage > .product .product__back span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
#workspace-stage > .product .product__back:hover {
  background: rgba(255, 255, 255, 0.1882352941);
}

#workspace-stage > .product .product__picture {
  width: 100%;
  aspect-ratio: 1/1;
  background: #1a1a1e;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#workspace-stage > .product .product__picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

#workspace-stage > .product .product__right {
  min-height: 0;
  max-height: none;
  overflow: visible;
}

.profile-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-workspace {
  display: none;
}

.admin-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 4px 0 52px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-page__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-page__hero h1 {
  margin: 5px 0 8px;
  color: #fff;
  font-size: 30px;
  font-weight: 650;
}
.admin-page__hero p {
  max-width: 650px;
  color: #938c96;
  font-size: 13px;
  line-height: 1.5;
}

.admin-page__eyebrow {
  color: #ff7668;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-page__refresh,
.admin-page__tool button {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #d13a3d, #a5222b);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  transition: filter 0.18s ease, transform 0.18s ease;
}
.admin-page__refresh:hover,
.admin-page__tool button:hover {
  filter: brightness(1.12);
}
.admin-page__refresh:active,
.admin-page__tool button:active {
  transform: translateY(1px);
}

.admin-page__refresh {
  padding: 10px 14px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.admin-page__refresh--ghost {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
  color: #d9d3dc;
}

.admin-page__status {
  min-height: 18px;
  color: #8e8791;
  font-size: 12px;
}

.admin-page__section {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-analytics {
  order: 1;
}

.admin-mirrors {
  order: 2;
}

.admin-control-panel {
  order: 3;
}

.admin-father-link {
  order: 3;
}
.admin-father-link .admin-page__section-head {
  margin-bottom: 0px;
}

.admin-feedback {
  order: 4;
}

.admin-father-link__btn {
  min-width: 180px;
}

.father-page {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 78% 12%, rgba(190, 35, 48, 0.18), transparent 32%), linear-gradient(180deg, #121216 0%, #151419 45%, #101014 100%);
  background-color: #121216;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100vw 100vh;
  color: #fff;
  font-family: "Onest", Arial, sans-serif;
  overflow-x: hidden;
}

.father-shell {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 28px 0 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.father-hero {
  padding-top: max(0px, env(safe-area-inset-top));
}

.father-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.father-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.father-summary__card {
  min-width: 0;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.father-summary__card span {
  color: #a79faa;
  font-size: 12px;
}
.father-summary__card strong {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
}
.father-summary__card small {
  color: #7f7883;
  font-size: 11px;
}

.father-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -2px 0 16px;
}

.father-tabs__btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.18);
  color: #aaa3ad;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.father-tabs__btn:hover {
  color: #f4eff6;
  border-color: rgba(255, 118, 104, 0.35);
}
.father-tabs__btn--active {
  border-color: rgba(255, 91, 82, 0.48);
  background: rgba(205, 51, 55, 0.2);
  color: #fff;
}

.father-tab-placeholder {
  min-height: 170px;
  padding: 28px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.12);
  color: #8e8791;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
}

.father-control-panel .admin-control-grid {
  grid-template-columns: 1fr;
}
.father-control-panel .father-tab-panel {
  display: none;
}
.father-control-panel .father-tab-panel--active {
  display: flex;
}

.father-statistics {
  gap: 14px;
}

.father-statistics__tabs,
.father-statistics__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.father-statistics__tabs button,
.father-statistics__filters button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  color: #aaa3ad;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.father-statistics__tabs button:hover,
.father-statistics__filters button:hover {
  color: #f4eff6;
  border-color: rgba(255, 118, 104, 0.35);
}
.father-statistics__tabs button.is-active,
.father-statistics__filters button.is-active {
  border-color: rgba(255, 91, 82, 0.52);
  background: rgba(205, 51, 55, 0.2);
  color: #fff;
}

.father-statistics__filters {
  min-height: 36px;
  align-items: center;
}
.father-statistics__filters > span {
  color: #817a84;
  font-size: 12px;
}

.father-statistics__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.father-statistics__metric {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.father-statistics__metric span {
  color: #a79faa;
  font-size: 11px;
}
.father-statistics__metric strong {
  color: #fff;
  font-size: 24px;
  font-weight: 750;
  line-height: 1.05;
}
.father-statistics__metric small {
  color: #7f7883;
  font-size: 11px;
}

.father-user-search {
  gap: 14px;
}

.father-user-card {
  min-height: 74px;
}
.father-user-card:empty {
  display: none;
}

.father-user-card__hero {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.14);
}
.father-user-card__hero strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 750;
}
.father-user-card__hero small {
  display: block;
  margin-top: 3px;
  color: #8e8791;
  font-size: 12px;
}

.father-user-card__avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(210, 51, 55, 0.35), rgba(255, 255, 255, 0.06));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}
.father-user-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.father-user-card__avatar span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.father-user-card__metrics {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.father-user-card__metrics div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.father-user-card__metrics span {
  color: #928a96;
  font-size: 11px;
}
.father-user-card__metrics b {
  color: #f8f4fa;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.father-user-card__buttons,
.father-user-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.father-user-actions {
  margin-top: 0;
}
.father-user-actions .is-active {
  border-color: rgba(255, 91, 82, 0.52);
  background: rgba(205, 51, 55, 0.2);
  color: #fff;
}

.father-user-section {
  min-height: 180px;
}

.father-user-purchase__downloads {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 6px;
}
.father-user-purchase__downloads a {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #f4eff6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
}

.father-user-purchase__details {
  margin-top: 7px;
}
.father-user-purchase__details summary {
  width: max-content;
  color: #ff858b;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.father-user-purchase__details pre {
  max-width: min(760px, 70vw);
  margin: 8px 0 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  color: #d8d2da;
  overflow: auto;
  font-size: 11px;
  line-height: 1.45;
}

.father-user-purchase__detail-grid {
  max-width: min(760px, 70vw);
  margin: 8px 0 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-columns: minmax(70px, max-content) minmax(0, 1fr);
  gap: 7px 14px;
}
.father-user-purchase__detail-grid span {
  color: #8e8792;
  font-size: 11px;
}
.father-user-purchase__detail-grid b {
  min-width: 0;
  color: #f4eff6;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.father-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 4000;
  max-width: min(360px, 100vw - 28px);
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(24, 24, 28, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.father-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-page__section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.admin-page__section-head h2 {
  color: #fff;
  font-size: 17px;
  font-weight: 650;
}
.admin-page__section-head p {
  margin-top: 5px;
  color: #8e8791;
  font-size: 12px;
}

.admin-page__tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-page__tool {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.17);
}
.admin-page__tool > span {
  color: #d8d2da;
  font-size: 13px;
  font-weight: 600;
}
.admin-page__tool > div {
  display: flex;
  gap: 8px;
}
.admin-page__tool input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: #f2edf4;
  font: inherit;
  font-size: 12px;
}
.admin-page__tool input:focus {
  border-color: rgba(255, 118, 104, 0.58);
}
.admin-page__tool button {
  flex: 0 0 auto;
  padding: 0 12px;
}

.admin-page__section--future {
  opacity: 0.8;
}

.admin-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.father-wallets__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.father-wallets__section {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  display: grid;
  gap: 12px;
}
.father-wallets__section h3,
.father-wallets__section h4 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}

.father-setting-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.father-setting-row__body {
  min-width: 0;
  justify-self: start;
  text-align: left;
}

.father-setting-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: rgba(255, 255, 255, 0.07);
}
.father-setting-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.father-setting-icon--key {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.father-bots__group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.father-bots__group:not(:first-child) {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.father-bots__group-title {
  color: #f6f1f7;
  font-size: 13px;
  font-weight: 800;
}

.father-bot-row--main {
  border-color: rgba(255, 204, 91, 0.18);
  background: linear-gradient(135deg, rgba(255, 204, 91, 0.08), rgba(205, 51, 55, 0.045));
}

.father-bot-row {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  gap: 10px;
  flex-direction: column;
}
.father-bot-row .admin-control-row__side {
  width: auto;
  min-width: 0;
  margin-left: auto;
  max-width: 100%;
  align-self: center;
  align-items: flex-start;
}
.father-bot-row .admin-control-actions {
  max-width: 100%;
  justify-content: flex-start;
}
.father-bot-row .admin-control-actions button {
  max-width: 100%;
}
.father-bot-row strong,
.father-bot-row small {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  overflow-wrap: anywhere;
}

.father-bot-row__info {
  min-width: 0;
  width: 100%;
}

.admin-control-row .admin-control-row--split .father-bot-row {
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 720px) {
  .father-bots__group {
    gap: 10px;
  }
  .father-bots__group:not(:first-child) {
    margin-top: 14px;
    padding-top: 14px;
  }
  .father-bots__group-title {
    padding-left: 0;
  }
  .father-bot-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }
  .father-bot-row .admin-control-row__side {
    width: 100%;
    margin-left: 0;
    justify-self: stretch;
    align-items: stretch;
  }
  .father-bot-row .admin-control-actions {
    gap: 8px;
  }
  .father-bot-row .admin-control-actions button {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}
.admin-control-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-control-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.admin-control-card__head h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}
.admin-control-card__head p {
  margin: 0;
  color: #817a84;
  font-size: 11px;
}
.admin-control-card__head select {
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: #d8d2da;
  font: inherit;
  font-size: 12px;
}

.admin-control-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.admin-control-card textarea,
.admin-control-field input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: #f3eef4;
  font: inherit;
  font-size: 12px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.admin-control-card textarea:focus,
.admin-control-field input:focus {
  border-color: rgba(255, 118, 104, 0.58);
  background: rgba(255, 255, 255, 0.065);
}

.admin-control-card textarea {
  min-height: 92px;
  padding: 11px;
  resize: vertical;
}

.admin-control-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.admin-control-field > span {
  color: #bdb6c0;
  font-size: 12px;
  font-weight: 600;
}
.admin-control-field > div {
  display: flex;
  gap: 8px;
}
.admin-control-field input {
  height: 38px;
  padding: 0 11px;
}

.admin-control-btn {
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #d13a3d, #a5222b);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  transition: filter 0.18s ease, transform 0.18s ease;
}
.admin-control-btn:hover {
  filter: brightness(1.12);
}
.admin-control-btn:active {
  transform: translateY(1px);
}
.admin-control-btn:disabled {
  opacity: 0.58;
  cursor: wait;
  filter: none;
}
.admin-control-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.055);
  color: #c8c0ca;
}
.admin-control-btn--danger {
  border: 1px solid rgba(255, 94, 99, 0.34);
  background: rgba(188, 44, 51, 0.18);
  color: #ff858b;
  box-shadow: none;
}

.admin-control-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 42px;
}
.admin-control-list--tall {
  min-height: 320px;
}

.admin-control-note {
  min-height: 16px;
  color: #8c858f;
  font-size: 11px;
  line-height: 1.35;
}
.admin-control-note code {
  color: #f4eff6;
  padding: 1px 5px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.admin-control-row {
  min-width: 0;
  padding: 10px 11px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  display: flex;
  gap: 10px;
}
.admin-control-row > div {
  min-width: 0;
}
.admin-control-row strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-control-row small,
.admin-control-row em {
  display: block;
  margin-top: 4px;
  color: #8f8792;
  font-size: 11px;
  font-style: normal;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-control-row--split {
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}
.admin-control-row--split .admin-control-row__side {
  margin-left: auto;
}

.admin-control-row small, .admin-control-row em {
  overflow: visible;
  text-overflow: clip;
  white-space: pre-wrap;
}

.admin-control-row__side {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 6px;
}
.admin-control-row__side b {
  color: #f1edf2;
  font-size: 13px;
}
.admin-control-row__side button {
  min-height: 28px;
  padding: 0 9px;
  border: 0;
  border-radius: 8px;
  background: rgba(205, 51, 55, 0.2);
  color: #ff7b73;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 650;
}

.admin-control-empty {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #77707a;
  font-size: 12px;
  text-align: center;
}

.admin-control-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}
.admin-control-pagination button {
  min-width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #aaa3ad;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  transition: background 0.18s ease, color 0.18s ease;
}
.admin-control-pagination button:hover {
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}
.admin-control-pagination button.is-active {
  background: #c72b31;
  color: #fff;
}

.father-announcement textarea {
  min-height: 180px;
  font-family: "Consolas", "Menlo", monospace;
  line-height: 1.45;
}

.father-announcement__field {
  gap: 9px;
}

.father-announcement__hint {
  padding: 11px 12px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: #8d8790;
  font-size: 11px;
  line-height: 1.45;
}
.father-announcement__hint code {
  color: #f5edf6;
  padding: 1px 5px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.father-announcement__hint--guide {
  display: grid;
  gap: 7px;
}
.father-announcement__hint--guide strong {
  color: #f5edf6;
  font-size: 12px;
}
.father-announcement__hint--guide span {
  color: #a9a1ac;
}

.father-announcement__confirm {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.14));
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.father-announcement__confirm[hidden] {
  display: none;
}

.father-announcement__preview-head {
  color: #f4eff6;
  font-size: 12px;
  font-weight: 650;
}

.father-announcement__telegram {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: end;
  gap: 10px;
}

.father-announcement__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d33a3f, #8f1f28);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(205, 51, 55, 0.2);
}

.father-announcement__bubble {
  width: fit-content;
  max-width: min(720px, 100%);
  padding: 13px 15px;
  border-radius: 16px 16px 16px 5px;
  background: #24242a;
  color: #f4f0f5;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  line-height: 1.48;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.father-announcement__bubble *,
.father-announcement__bubble b,
.father-announcement__bubble strong,
.father-announcement__bubble i,
.father-announcement__bubble em,
.father-announcement__bubble u,
.father-announcement__bubble s {
  color: inherit;
}
.father-announcement__bubble b,
.father-announcement__bubble strong {
  color: #fff;
  font-weight: 800;
}
.father-announcement__bubble i,
.father-announcement__bubble em {
  color: #f4f0f5;
  font-style: italic;
}
.father-announcement__bubble u {
  color: #f4f0f5;
  text-decoration: underline;
}
.father-announcement__bubble s {
  color: #d8d2da;
  text-decoration: line-through;
}
.father-announcement__bubble code {
  padding: 1px 5px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd7d4;
  font-family: "Consolas", "Menlo", monospace;
  font-size: 0.92em;
}
.father-announcement__bubble pre {
  margin: 8px 0;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  color: #f2edf4;
  white-space: pre-wrap;
  font-family: "Consolas", "Menlo", monospace;
}
.father-announcement__bubble blockquote {
  margin: 8px 0;
  padding: 8px 10px 8px 12px;
  border-left: 3px solid #d84a4d;
  border-radius: 8px;
  background: rgba(216, 74, 77, 0.1);
  color: #f4f0f5;
}
.father-announcement__bubble a {
  color: #8cb7ff;
  text-decoration: none;
}
.father-announcement__bubble .telegram-spoiler {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
  color: transparent;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
}

.father-announcement__confirm-actions {
  justify-content: flex-start;
}

.father-announcement__job {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.father-announcement__job[hidden] {
  display: none;
}

.father-announcement__job-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 13px;
}
.father-announcement__job-head span {
  color: #a9a2ac;
}

.father-announcement__progress {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
}
.father-announcement__progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d13a3d, #ff796d);
  transition: width 0.25s ease;
}

.father-announcement__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.father-announcement__stats span {
  min-width: 0;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #9a939d;
  font-size: 11px;
}
.father-announcement__stats span b {
  color: #fff;
}

.father-announcement__errors {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 120px;
  overflow: auto;
}
.father-announcement__errors span {
  color: #ff8b83;
  font-size: 11px;
}

.father-announcement__error {
  color: #ff8178;
}

.father-adv__create {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.father-adv__create-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}
.father-adv__create-grid input {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font: inherit;
  font-size: 13px;
}
.father-adv__create-grid input::placeholder {
  color: #8c858f;
}
.father-adv__create-grid input:focus {
  outline: none;
  border-color: rgba(140, 120, 240, 0.5);
}

.father-adv__item {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.father-adv__item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}
.father-adv__item-head > div {
  min-width: 0;
}
.father-adv__item-head code {
  color: #b9a8ff;
  font-size: 11px;
}

.father-adv__del {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: rgba(205, 51, 55, 0.18);
  color: #ff7b73;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}
.father-adv__del:hover {
  background: rgba(205, 51, 55, 0.32);
}

.father-adv__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 8px;
}
.father-adv__metrics span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: #8f8792;
  font-size: 11px;
}
.father-adv__metrics span b {
  color: #f1edf2;
  font-size: 14px;
  font-weight: 700;
}
.father-adv__metrics span i {
  color: #6f6877;
  font-size: 10px;
  font-style: normal;
}
.father-adv__metrics .father-adv__roi--pos b {
  color: #6ad08a;
}
.father-adv__metrics .father-adv__roi--neg b {
  color: #ff7b73;
}

.father-adv__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.father-adv__copy {
  max-width: 100%;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: #c9c2cf;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.father-adv__copy:hover {
  border-color: rgba(140, 120, 240, 0.5);
  color: #fff;
}

.father-catalog__grid[hidden],
.father-catalog__detail[hidden],
#admin-catalog-pagination[hidden] {
  display: none !important;
}

.father-catalog__head-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.father-catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.father-catalog__card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, transform 0.15s;
}
.father-catalog__card:hover {
  border-color: rgba(140, 120, 240, 0.55);
  transform: translateY(-2px);
}

.father-catalog__card-img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: #1b1b20 center/cover no-repeat;
}

.father-catalog__card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 11px;
  min-width: 0;
}
.father-catalog__card-body strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.father-catalog__card-body small {
  color: #9a929d;
  font-size: 11px;
}

.father-catalog__card-badges {
  display: flex;
  gap: 6px;
  margin-top: 3px;
  font-size: 12px;
  font-style: normal;
}
.father-catalog__card-badges i {
  font-style: normal;
}
.father-catalog__card-badges i.is-off {
  opacity: 0.45;
}

.father-catalog__detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.father-catalog__detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.father-catalog__detail-head code {
  color: #b9a8ff;
  font-size: 11px;
  flex: 0 0 auto;
}

.father-catalog__detail-title {
  flex: 1 1 auto;
  min-width: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.father-catalog__detail-top {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.father-catalog__detail-img {
  flex: 0 0 auto;
  width: 132px;
  height: 132px;
  border-radius: 14px;
  overflow: hidden;
  background: #1b1b20;
}
.father-catalog__detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.father-catalog__detail-meta {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.father-catalog__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 8px;
}
.father-catalog__metrics span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: #8f8792;
  font-size: 11px;
}
.father-catalog__metrics span b {
  color: #f1edf2;
  font-size: 14px;
  font-weight: 700;
}

.father-catalog__toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.father-catalog__toggle {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #c9c2cf;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
}
.father-catalog__toggle.is-on {
  border-color: rgba(106, 208, 138, 0.55);
  background: rgba(106, 208, 138, 0.14);
  color: #8be0a4;
}

.father-catalog__field-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.father-catalog__field-block > span {
  color: #9a929d;
  font-size: 12px;
}
.father-catalog__field-block textarea {
  width: 100%;
  min-height: 110px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font: inherit;
  font-size: 13px;
  line-height: 1.5;
  resize: vertical;
}
.father-catalog__field-block textarea:focus {
  outline: none;
  border-color: rgba(140, 120, 240, 0.5);
}
.father-catalog__field-block > button {
  align-self: flex-start;
}

.father-catalog__uploads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.father-catalog__upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.father-catalog__upload > span {
  color: #c9c2cf;
  font-size: 12px;
  font-weight: 600;
}
.father-catalog__upload input[type=file] {
  color: #9a929d;
  font-size: 12px;
}
.father-catalog__upload input[type=file]::file-selector-button {
  margin-right: 10px;
  padding: 7px 11px;
  border: 0;
  border-radius: 8px;
  background: rgba(140, 120, 240, 0.2);
  color: #cabfff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.father-catalog__extract {
  display: flex;
  gap: 8px;
}
.father-catalog__extract input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font: inherit;
  font-size: 13px;
}
.father-catalog__extract input:focus {
  outline: none;
  border-color: rgba(140, 120, 240, 0.5);
}

.father-catalog__danger {
  display: flex;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2px;
}
.father-catalog__danger button {
  margin-top: 12px;
}

.admin-page__future-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.admin-page__future-grid button {
  min-height: 58px;
  padding: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: transparent;
  color: #77717a;
  font: inherit;
  font-size: 12px;
  text-align: left;
  cursor: not-allowed;
}

.admin-analytics {
  overflow: hidden;
}

.admin-analytics__head {
  align-items: flex-start;
}

.admin-analytics__block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.admin-analytics__block + .admin-analytics__block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-analytics__subhead {
  margin-bottom: 14px;
}
.admin-analytics__subhead h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}
.admin-analytics__subhead p {
  margin-top: 6px;
  color: #8f8792;
  font-size: 12px;
}

.admin-analytics__periods {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.admin-analytics__period {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.18);
  color: #a9a3ac;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.admin-analytics__period:hover {
  color: #f5f1f6;
  border-color: rgba(255, 118, 104, 0.35);
}
.admin-analytics__period--active {
  border-color: rgba(255, 91, 82, 0.48);
  background: rgba(205, 51, 55, 0.19);
  color: #fff;
}

.admin-analytics__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-analytics__metric {
  min-height: 98px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016));
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.admin-analytics__metric span {
  color: #98909b;
  font-size: 11px;
}
.admin-analytics__metric strong {
  color: #fff;
  font-size: 27px;
  font-weight: 650;
  line-height: 1.05;
}
.admin-analytics__metric small {
  color: #79737c;
  font-size: 10px;
}

.admin-analytics__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(220px, 0.8fr);
  gap: 12px;
}

.admin-analytics__chart-card,
.admin-analytics__countries {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.16);
}

.admin-analytics__countries {
  overflow-y: scroll;
  max-height: 300px;
}
.admin-analytics__countries::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}
.admin-analytics__countries::-webkit-scrollbar-thumb {
  background-color: rgba(213, 213, 213, 0.568627451);
  border-radius: 4px;
}

.admin-analytics__chart-head {
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.admin-analytics__chart-head > span {
  color: #e8e1e9;
  font-size: 12px;
  font-weight: 650;
}
.admin-analytics__chart-head small {
  color: #756e78;
  font-size: 10px;
}

.admin-analytics__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}
.admin-analytics__legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #938b95;
  font-size: 10px;
}

.admin-analytics__legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9a4ae;
}
.admin-analytics__legend-dot--visits {
  background: #ff665d;
}
.admin-analytics__legend-dot--unique {
  background: #7e95ff;
}
.admin-analytics__legend-dot--site {
  background: #67d58b;
}
.admin-analytics__legend-dot--bot {
  background: #d89bff;
}

.admin-analytics__chart {
  min-height: 235px;
  margin-top: 10px;
}
.admin-analytics__chart svg {
  display: block;
  width: 100%;
  height: 235px;
  overflow: visible;
}
.admin-analytics__chart .chart-grid {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}
.admin-analytics__chart .chart-label {
  fill: #746d77;
  font-size: 10px;
}
.admin-analytics__chart .chart-area {
  fill: rgba(255, 102, 93, 0.09);
}
.admin-analytics__chart .chart-line {
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.admin-analytics__chart .chart-line--visits {
  stroke: #ff665d;
}
.admin-analytics__chart .chart-line--unique {
  stroke: #7e95ff;
}
.admin-analytics__chart .chart-line--site {
  stroke: #67d58b;
}
.admin-analytics__chart .chart-line--bot {
  stroke: #d89bff;
}

.admin-analytics__block--bots .admin-analytics__chart-card,
.admin-analytics__block--bots .admin-analytics__chart {
  width: 100%;
}
.admin-analytics__block--bots .admin-analytics__chart svg {
  width: 100%;
}
.admin-analytics__block--bots .chart-empty {
  min-height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #716a74;
  font-size: 12px;
}

.admin-analytics__countries-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
}

.admin-analytics__country {
  display: grid;
  grid-template-columns: minmax(86px, 96px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  color: #dcd5df;
  font-size: 11px;
}
.admin-analytics__country code {
  color: #a7a0a9;
  font-family: inherit;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-analytics__country strong {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.admin-analytics__country-bar {
  height: 5px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}
.admin-analytics__country-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b33d45, #ff7567);
}

.admin-analytics__countries-empty {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #746d77;
  font-size: 11px;
  text-align: center;
}

.admin-analytics__status {
  min-height: 16px;
  margin-top: 10px;
  color: #756e78;
  font-size: 10px;
}

@media (max-width: 800px) {
  .father-shell {
    width: min(100% - 24px, 1180px);
    padding: 20px 0 42px;
  }
  .father-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-page {
    padding: 0 2px 36px;
  }
  .admin-page__hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-page__tools {
    grid-template-columns: 1fr;
  }
  .admin-control-grid {
    grid-template-columns: 1fr;
  }
  .father-wallets__grid {
    grid-template-columns: 1fr;
  }
  .father-announcement__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-analytics__head {
    flex-direction: column;
  }
  .admin-analytics__subhead {
    flex-direction: column;
  }
  .admin-analytics__periods {
    justify-content: flex-start;
  }
  .admin-analytics__grid {
    grid-template-columns: 1fr;
  }
  .admin-analytics__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-page__future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .father-statistics__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .father-shell {
    width: min(100% - 18px, 1180px);
  }
  .father-summary {
    grid-template-columns: 1fr;
  }
  .father-tabs__btn {
    flex: 1 1 calc(50% - 8px);
  }
  .father-hero__actions {
    width: 100%;
    justify-content: stretch;
  }
  .father-hero__actions .admin-page__refresh {
    flex: 1;
  }
  .admin-father-link {
    order: 3;
  }
  .admin-father-link .admin-page__section-head {
    flex-direction: column;
  }
  .admin-analytics__metrics {
    grid-template-columns: 1fr;
  }
  .admin-analytics__metric {
    min-height: 76px;
  }
  .admin-analytics__legend {
    justify-content: flex-start;
  }
  .admin-analytics__chart-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-control-field > div {
    flex-direction: column;
  }
  .father-announcement__telegram {
    grid-template-columns: 1fr;
  }
  .father-announcement__avatar {
    display: none;
  }
  .father-announcement__stats {
    grid-template-columns: 1fr;
  }
  .admin-control-card__head {
    flex-direction: column;
  }
  .father-statistics__summary {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.profile-page__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.profile-page__identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-page__avatar {
  width: 126px !important;
  height: 126px !important;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.profile-page .profile-modal__name {
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  font-size: 22px;
  font-weight: 500;
}

.profile-page .profile-modal__badge {
  width: fit-content;
  margin-top: 7px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  color: #99929c;
}

.profile-page__logout {
  height: 38px;
  padding: 0 16px;
  border-radius: 10px;
  background: rgba(213, 76, 86, 0.1);
  border: 1px solid rgba(213, 76, 86, 0.2);
  color: #e47a82;
  font-size: 12px;
  cursor: pointer;
}
.profile-page__logout:hover {
  background: rgba(213, 76, 86, 0.18);
  color: #ff959c;
}

.profile-page__stats {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.profile-page .profile-modal__block {
  padding: 12px 18px;
  border-radius: 12px;
}
.profile-page .profile-modal__block span {
  color: #77717a;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.profile-page .profile-modal__block p {
  margin-top: 8px;
  color: #f0edf1;
  font-size: 16px;
}

.profile-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
}

.profile-page__card {
  background: rgba(0, 0, 0, 0.062745098);
  border-radius: 14px;
  padding: 20px;
}

.profile-page__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.profile-page__card-head span {
  color: #d9d3da;
  font-size: 13px;
  font-weight: 600;
}
.profile-page__card-head button {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(249, 249, 249, 0.0509803922);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.profile-page__card-head button:hover {
  background: rgba(255, 255, 255, 0.1254901961);
}

.profile-page .profile-modal__balances {
  gap: 10px;
}

.profile-page .profile-modal__balance {
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 10px;
  padding: 10px 14px;
  display: block;
  position: relative;
}
.profile-page .profile-modal__balance span {
  color: #807984;
  font-size: 11px;
}
.profile-page .profile-modal__balance p {
  margin-top: 4px;
  color: #75d875;
  font-size: 20px;
  font-weight: 600;
}

.profile-page .profile-modal__balance--ref {
  padding-right: 48px;
}

.profile-modal__withdraw-ref {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(117, 216, 117, 0.12);
  color: #75d875;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.profile-modal__withdraw-ref svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #7e7e7e;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.profile-modal__withdraw-ref:hover {
  background: rgba(117, 216, 117, 0.2);
  transform: translateY(-50%) scale(1.04);
}

.profile-page .profile-modal__section {
  margin: 0;
  padding: 20px;
}

.profile-page .profile-modal__section-label {
  margin-bottom: 8px;
  color: #807984;
  font-size: 11px;
}

.profile-page .profile-modal__ref-row {
  gap: 8px;
}

.profile-page .profile-modal__ref-link {
  min-width: 0;
  color: #a8a1ab;
}

.profile-page .profile-modal__copy-btn {
  flex: 0 0 auto;
  border: 0;
  background: rgba(185, 64, 69, 0.14);
  color: #ef777c;
  cursor: pointer;
}

.profile-page .profile-modal__ref-count {
  margin-top: 12px;
  color: #817a84;
}

.profile-page__password {
  width: 100%;
  margin-top: 6px;
}

.profile-page__password-title {
  color: #827b85;
  font-size: 11px;
  margin-bottom: 12px;
}

.profile-page__password-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.profile-page__password-fields input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border-radius: 9px;
  background: #151519;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #eee;
  font-size: 12px;
}
.profile-page__password-fields input::placeholder {
  color: #615b65;
}
.profile-page__password-fields input:focus {
  border-color: rgba(241, 89, 70, 0.55);
}

.profile-page__password-error {
  min-height: 18px;
  margin-top: 8px;
  color: #ec777d;
  font-size: 11px;
}

.profile-page__password-submit {
  height: 40px;
  margin-top: 3px;
  padding: 0 15px;
  border-radius: 9px;
  background: #b94045;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}
.profile-page__password-submit:hover {
  background: #d65258;
}
.profile-page__password-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

@media (max-width: 980px) {
  .profile-page__grid {
    grid-template-columns: 1fr;
  }
  .profile-page__password {
    width: 100%;
  }
  .profile-page__password-fields {
    grid-template-columns: 1fr;
  }
  .faq__body {
    flex-direction: column;
  }
  .faq__picture {
    padding-top: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: static;
  }
  .faq__picture img {
    width: 200px;
  }
  .faq__list {
    max-width: 640px;
    width: 100%;
  }
  .contacts__grid {
    display: flex;
    flex-direction: column;
  }
  .product__block {
    display: flex;
  }
  .product__left {
    width: 200px;
  }
  .product__right {
    width: calc(100% - 220px);
  }
}
@media (max-width: 1400px) {
  .hero__graffiti {
    left: 20px;
    width: 20%;
  }
  .hero__box {
    left: 30%;
    width: 10%;
    bottom: -23%;
  }
  .hero__telegram {
    left: 60%;
    width: 15%;
    top: -23%;
  }
  .hero__page-picture {
    width: 15%;
  }
}
@media (max-width: 1220px) {
  .catalog__body {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
body.sidebar-collapsed .workspace-stage {
  width: min(100vw - var(--sidebar-width) - 36px, var(--workspace-max-width));
  margin-left: max(var(--sidebar-width) + 18px, 50vw + var(--sidebar-center-offset) - 600px);
}

@media (max-width: 639px) {
  html, body {
    overflow-x: hidden;
  }
  body {
    min-width: 0;
  }
  .app-sidebar {
    top: 58px;
  }
}
@media (max-width: 1240px) {
  .container {
    width: 100%;
    max-width: 1024px;
    padding: 0px 24px;
  }
  .search__area {
    width: 240px;
  }
  .format__block {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .format__card {
    width: 100%;
  }
  .format__name {
    text-align: left;
  }
  .contacts__card-type-icon {
    right: 10%;
    left: auto;
    transform: translateX(0%);
    top: -20px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.1882352941);
    width: 40px;
    height: 40px;
    padding: 8px;
    backdrop-filter: blur(10px);
  }
  .contacts__card-type-icon img {
    opacity: 0.8;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 100%;
    padding: 0px 20px;
  }
  .header {
    height: 70px;
  }
  .header__circle {
    width: 50px;
    height: 50px;
  }
  .header__name p {
    font-size: 20px;
  }
  .header__name span {
    font-size: 10px;
  }
  .header__auth-login, .header__auth-registration {
    padding: 9px 18px;
    font-size: 13px;
  }
  .header__api-btn {
    height: 34px;
    padding: 0px 14px;
    font-size: 12px;
  }
  .hero__screen {
    height: 240px;
  }
  .hero__page-picture {
    transform: translateX(-30px);
  }
  .catalog__title p {
    font-size: 26px;
  }
  .catalog__body {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog__tab {
    flex-wrap: wrap;
    gap: 10px;
  }
  .search {
    width: 100%;
  }
  .search__area {
    width: 100%;
  }
  .sort {
    justify-content: space-between;
    width: 100%;
  }
  .sort__title {
    margin-right: auto;
  }
  .api-hero {
    padding: 60px 0px 50px;
  }
  .api-hero__title {
    font-size: 38px;
  }
  .api-hero__subtitle {
    font-size: 15px;
  }
  .api-hero__stat {
    padding: 0px 28px;
  }
  .api-hero__stat p {
    font-size: 22px;
  }
  .api-benefits__grid,
.api-delivery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .api-included__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0px 16px;
  }
  .hero-intro {
    padding: 24px 0px 20px;
  }
  .hero-intro__title {
    font-size: 26px;
  }
  .hero-intro__title span {
    transform: none;
  }
  .hero-intro__lead {
    font-size: 13px;
  }
  .header {
    height: auto;
  }
  .header__body {
    flex-wrap: wrap;
    gap: 12px;
  }
  .header__right {
    gap: 8px;
  }
  .header__circle {
    width: 44px;
    height: 44px;
  }
  .header__name p {
    font-size: 18px;
  }
  .header__name span {
    font-size: 9px;
  }
  .header__icon-btn {
    width: 32px;
    height: 32px;
  }
  .header__auth {
    gap: 6px;
  }
  .header__auth-login, .header__auth-registration {
    padding: 8px 14px;
    font-size: 12px;
  }
  .header__api-btn {
    height: 32px;
    padding: 0px 12px;
    font-size: 11px;
  }
  .header__user-inner {
    padding: 4px 6px;
  }
  .header__user-avatar {
    width: 34px;
    height: 34px;
  }
  .header__user-info p {
    font-size: 12px;
  }
  .header__user-info span {
    font-size: 10px;
  }
  .catalog__title p {
    font-size: 22px;
  }
  .catalog__title span {
    font-size: 13px;
  }
  .catalog__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .catalog__tab {
    gap: 8px;
  }
  .sort__select {
    min-width: 36px;
    height: 36px;
    padding: 0px 6px;
  }
  .sort__select svg {
    width: 24px;
    height: 24px;
  }
  .format__title {
    font-size: 22px;
  }
  .faq__title {
    font-size: 22px;
  }
  .contacts__title {
    font-size: 22px;
  }
  .product__left {
    width: 220px;
  }
  .product__body,
.buy-modal__body,
.logout-confirm__body,
.history-modal__body,
.purchase-detail__body,
.profile-modal__body,
.topup-modal__body,
.auth-modal__body,
.preorder-modal__body,
.preorder-create__body,
.buy-confirm__body,
.buy-success__body,
.phonecode-modal__body {
    width: calc(100% - 24px);
    max-width: 100%;
    max-height: calc(100vh - 40px);
    margin: 12px;
  }
  .format__grid,
.contacts__grid,
.api-benefits__grid,
.api-delivery__grid,
.api-earn__grid {
    grid-template-columns: 1fr;
  }
  .api-earn__admin {
    flex-direction: column;
    gap: 12px;
  }
  .api-hero {
    padding: 48px 0px 40px;
  }
  .api-hero__title {
    font-size: 30px;
  }
  .api-hero__subtitle {
    font-size: 14px;
  }
  .api-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .api-hero__btn {
    width: 100%;
    justify-content: center;
  }
  .api-hero__stats {
    padding: 16px 12px;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .api-hero__stat {
    padding: 0px 12px;
  }
  .api-hero__stat p {
    font-size: 20px;
  }
  .api-hero__stat span {
    font-size: 11px;
  }
  .api-hero__stat-sep {
    display: none;
  }
  .api-pricing__card {
    width: 100%;
    padding: 32px 24px;
  }
  .api-pricing__price span {
    font-size: 52px;
  }
  .api-section-head {
    margin-bottom: 32px;
  }
  .api-section-head__title {
    font-size: 24px;
  }
  .api-cta__title {
    font-size: 26px;
  }
  .footer__body {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .footer__logo {
    flex-direction: column;
    gap: 6px;
  }
  .desktop-push {
    width: calc(100% - 24px);
    max-width: 100%;
    left: 12px !important;
    right: 12px !important;
  }
  .father-user-card__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .header__auth-registration {
    display: none;
  }
  .hero-intro {
    gap: 20px;
    align-items: flex-start;
    padding: 0px;
  }
  .hero-intro__banner {
    width: 160px;
    height: 160px;
    min-width: 160px;
  }
  .hero-intro__body {
    gap: 10px;
  }
  .hero__screen {
    height: fit-content;
  }
  .hero__page {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 20px;
    padding-top: 60px;
  }
  .hero__page-info {
    width: 100%;
    text-align: center;
  }
  .hero__page-subtitle {
    font-size: 13px;
  }
  .hero__page-picture {
    transform: none;
    width: 140px;
  }
  .hero__telegram {
    width: 100px;
    top: -50px;
    left: auto;
    right: 20px;
  }
  .hero__box {
    width: 80px;
    bottom: -40px;
    left: 80px;
  }
  .hero__graffiti {
    width: 46%;
  }
  .sort {
    flex-wrap: wrap;
    padding-top: 10px;
    justify-content: flex-end;
  }
  .sort__title {
    width: 100%;
  }
  .push__message p {
    font-size: 11px;
  }
  .catalog {
    padding: 0px 0px;
  }
  .catalog__title {
    flex-direction: column;
    align-items: flex-start;
  }
  .faq__picture img {
    width: 240px;
  }
  .profile-page__avatar {
    width: 80px !important;
    height: 80px !important;
  }
  .profile-page .profile-modal__name {
    font-size: 16px;
  }
  .profile-modal__badge {
    font-size: 10px;
  }
  .profile-page .profile-modal__block p {
    font-size: 14px;
    margin-top: 2px;
  }
  .profile-page .profile-modal__block span {
    font-size: 6px;
    transform: scale(1.3);
  }
  .profile-page__logout {
    height: 26px;
    padding: 0px 10px;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .profile-page__hero {
    position: relative;
  }
  .profile-page .profile-modal__block {
    padding: 4px;
  }
}
@media (max-width: 800px) {
  .header__sidebar-toggle {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.2s ease;
  }
  body:not(.sidebar-collapsed) .header__sidebar-toggle {
    opacity: 0;
    pointer-events: none;
  }
  .app-sidebar {
    width: var(--sidebar-expanded-width, 254px);
    transform: translateX(0);
    transition: transform 0.28s ease;
  }
  body.sidebar-collapsed .app-sidebar {
    width: var(--sidebar-expanded-width, 254px);
    transform: translateX(-100%);
  }
  body:not(.sidebar-collapsed) .app-sidebar ~ .workspace-home,
body.sidebar-collapsed .app-sidebar ~ .workspace-home,
body:not(.sidebar-collapsed) .workspace-home-footer,
body.sidebar-collapsed .workspace-home-footer,
body:not(.sidebar-collapsed) .workspace-stage,
body.sidebar-collapsed .workspace-stage {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 20px;
  }
}
@media (max-width: 540px) {
  .main {
    margin-top: 40px;
  }
  .header__api-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -46px;
  }
  .header__api-btn--ghost {
    position: relative;
    bottom: auto;
    transform: none;
    left: auto;
  }
  .hero-intro {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .hero-intro__title {
    text-align: center;
  }
  .hero-intro__lead {
    text-align: center;
  }
  .hero-intro__pills {
    justify-content: center;
  }
  .catalog__nav {
    gap: 6px;
  }
  .catalog__button {
    width: 32px;
    height: 32px;
  }
  .profile-modal__blocks {
    flex-direction: column;
  }
  .profile-modal__block {
    width: 100%;
  }
  .profile-modal__balances {
    flex-direction: column;
  }
  .profile-modal__balance {
    width: 100%;
  }
  .profile-modal__section {
    padding: 10px;
  }
  .topup-modal__step {
    padding: 0px 10px;
  }
  .purchase-detail__body {
    padding: 20px 10px;
  }
  .buy-modal__title {
    padding: 0px 14px;
    font-size: 14px;
  }
  .buy-modal__header {
    padding: 0px 10px;
  }
  .buy-modal__section {
    padding: 0px 10px;
  }
  .buy-modal__section-number {
    padding: 0px;
    padding-top: 10px;
  }
  .buy-modal__total {
    margin: 0px 10px;
  }
  .buy-modal__balance {
    padding: 6px 10px;
  }
  .buy-modal__action-btn {
    margin: 0px 10px;
  }
  .history-modal__card-picture {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .product__block {
    overflow-y: auto;
  }
  .product__block::-webkit-scrollbar {
    width: 6px;
    height: 4px;
  }
  .product__block::-webkit-scrollbar-thumb {
    background-color: rgba(213, 213, 213, 0.568627451);
    border-radius: 4px;
  }
  .product__block {
    flex-direction: column;
    gap: 16px;
    padding: 0px 10px;
    padding-bottom: 20px;
  }
  .product__left, .product__right {
    width: 100%;
    height: fit-content;
    max-height: none;
    overflow: visible;
  }
  .product__right {
    min-height: auto;
    padding-right: 0px;
  }
  .product__description {
    min-height: auto;
  }
  .product__description span {
    max-height: none;
    overflow: visible;
  }
}
@media (max-width: 479px) {
  .container {
    padding: 0px 12px;
  }
  .hero-intro {
    padding: 18px 0px 14px;
  }
  .hero-intro__title {
    font-size: 22px;
  }
  .hero-intro__lead {
    font-size: 12.5px;
  }
  .hero-intro__pill {
    padding: 6px 12px;
    font-size: 11px;
  }
  .header__circle {
    width: 40px;
    height: 40px;
  }
  .header__name p {
    font-size: 16px;
  }
  .header__name span {
    font-size: 9px;
  }
  .header__icon-btn {
    width: 30px;
    height: 30px;
  }
  .header__icon-btn svg {
    width: 14px;
    height: 14px;
  }
  .header__right {
    gap: 6px;
  }
  .header__api-btn {
    height: 30px;
    padding: 0px 10px;
    font-size: 11px;
    justify-content: center;
  }
  .header__auth-login, .header__auth-registration {
    padding: 7px 12px;
    font-size: 11px;
  }
  .header__user-inner {
    padding: 3px 5px;
    gap: 6px;
  }
  .header__user-avatar {
    width: 30px;
    height: 30px;
  }
  .header__dropdown {
    width: 220px;
  }
  .search {
    gap: 0px;
  }
  .sort {
    gap: 0px;
    justify-content: space-between;
  }
  .sort__select {
    margin-top: 6px;
    width: 24%;
  }
  .sort__select svg {
    width: 20px;
    height: auto;
  }
  .catalog__title p, .catalog__title h1 {
    font-size: 20px;
  }
  .catalog__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .catalog__body {
    grid-template-columns: repeat(1, 1fr);
  }
  .format__card {
    padding: 14px;
    gap: 10px;
  }
  .faq__question {
    padding: 14px;
  }
  .faq__answer p {
    padding: 14px;
  }
  .product__close {
    top: 12px;
    right: 12px;
  }
  .product__close p {
    display: none;
  }
  .product__name {
    font-size: 14px;
  }
  .product__line {
    flex-direction: column;
    gap: 8px;
  }
  .buy-modal__body {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0px;
    border-radius: 0px;
  }
  .buy-modal__header {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .buy-modal__picture {
    width: 100%;
    height: auto;
  }
  .buy-modal__formats {
    justify-content: space-between;
  }
  .buy-modal__format {
    width: 100%;
    padding: 0px 4px;
  }
  .buy-modal__qty-input {
    width: 48px;
    font-size: 14px;
  }
  .buy-modal__qty-btn {
    width: 32px;
    height: 32px;
  }
  .buy-modal__total {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .buy-modal__total p {
    font-size: 22px;
  }
  .topup-modal__currencies {
    gap: 4px;
  }
  .topup-modal__currency {
    padding: 6px 10px;
    font-size: 11px;
  }
  .topup-modal__pay-field-row {
    flex-wrap: wrap;
    gap: 6px;
  }
  .api-hero {
    padding: 36px 0px 30px;
  }
  .api-hero__title {
    font-size: 24px;
    line-height: 1.2;
  }
  .api-hero__subtitle {
    font-size: 13px;
  }
  .api-hero__badge {
    font-size: 10px;
    padding: 4px 12px;
  }
  .api-hero__btn {
    height: 44px;
    font-size: 14px;
  }
  .api-hero__stats {
    padding: 14px 10px;
  }
  .api-hero__stat {
    padding: 0px 8px;
  }
  .api-hero__stat p {
    font-size: 18px;
  }
  .api-hero__stat span {
    font-size: 10px;
  }
  .api-benefits,
.api-delivery,
.api-included,
.api-pricing,
.api-cta {
    padding: 40px 0px;
  }
  .api-benefits__card,
.api-delivery__card {
    padding: 20px 16px;
  }
  .api-pricing__card {
    padding: 28px 18px;
  }
  .api-pricing__price span {
    font-size: 44px;
  }
  .api-pricing__price p {
    font-size: 16px;
  }
  .api-section-head__title {
    font-size: 22px;
  }
  .api-section-head__sub {
    font-size: 13px;
  }
  .api-cta__title {
    font-size: 22px;
  }
  .api-cta__btn {
    height: 46px;
    padding: 0px 22px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .deposit-modal__nav.catalog__nav {
    gap: 4px;
  }
  .footer {
    margin-top: 12px;
  }
  .footer__logo-circle {
    width: 30px;
    height: 30px;
  }
  .footer__logo-name p {
    font-size: 12px;
  }
  .footer__logo-name span {
    font-size: 10px;
  }
  .footer__copy {
    font-size: 11px;
  }
  .footer__top {
    padding: 6px 18px;
    font-size: 11px;
  }
  .deposit-modal__card-name, .deposit-modal__card-price {
    font-size: 12px;
  }
  .deposit-modal__card-usd {
    font-size: 10px;
  }
  .deposit-modal__card-tag {
    padding: 2px 6px;
    font-size: 9px;
  }
}
@media (max-width: 359px) {
  .container {
    padding: 0px 8px;
  }
  .header {
    padding: 0px 8px;
  }
  .header__circle {
    width: 36px;
    height: 36px;
  }
  .app-sidebar {
    top: 50px;
  }
  .header__icon-btns {
    gap: 4px;
  }
  .catalog__title p, .catalog__title h1 {
    font-size: 18px;
  }
  .api-hero__title {
    font-size: 21px;
  }
  .api-pricing__price span {
    font-size: 36px;
  }
  .api-section-head__title {
    font-size: 19px;
  }
  .api-cta__title {
    font-size: 19px;
  }
}
html.light {
  --light-page: #f6f7fa;
  --light-surface: #ffffff;
  --light-surface-muted: #f1f3f7;
  --light-border: #e3e6ec;
  --light-text: #1b1d25;
  --light-text-muted: #707580;
  --light-accent: #c94145;
  --light-accent-soft: #fff0f0;
}
html.light body {
  background: var(--light-page);
  background-image: none;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: auto;
  color: var(--light-text);
}
html.light .father-page {
  background: var(--light-page);
  color: var(--light-text);
}
html.light .header,
html.light .app-sidebar,
html.light .workspace-home-footer,
html.light .footer {
  box-shadow: none !important;
}
html.light .header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--light-border);
  backdrop-filter: blur(16px);
}
html.light .header__sidebar-toggle {
  background: #f2f3f6;
  border-color: var(--light-border);
}
html.light .header__sidebar-toggle span {
  background: #626774;
}
html.light .header__sidebar-toggle:hover {
  background: var(--light-accent-soft);
  border-color: #f2c8c9;
}
html.light .header__icon-btn {
  background: #f2f3f6;
  border: 1px solid transparent;
  color: #606571;
}
html.light .header__icon-btn:hover {
  background: #fff;
  border-color: var(--light-border);
  color: #242832;
}
html.light .header__user-inner:hover {
  background: #f6f7fa;
}
html.light .header__api-btn, html.light .header__auth-login {
  box-shadow: none !important;
}
html.light .app-sidebar {
  background: rgba(255, 255, 255, 0.9);
  border-right-color: var(--light-border);
  box-shadow: none;
}
html.light .app-sidebar__toggle {
  background: #f2f3f6;
  border: 1px solid var(--light-border);
}
html.light .app-sidebar__toggle span {
  background: #656a75;
}
html.light .app-sidebar__toggle:hover {
  background: var(--light-accent-soft);
}
html.light .app-sidebar__label {
  color: #8d929d;
}
html.light .app-sidebar__bottom {
  border-top-color: var(--light-border);
}
html.light .app-sidebar__item {
  color: #626773;
}
html.light .app-sidebar__item b {
  color: #747985;
}
html.light .app-sidebar__item:hover {
  background: #f2f4f7;
  color: #262a33;
}
html.light .app-sidebar__item:hover b {
  color: #262a33;
}
html.light .app-sidebar__item--active {
  background: var(--light-accent-soft);
  box-shadow: inset 0 0 0 1px #f2cfd0 !important;
  color: #3a2529;
}
html.light .app-sidebar__item--active b {
  color: var(--light-accent);
}
html.light .app-sidebar__item--danger {
  color: #b53c47;
}
html.light .app-sidebar__item--danger b {
  color: #b53c47;
}
html.light .app-sidebar__item--danger:hover {
  background: #fff0f1;
}
html.light .app-sidebar__item b svg,
html.light .app-sidebar__item b svg * {
  color: #747985 !important;
  stroke: #747985 !important;
}
html.light .app-sidebar__item:hover b svg,
html.light .app-sidebar__item:hover b svg * {
  color: #262a33 !important;
  stroke: #262a33 !important;
}
html.light .app-sidebar__item.app-sidebar__item--active b svg,
html.light .app-sidebar__item.app-sidebar__item--active b svg * {
  color: var(--light-accent) !important;
  stroke: var(--light-accent) !important;
}
html.light .app-sidebar__item.app-sidebar__item--danger b svg,
html.light .app-sidebar__item.app-sidebar__item--danger b svg * {
  color: #b53c47 !important;
  stroke: #b53c47 !important;
}
html.light .workspace-stage,
html.light body[data-workspace=auth] .auth-modal.auth-modal--open,
html.light body.workspace-open .product.product--open {
  background: transparent;
}
html.light .workspace-home-footer,
html.light .footer {
  border-top-color: var(--light-border);
  background: transparent;
}
html.light .hero__page-subtitle {
  color: #252a33;
}
html.light .hero__page-subtitle h1 {
  color: #11151d;
}
html.light .hero__page-subtitle b {
  color: #11151d;
}
html.light .hero__screen {
  background: rgba(191, 191, 191, 0.31);
}
html.light *, html.light *::before, html.light *::after {
  scrollbar-color: #c9ced7 transparent;
  scrollbar-width: thin;
}
html.light *::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
html.light *::-webkit-scrollbar-track {
  background: transparent;
}
html.light *::-webkit-scrollbar-thumb {
  background: #c9ced7;
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
}
html.light *::-webkit-scrollbar-thumb:hover {
  background: #aeb5c1;
  border: 2px solid transparent;
  background-clip: padding-box;
}
html.light .app-sidebar {
  scrollbar-gutter: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html.light .app-sidebar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
html.light .app-sidebar::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
html.light .app-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
html.light .app-sidebar::-webkit-scrollbar-track-piece, html.light .app-sidebar::-webkit-scrollbar-thumb, html.light .app-sidebar::-webkit-scrollbar-corner {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}
html.light #workspace-stage > .profile-modal .profile-modal__body,
html.light #workspace-stage > .topup-modal .topup-modal__body,
html.light #workspace-stage > .history-modal .history-modal__body,
html.light #workspace-stage > .deposit-modal .deposit-modal__body,
html.light #workspace-stage > .preorder-modal .preorder-modal__body,
html.light #workspace-stage > .auth-modal .auth-modal__body,
html.light .buy-modal__body,
html.light .purchase-detail__body,
html.light .deposit-detail__body,
html.light .preorder-create__body,
html.light .logout-confirm__body,
html.light .buy-confirm__body,
html.light .buy-success__body,
html.light .phonecode-modal__body {
  background: var(--light-surface);
  border-color: var(--light-border);
  box-shadow: none !important;
}
html.light .history-modal,
html.light .deposit-modal,
html.light .deposit-detail,
html.light .purchase-detail,
html.light .topup-modal,
html.light .logout-confirm,
html.light .auth-modal,
html.light .preorder-modal,
html.light .preorder-create,
html.light .buy-modal,
html.light .buy-confirm,
html.light .buy-success,
html.light .phonecode-modal,
html.light .buy-loading {
  background: rgba(31, 35, 45, 0.28);
  backdrop-filter: blur(5px);
}
html.light .product__body,
html.light .product__block {
  box-shadow: none !important;
}
html.light .product__price,
html.light .product__number,
html.light .product__minimum,
html.light .product__format,
html.light .product__description,
html.light .product__name {
  border: 1px solid var(--light-border);
  background: var(--light-surface) !important;
  box-shadow: none !important;
}
html.light .product__description span {
  background: #f6f7fa;
  color: #555b67;
}
html.light .product__picture,
html.light .product__picture img {
  box-shadow: none !important;
}
html.light .product__picture {
  background: #fff;
  border: 1px solid var(--light-border);
}
html.light .product__picture::after {
  display: none;
}
html.light .product__back {
  background: #323842;
  border: 1px solid #323842;
  color: #fff;
  box-shadow: none !important;
}
html.light .product__back svg {
  stroke: #fff;
}
html.light .product__back:hover {
  background: #20262f;
  border-color: #20262f;
  color: #fff;
}
html.light #workspace-stage > .product .product__picture {
  background: #fff !important;
  border: 1px solid var(--light-border) !important;
  box-shadow: none !important;
}
html.light #workspace-stage > .product .product__picture::after {
  display: none !important;
  box-shadow: none !important;
}
html.light #workspace-stage > .product .product__picture img {
  box-shadow: none !important;
}
html.light #workspace-stage > .product .product__back {
  background: #323842 !important;
  border: 1px solid #323842 !important;
  color: #fff !important;
  box-shadow: none !important;
}
html.light #workspace-stage > .product .product__back svg, html.light #workspace-stage > .product .product__back svg * {
  stroke: #fff !important;
  color: #fff !important;
}
html.light #workspace-stage > .product .product__back:hover {
  background: #20262f !important;
  border-color: #20262f !important;
  color: #fff !important;
}
html.light #workspace-stage > .product .product__price img,
html.light #workspace-stage > .product .product__number img,
html.light #workspace-stage > .product .product__minimum img,
html.light #workspace-stage > .product .product__format img,
html.light #workspace-stage > .product .product__description-icon {
  box-shadow: none !important;
}
html.light #workspace-stage > .product .product__format .product__format-tags span img {
  background: rgba(255, 255, 255, 0) !important;
}
html.light .catalog__card,
html.light .format__card,
html.light .faq__item,
html.light .contacts__card,
html.light .history-modal__card,
html.light .preorder-modal__card,
html.light .profile-page__card,
html.light .admin-page__section,
html.light .admin-control-card,
html.light .admin-analytics__metric,
html.light .admin-analytics__chart-card,
html.light .admin-analytics__countries {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  box-shadow: none !important;
}
html.light .catalog__card:hover,
html.light .format__card:hover,
html.light .faq__item:hover,
html.light .contacts__card:hover,
html.light .history-modal__card:hover,
html.light .preorder-modal__card:hover {
  background: #fbfcfd;
  border-color: #efc3c5;
  box-shadow: none !important;
}
html.light .history-modal__card-phone {
  background: #f1f3f6;
  color: #677181;
}
html.light .search__area,
html.light .auth-modal__input,
html.light .auth-modal__input--code,
html.light .topup-modal__input,
html.light .preorder-create__input,
html.light .profile-page__password-fields input,
html.light .admin-page__tool input,
html.light .admin-control-card textarea,
html.light .admin-control-field input,
html.light .admin-control-card__head select,
html.light .topup-modal__pay-field,
html.light .topup-modal__copy-row,
html.light .profile-modal__ref-link {
  background: #fbfcfd !important;
  border-color: var(--light-border) !important;
  box-shadow: none !important;
  color: #252a33 !important;
}
html.light .search__area:focus-within,
html.light .auth-modal__input:focus,
html.light .topup-modal__input:focus,
html.light .preorder-create__input:focus,
html.light .profile-page__password-fields input:focus,
html.light .admin-page__tool input:focus,
html.light .admin-control-card textarea:focus,
html.light .admin-control-field input:focus {
  border-color: #df8c8f !important;
  box-shadow: 0 0 0 3px rgba(201, 65, 69, 0.1) !important;
}
html.light .sort__select,
html.light .catalog__button,
html.light .history-modal__nav-btn,
html.light .preorder-modal__nav-btn,
html.light .topup-modal__currency,
html.light .buy-modal__qty-btn,
html.light .buy-modal__qty-input,
html.light .buy-modal__format,
html.light .buy-modal__total,
html.light .profile-modal__copy-btn,
html.light .topup-modal__copy-btn,
html.light .logout-confirm__btn--no,
html.light .buy-confirm__btn--no,
html.light .preorder-create__btn--secondary,
html.light .phonecode-modal__btn--home,
html.light .purchase-detail__action-btn--secondary,
html.light .admin-control-btn--ghost {
  background: #f0f2f5;
  border-color: var(--light-border);
  box-shadow: none !important;
  color: #515762;
}
html.light .sort__select:hover,
html.light .catalog__button:hover,
html.light .history-modal__nav-btn:hover,
html.light .preorder-modal__nav-btn:hover,
html.light .topup-modal__currency:hover,
html.light .buy-modal__qty-btn:hover,
html.light .buy-modal__format:hover,
html.light .profile-modal__copy-btn:hover,
html.light .topup-modal__copy-btn:hover,
html.light .logout-confirm__btn--no:hover,
html.light .buy-confirm__btn--no:hover,
html.light .preorder-create__btn--secondary:hover,
html.light .phonecode-modal__btn--home:hover,
html.light .purchase-detail__action-btn--secondary:hover,
html.light .admin-control-btn--ghost:hover {
  background: #e7ebf0;
  color: #252a33;
}
html.light .history-modal__nav-btn--active,
html.light .preorder-modal__nav-btn--active,
html.light .topup-modal__currency--active,
html.light .buy-modal__format--active {
  background: var(--light-accent-soft);
  border-color: #efc4c6;
  box-shadow: none !important;
  color: var(--light-accent);
}
html.light .sort__select-active {
  background: #fff;
}
html.light .header__api-btn,
html.light .header__auth-login,
html.light .product__buy,
html.light .buy-modal__action-btn,
html.light .topup-modal__action-btn,
html.light .auth-modal__action-btn,
html.light .preorder-modal__create-btn,
html.light .preorder-create__btn--primary,
html.light .logout-confirm__btn--yes,
html.light .buy-confirm__btn--yes,
html.light .buy-success__action-btn,
html.light .purchase-detail__action-btn:not(.purchase-detail__action-btn--secondary),
html.light .profile-page__password-submit,
html.light .admin-page__refresh,
html.light .admin-page__tool button,
html.light .admin-control-btn:not(.admin-control-btn--ghost) {
  background: #c94145;
  box-shadow: none !important;
  color: #fff;
}
html.light .header__api-btn:hover,
html.light .header__auth-login:hover,
html.light .product__buy:hover,
html.light .buy-modal__action-btn:hover,
html.light .topup-modal__action-btn:hover,
html.light .auth-modal__action-btn:hover,
html.light .preorder-modal__create-btn:hover,
html.light .preorder-create__btn--primary:hover,
html.light .logout-confirm__btn--yes:hover,
html.light .buy-confirm__btn--yes:hover,
html.light .buy-success__action-btn:hover,
html.light .purchase-detail__action-btn:not(.purchase-detail__action-btn--secondary):hover,
html.light .profile-page__password-submit:hover,
html.light .admin-page__refresh:hover,
html.light .admin-page__tool button:hover,
html.light .admin-control-btn:not(.admin-control-btn--ghost):hover {
  background: #b73339;
  filter: none;
}
html.light .admin-page__refresh--ghost {
  background: #f0f2f5;
  border-color: var(--light-border);
  color: #515762;
}
html.light .admin-page__refresh--ghost:hover {
  background: #e7ebf0;
  color: #252a33;
  filter: none;
}
html.light .auth-modal__action-btn--green {
  background: #2f8a50;
}
html.light .auth-modal__action-btn--green:hover {
  background: #287846;
}
html.light .auth-modal__action-btn--red,
html.light .topup-modal__action-btn--cancel,
html.light .phonecode-modal__btn--cancel {
  background: #fff0f1;
  border: 1px solid #f1c8ca;
  box-shadow: none !important;
  color: #b83e47;
}
html.light .auth-modal__action-btn--red:hover,
html.light .topup-modal__action-btn--cancel:hover,
html.light .phonecode-modal__btn--cancel:hover {
  background: #ffe4e5;
  color: #a63039;
}
html.light .profile-page__hero {
  border-bottom-color: var(--light-border);
}
html.light .profile-page__avatar {
  box-shadow: none !important;
  border: 1px solid var(--light-border);
}
html.light .profile-page .profile-modal__name,
html.light .profile-page .profile-modal__block p,
html.light .profile-page__card-head span,
html.light .profile-page__password-title {
  color: var(--light-text);
}
html.light .profile-page .profile-modal__badge {
  background: #f0f2f5;
  color: #666d78;
}
html.light .profile-page .profile-modal__block {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  box-shadow: none;
}
html.light .profile-page .profile-modal__block span,
html.light .profile-page .profile-modal__balance span,
html.light .profile-page__password-title,
html.light .profile-page .profile-modal__ref-count {
  color: var(--light-text-muted);
}
html.light .profile-page .profile-modal__balance {
  background: #f7faf8;
  border-color: #dfe9e1;
}
html.light .profile-page .profile-modal__balance p {
  color: #287d46;
}
html.light .profile-modal__withdraw-ref {
  background: #e7f5ec;
  border: 1px solid #c9e7d2;
  color: #2f8a50;
  box-shadow: none;
}
html.light .profile-modal__withdraw-ref:hover {
  background: #d8f0e1;
}
html.light .profile-page__card-head button {
  background: var(--light-accent-soft);
  border: 1px solid #efc9cb;
  color: var(--light-accent);
  box-shadow: none;
}
html.light .profile-page__card-head button:hover {
  background: #ffe4e5;
}
html.light .profile-page__logout {
  background: #fff0f1;
  border-color: #f2c7ca;
  color: #b83e47;
  box-shadow: none;
}
html.light .profile-page__logout:hover {
  background: #ffe4e5;
  color: #a63039;
}
html.light .profile-page__password-submit {
  background: #c94145;
}
html.light .admin-page__hero {
  border-bottom-color: var(--light-border);
}
html.light .admin-page__hero h1 {
  color: var(--light-text);
}
html.light .admin-page__hero p {
  color: var(--light-text-muted);
}
html.light .admin-page__status,
html.light .admin-analytics__status {
  color: #777d88;
}
html.light .admin-page__section-head h2 {
  color: var(--light-text);
}
html.light .admin-page__section-head h3 {
  color: var(--light-text);
}
html.light .admin-page__section-head p {
  color: var(--light-text-muted);
}
html.light .admin-analytics__block + .admin-analytics__block {
  border-top-color: var(--light-border);
}
html.light .admin-page__tool {
  background: #f8f9fb;
  border: 1px solid var(--light-border);
}
html.light .admin-page__tool > span {
  color: #3d434f;
}
html.light .admin-control-card {
  background: #f8f9fb;
}
html.light .admin-control-card h3,
html.light .admin-control-card .admin-control-row strong,
html.light .admin-control-card .admin-control-row__side b {
  color: var(--light-text);
}
html.light .admin-control-card p,
html.light .admin-control-card .admin-control-field > span,
html.light .admin-control-card .admin-control-note,
html.light .admin-control-card .admin-control-row small,
html.light .admin-control-card .admin-control-row em,
html.light .admin-control-card .admin-control-empty {
  color: var(--light-text-muted);
}
html.light .admin-control-row,
html.light .admin-control-empty {
  background: #fff;
  border: 1px solid var(--light-border);
  box-shadow: none;
}
html.light .admin-control-row__side button {
  background: #fff0f1;
  color: #b83e47;
}
html.light .admin-control-pagination button {
  background: #f0f2f5;
  color: #5e6571;
}
html.light .admin-control-pagination button:hover {
  background: #e7ebf0;
  color: #252a33;
}
html.light .admin-control-pagination button.is-active {
  background: #c94145;
  color: #fff;
}
html.light .admin-analytics__period {
  background: #f2f4f7;
  border-color: var(--light-border);
  color: #5e6571;
}
html.light .admin-analytics__period:hover {
  background: #fff;
  border-color: #e4b1b3;
  color: #2b3039;
}
html.light .admin-analytics__period--active {
  background: var(--light-accent-soft);
  border-color: #efc4c6;
  color: var(--light-accent);
}
html.light .admin-analytics__metric {
  background: #fff;
}
html.light .admin-analytics__metric span,
html.light .admin-analytics__metric small {
  color: var(--light-text-muted);
}
html.light .admin-analytics__metric strong {
  color: var(--light-text);
}
html.light .admin-analytics__chart-card,
html.light .admin-analytics__countries {
  background: #fbfcfd;
}
html.light .admin-analytics__chart-head > span,
html.light .admin-analytics__country strong {
  color: #343944;
}
html.light .admin-analytics__chart-head small,
html.light .admin-analytics__legend span,
html.light .admin-analytics__country,
html.light .admin-analytics__country code,
html.light .admin-analytics__countries-empty {
  color: #747b87;
}
html.light .admin-analytics__chart .chart-grid {
  stroke: #e5e8ee;
}
html.light .admin-analytics__chart .chart-label {
  fill: #8b919c;
}
html.light .admin-analytics__chart .chart-area {
  fill: rgba(201, 65, 69, 0.08);
}
html.light .admin-analytics__country-bar {
  background: #e9edf2;
}
html.light .admin-analytics__country-bar span {
  background: #d76a6d;
}
html.light .desktop-push,
html.light .push__message {
  background: #fff;
  border-color: var(--light-border);
  box-shadow: none !important;
}
html.light .desktop-push__title {
  color: var(--light-text);
}
html.light .desktop-push__text,
html.light .desktop-push__timer {
  color: var(--light-text-muted);
}
html.light .phonecode-modal__copyable--copied {
  background: #e8f5eb;
  color: #287d46;
}
html.light .topup-modal__copy-btn--copied {
  background: #e8f5eb !important;
  color: #287d46 !important;
}
html.light .product__format-tags img {
  background: rgba(255, 255, 255, 0) !important;
}

@media (max-width: 800px) {
  html.light .header,
html.light .app-sidebar {
    box-shadow: none !important;
  }
  html.light .app-sidebar {
    background: rgba(255, 255, 255, 0.97);
  }
}
@media (max-width: 560px) {
  html.light .admin-page__section,
html.light .admin-analytics__chart-card,
html.light .admin-analytics__countries,
html.light .profile-page__card {
    border-radius: 12px;
  }
}
.catalog__picture {
  height: auto;
  aspect-ratio: 1/1;
  min-height: 0;
  background: #1d1e23;
}
.catalog__picture::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.035) 8%, rgba(255, 255, 255, 0.1) 18%, rgba(255, 255, 255, 0.035) 33%);
  background-size: 220% 100%;
  transition: opacity 0.18s ease;
  pointer-events: none;
}
.catalog__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.catalog__card--image-loading .catalog__picture::before {
  opacity: 1;
  animation: catalog-image-shimmer 1.1s linear infinite;
}

.catalog__card--image-loading .catalog__picture img {
  opacity: 0 !important;
}

.catalog__card--image-ready .catalog__picture img {
  opacity: 0.9;
}

.catalog__card--image-ready:hover .catalog__picture img {
  opacity: 1;
}

.catalog__card--image-missing .catalog__picture {
  background: #26282e;
}

html.light .catalog__picture {
  background: #eff1f5;
}
html.light .catalog__picture::before {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.55) 8%, rgba(214, 219, 228, 0.7) 18%, rgba(255, 255, 255, 0.55) 33%);
}

html.light .catalog__card--image-missing .catalog__picture {
  background: #eef0f4;
}

@keyframes catalog-image-shimmer {
  from {
    background-position: 120% 0;
  }
  to {
    background-position: -120% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .catalog__card--image-loading .catalog__picture::before {
    animation: none;
  }
}
.feedback-modal__body,
.notifications-modal__body {
  min-height: min(760px, 100vh - 130px);
}

.feedback-chat {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 18px;
  min-height: 560px;
}

.feedback-chat--admin {
  min-height: 520px;
}

.feedback-chat__list,
.feedback-chat__dialog {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background: rgba(20, 20, 23, 0.64);
  overflow: hidden;
}

.feedback-chat__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  overflow-y: auto;
}

.feedback-chat__list-item {
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 14px;
  text-align: left;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  display: grid;
  gap: 6px;
}

.feedback-chat__list-item:hover,
.feedback-chat__list-item--active {
  background: linear-gradient(135deg, rgba(214, 44, 48, 0.24), rgba(255, 255, 255, 0.04));
}

.feedback-chat__list-title {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-chat__list-meta,
.feedback-chat__list-preview,
.feedback-chat__peer span,
.feedback-chat__subject span,
.feedback-chat__empty-mini {
  color: #9d9aa8;
  font-size: 13px;
}

.feedback-chat__list-preview {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-chat__dialog {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.feedback-chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.feedback-chat__avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #32323a, #19191d);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.feedback-chat__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feedback-chat__avatar span {
  display: none;
}

.feedback-chat__avatar--fallback span {
  display: inline;
}

.feedback-chat__avatar--admin {
  background: rgba(214, 44, 48, 0.16);
  padding: 8px;
}
.feedback-chat__avatar--admin img {
  object-fit: contain;
}

.feedback-chat__peer {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.feedback-chat__peer strong {
  color: #fff;
  font-size: 17px;
}

.feedback-chat__header-actions {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.feedback-chat__header-actions button,
.feedback-chat__composer button,
.admin-feedback__filters button,
.admin-feedback__filters select {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(214, 44, 48, 0.22);
  color: #ff777a;
  font-weight: 800;
  padding: 10px 14px;
}

.feedback-chat__subject {
  padding: 12px 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.feedback-chat__subject b {
  margin-left: 10px;
  color: #ff777a;
}

.feedback-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: radial-gradient(circle at top right, rgba(214, 44, 48, 0.1), transparent 34%), rgba(12, 12, 15, 0.38);
}

.feedback-chat__message {
  max-width: min(76%, 620px);
  border-radius: 18px;
  padding: 11px 13px 8px;
  white-space: pre-wrap;
  word-break: break-word;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}
.feedback-chat__message time {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  text-align: right;
}

.feedback-chat__message--mine {
  align-self: flex-end;
  background: linear-gradient(135deg, #c62a2e, #7f1d21);
  border-bottom-right-radius: 6px;
}

.feedback-chat__message--other {
  align-self: flex-start;
  background: #28282e;
  border-bottom-left-radius: 6px;
}

.feedback-chat__composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.feedback-chat__input,
.feedback-create__textarea {
  resize: vertical;
  min-height: 48px;
  max-height: 160px;
  color: #fff;
}

.feedback-create__textarea {
  width: calc(100% - 48px);
  max-width: calc(100% - 48px);
  min-height: 150px;
}

.feedback-chat__empty,
.feedback-chat__closed,
.feedback-chat__empty-mini {
  padding: 24px;
  text-align: center;
}

.feedback-chat__empty {
  margin: auto;
  color: #9d9aa8;
}

.feedback-chat__closed {
  color: #ff777a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-feedback__filters {
  display: flex;
  gap: 10px;
  align-items: center;
}

.notifications-placeholder {
  min-height: 460px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  color: #9d9aa8;
}

.notifications-placeholder__icon {
  font-size: 54px;
}

.notifications-placeholder h3 {
  color: #fff;
  font-size: 28px;
}

.preorder-modal__create-btn--disabled {
  opacity: 0.62;
}

html.light .feedback-chat__list,
html.light .feedback-chat__dialog {
  background: #fff;
  border-color: #dfe4ec;
}
html.light .feedback-chat__list-item {
  color: #171b23;
  background: #f3f5f8;
}
html.light .feedback-chat__list-item:hover,
html.light .feedback-chat__list-item--active {
  background: #fff0f0;
}
html.light .feedback-chat__peer strong,
html.light .feedback-chat__subject,
html.light .notifications-placeholder h3 {
  color: #111827;
}
html.light .feedback-chat__messages {
  background: #f5f7fb;
}
html.light .feedback-chat__message--other {
  background: #fff;
  color: #111827;
}
html.light .feedback-chat__header-actions button,
html.light .feedback-chat__composer button,
html.light .admin-feedback__filters button,
html.light .admin-feedback__filters select {
  background: #2f3745;
  color: #fff;
}

@media (max-width: 800px) {
  .feedback-chat {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .feedback-chat__list {
    max-height: 260px;
  }
  .feedback-chat__dialog {
    min-height: 520px;
  }
  .feedback-chat__message {
    max-width: 88%;
  }
  .feedback-chat__composer {
    grid-template-columns: 1fr;
  }
}
.feedback-modal__body {
  padding: clamp(18px, 2.4vw, 34px);
}

.admin-feedback .feedback-chat {
  min-height: clamp(520px, 64vh, 760px);
}

.feedback-chat {
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}

.feedback-chat__list,
.feedback-chat__dialog {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(23, 23, 27, 0.92), rgba(15, 15, 18, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 24px 70px rgba(0, 0, 0, 0.24);
}

.feedback-chat__list {
  gap: 10px;
  padding: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}
.feedback-chat__list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.feedback-chat__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.feedback-chat__list::-webkit-scrollbar-track, .feedback-chat__list::-webkit-scrollbar-button {
  background: transparent;
  width: 0;
  height: 0;
}

.feedback-chat__list-item {
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  padding: 16px 18px;
  color: #f7f7fb;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.feedback-chat__list-item * {
  color: inherit;
}
.feedback-chat__list-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 111, 114, 0.26);
  background: rgba(255, 255, 255, 0.065);
}

.feedback-chat__list-item--active {
  border-color: rgba(255, 105, 108, 0.34);
  background: linear-gradient(135deg, rgba(214, 44, 48, 0.34), rgba(214, 44, 48, 0.09));
}

.feedback-chat__list-title {
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.feedback-chat__list-meta,
.feedback-chat__list-preview {
  color: #aaa7b5;
  line-height: 1.45;
}

.feedback-chat__list-preview {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.feedback-chat__dialog {
  min-height: clamp(480px, 58vh, 680px);
}

.feedback-chat__header {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.028);
  border-bottom-color: rgba(255, 255, 255, 0.075);
}

.feedback-chat__avatar {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.16), transparent 42%), linear-gradient(135deg, #303039, #1c1c22);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.feedback-chat__avatar--admin {
  border-radius: 18px;
  background: rgba(214, 44, 48, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 105, 108, 0.18);
}

.feedback-chat__peer strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.15;
}
.feedback-chat__peer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aaa7b5;
  font-size: 13px;
}

.feedback-chat__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex: 0 0 7px;
  background: rgba(148, 163, 184, 0.7);
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.08);
}

.feedback-chat__online-dot--active {
  background: #3ee978;
  box-shadow: 0 0 0 3px rgba(62, 233, 120, 0.12), 0 0 16px rgba(62, 233, 120, 0.35);
}

.feedback-chat__header-actions button,
.feedback-chat__composer button,
.admin-feedback__filters button,
.admin-feedback__filters select {
  min-height: 44px;
  border-radius: 16px;
  border-color: rgba(255, 105, 108, 0.2);
  background: linear-gradient(135deg, rgba(214, 44, 48, 0.36), rgba(214, 44, 48, 0.2));
  color: #ff8b8e;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}
.feedback-chat__header-actions button:hover,
.feedback-chat__composer button:hover,
.admin-feedback__filters button:hover,
.admin-feedback__filters select:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 105, 108, 0.38);
  background: linear-gradient(135deg, rgba(214, 44, 48, 0.48), rgba(214, 44, 48, 0.25));
}

.feedback-chat__subject {
  padding: 12px 20px;
  color: #f6f6fa;
  background: rgba(255, 255, 255, 0.015);
}
.feedback-chat__subject span {
  color: #aaa7b5;
}
.feedback-chat__subject b {
  color: #fff;
  margin-left: 6px;
}

.feedback-chat__messages {
  padding: 16px 18px;
  gap: 8px;
  background: radial-gradient(circle at 86% 12%, rgba(214, 44, 48, 0.12), transparent 38%), linear-gradient(180deg, rgba(13, 13, 17, 0.74), rgba(13, 13, 17, 0.9));
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.feedback-chat__message {
  width: fit-content;
  height: auto;
  max-height: none;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 0;
  max-width: min(68%, 560px);
  padding: 8px 11px 6px;
  color: #f8f8fb;
  line-height: 1.34;
  font-size: 14px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.feedback-chat__message > div {
  color: inherit;
}
.feedback-chat__message time {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1;
  text-align: right;
}

.feedback-chat__message--mine {
  background: linear-gradient(135deg, #cf3034, #8f2226);
  border-bottom-right-radius: 8px;
}

.feedback-chat__message--other {
  background: #2b2b33;
  border: 1px solid rgba(255, 255, 255, 0.045);
  color: #f4f4f8;
  border-bottom-left-radius: 8px;
}

.feedback-chat__composer {
  align-items: end;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.025);
  border-top-color: rgba(255, 255, 255, 0.075);
}

.feedback-chat__input,
.feedback-create__textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  padding: 11px 14px;
  line-height: 1.35;
  min-height: 44px;
  max-height: 130px;
  outline: none;
}
.feedback-chat__input::placeholder,
.feedback-create__textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.feedback-chat__input:focus,
.feedback-create__textarea:focus {
  border-color: rgba(255, 105, 108, 0.42);
  background: rgba(255, 255, 255, 0.075);
}

.feedback-chat__composer button {
  min-width: 132px;
  color: #fff;
  background: linear-gradient(180deg, #d7353a, #ad252a);
  box-shadow: 0 12px 28px rgba(214, 44, 48, 0.24);
}

.feedback-chat__user-info {
  margin: 12px 18px 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
}

.feedback-chat__user-info-title {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
}

.feedback-chat__user-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.feedback-chat__user-info-grid div {
  min-width: 0;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}
.feedback-chat__user-info-grid span {
  display: block;
  margin-bottom: 4px;
  color: #918e9d;
  font-size: 11px;
}
.feedback-chat__user-info-grid strong {
  display: block;
  color: #fff;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.feedback-chat__empty,
.feedback-chat__closed,
.feedback-chat__empty-mini {
  color: #aaa7b5;
}

html.light .feedback-chat__list,
html.light .feedback-chat__dialog {
  background: #ffffff;
  border-color: #dde3ec;
  box-shadow: 0 18px 46px rgba(31, 41, 55, 0.08);
}
html.light .feedback-chat__list-item {
  color: #1f2937;
  background: #f7f8fb;
  border-color: #e5e9f1;
}
html.light .feedback-chat__list-item:hover {
  background: #fff;
  border-color: #f0b2b4;
}
html.light .feedback-chat__list-item--active {
  background: linear-gradient(135deg, #fff1f1, #fff);
  border-color: #ef9da0;
}
html.light .feedback-chat__list-title,
html.light .feedback-chat__peer strong,
html.light .feedback-chat__subject b {
  color: #111827;
}
html.light .feedback-chat__list-meta,
html.light .feedback-chat__list-preview,
html.light .feedback-chat__peer span,
html.light .feedback-chat__subject span {
  color: #6b7280;
}
html.light .feedback-chat__header {
  background: #fff;
  border-bottom-color: #e5e9f1;
}
html.light .feedback-chat__avatar {
  background: #eef1f6;
  color: #1f2937;
}
html.light .feedback-chat__subject {
  color: #111827;
  background: #fbfcfe;
  border-bottom-color: #e5e9f1;
}
html.light .feedback-chat__messages {
  background: radial-gradient(circle at 86% 12%, rgba(214, 44, 48, 0.08), transparent 38%), #f4f6fa;
}
html.light .feedback-chat__message--other {
  background: #fff;
  border-color: #e3e8f0;
  color: #1f2937;
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.08);
}
html.light .feedback-chat__message--other time {
  color: #7b8493;
}
html.light .feedback-chat__composer {
  background: #fff;
  border-top-color: #e5e9f1;
}
html.light .feedback-chat__input,
html.light .feedback-create__textarea {
  background: #f7f8fb;
  border-color: #dfe5ee;
  color: #111827;
}
html.light .feedback-chat__input::placeholder,
html.light .feedback-create__textarea::placeholder {
  color: #8b95a4;
}
html.light .feedback-chat__input:focus,
html.light .feedback-create__textarea:focus {
  background: #fff;
}
html.light .feedback-chat__header-actions button,
html.light .admin-feedback__filters button,
html.light .admin-feedback__filters select {
  background: #fff;
  color: #c93136;
  border-color: #f0b2b4;
}
html.light .feedback-chat__composer button {
  color: #fff;
  background: linear-gradient(180deg, #d63a3f, #b8262b);
}
html.light .feedback-chat__user-info {
  background: #f8fafc;
  border-color: #e2e8f0;
}
html.light .feedback-chat__user-info-title,
html.light .feedback-chat__user-info-grid strong {
  color: #111827;
}
html.light .feedback-chat__user-info-grid div {
  background: #fff;
  border: 1px solid #e7ebf2;
}
html.light .feedback-chat__user-info-grid span {
  color: #64748b;
}

@media (max-width: 900px) {
  .feedback-chat {
    grid-template-columns: 1fr;
  }
  .feedback-chat__list {
    max-height: 280px;
  }
  .feedback-chat__dialog {
    min-height: 540px;
  }
}
@media (max-width: 560px) {
  .feedback-modal__body {
    padding: 14px;
  }
  .feedback-chat__header {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .feedback-chat__header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
  }
  .feedback-chat__header-actions button {
    flex: 1 1 130px;
  }
  .feedback-chat__messages {
    padding: 12px;
  }
  .feedback-chat__message {
    max-width: 88%;
  }
  .feedback-chat__user-info-grid {
    grid-template-columns: 1fr;
  }
  .feedback-chat__composer {
    grid-template-columns: 1fr;
  }
  .feedback-chat__composer button {
    width: 100%;
  }
}

/* Feedback chat: keep every bubble sized by its own content. */
.feedback-chat__messages > .feedback-chat__message {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  width: fit-content;
  height: auto;
  min-width: 0;
  min-height: 0;
  max-height: none;
  max-width: min(68%, 560px);
  padding: 9px 11px 7px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.38;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.feedback-chat__message > div {
  min-height: 0;
  overflow-wrap: anywhere;
}

.feedback-chat__message time {
  align-self: flex-end;
  margin-top: 4px;
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 560px) {
  .feedback-chat__messages > .feedback-chat__message {
    max-width: 88%;
    font-size: 13px;
  }
}
.proxy-workspace {
  display: none;
}
.proxy-workspace--open {
  display: block;
  width: 100%;
}

.proxy-page {
  color: #f5f5f5;
  padding: 8px 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.proxy-page__hero {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 42px 48px;
  border: 1px solid #292929;
  border-radius: 26px;
  background: radial-gradient(circle at 80% 20%, rgba(196, 33, 33, 0.23), transparent 34%), linear-gradient(135deg, #181818, #0c0c0c);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.proxy-page__hero img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 18px 28px rgba(218, 25, 25, 0.24));
}
.proxy-page__hero-copy {
  max-width: 700px;
}
.proxy-page__hero-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}
.proxy-page__hero-copy p {
  color: #a9a9a9;
  font-size: 17px;
  line-height: 1.6;
}
.proxy-page__eyebrow {
  color: #e54141;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 12px;
}
.proxy-page__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.proxy-page__badges span {
  padding: 9px 12px;
  border: 1px solid #303030;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.035);
  color: #d7d7d7;
  font-size: 13px;
}
.proxy-page__status {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: #171717;
  color: #aaa;
}
.proxy-page__status--error {
  color: #ff7777;
  border: 1px solid rgba(255, 80, 80, 0.25);
}

.proxy-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 22px;
  margin-top: 22px;
}
.proxy-builder[hidden] {
  display: none;
}
.proxy-builder__form {
  display: grid;
  gap: 12px;
}

.proxy-field, .proxy-summary {
  border: 1px solid #292929;
  border-radius: 20px;
  background: #151515;
}

.proxy-field {
  padding: 22px;
}
.proxy-field > div:first-child {
  margin-bottom: 15px;
}
.proxy-field > div:first-child b {
  display: block;
  font-size: 16px;
}
.proxy-field > div:first-child span {
  display: block;
  color: #777;
  font-size: 12px;
  margin-top: 4px;
}

.proxy-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.proxy-options--pools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.proxy-options--formats .proxy-option {
  flex: 1 1 210px;
}

.proxy-option {
  appearance: none;
  border: 1px solid #333;
  border-radius: 13px;
  background: #1d1d1d;
  color: #ccc;
  padding: 13px 16px;
  cursor: pointer;
  transition: 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.proxy-option span {
  color: #777;
  font-size: 12px;
}
.proxy-option:hover {
  border-color: #555;
  transform: translateY(-1px);
}
.proxy-option--active {
  color: #fff;
  border-color: #d33434;
  background: linear-gradient(135deg, rgba(211, 52, 52, 0.2), #211717);
  box-shadow: inset 0 0 0 1px rgba(211, 52, 52, 0.15);
}

.proxy-selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.proxy-selects select {
  width: 100%;
  padding: 14px;
  border: 1px solid #333;
  border-radius: 12px;
  color: #eee;
  background: #1d1d1d;
  outline: none;
}
.proxy-selects select:focus {
  border-color: #d33434;
}
.proxy-selects select:disabled {
  opacity: 0.55;
}

#proxy-purpose-field .proxy-selects {
  grid-template-columns: 1fr;
}

.proxy-summary {
  position: sticky;
  top: 18px;
  height: fit-content;
  padding: 22px;
}
.proxy-summary__head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid #292929;
}
.proxy-summary__head img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 13px;
}
.proxy-summary__head span {
  display: block;
  color: #777;
  font-size: 12px;
}
.proxy-summary__head b {
  font-size: 17px;
}
.proxy-summary dl {
  margin: 18px 0;
  display: grid;
  gap: 12px;
}
.proxy-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.proxy-summary dl dt {
  color: #777;
}
.proxy-summary dl dd {
  margin: 0;
  text-align: right;
  max-width: 210px;
  overflow-wrap: anywhere;
}
.proxy-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 8px;
  border-top: 1px solid #292929;
}
.proxy-summary__total b {
  color: #ff5555;
  font-size: 25px;
}
.proxy-summary__balance {
  color: #777;
  font-size: 13px;
  text-align: right;
}
.proxy-summary__balance b {
  color: #bbb;
}
.proxy-summary__error {
  min-height: 20px;
  padding: 10px 0 2px;
  color: #ff6868;
  font-size: 13px;
}
.proxy-summary__buy {
  width: 100%;
  border: 0;
  border-radius: 13px;
  padding: 15px;
  background: linear-gradient(135deg, #e03939, #9d1717);
  box-shadow: 0 12px 25px rgba(191, 31, 31, 0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.proxy-summary__buy:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.proxy-summary > small {
  display: block;
  color: #666;
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
}

.proxy-result {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 20px;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}
.proxy-result--open {
  display: grid;
}
.proxy-result__card {
  position: relative;
  width: min(620px, 100%);
  padding: 30px;
  border: 1px solid #363636;
  border-radius: 22px;
  color: #fff;
  background: #181818;
  text-align: center;
}
.proxy-result__card > button {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: none;
  color: #888;
  font-size: 28px;
  cursor: pointer;
}
.proxy-result__card h2 {
  margin: 8px 0;
}
.proxy-result__card p {
  color: #888;
}
.proxy-result__icon {
  font-size: 42px;
}
.proxy-result textarea {
  box-sizing: border-box;
  width: 100%;
  height: 190px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid #333;
  border-radius: 12px;
  resize: none;
  background: #0e0e0e;
  color: #ddd;
  font: 12px/1.6 monospace;
}
.proxy-result__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.proxy-result__actions button {
  border: 1px solid #353535;
  border-radius: 12px;
  padding: 13px;
  color: #eee;
  background: #242424;
  cursor: pointer;
}

@media (max-width: 900px) {
  .proxy-page__hero {
    padding: 30px;
  }
  .proxy-page__hero img {
    width: 150px;
    height: 150px;
  }
  .proxy-builder {
    grid-template-columns: 1fr;
  }
  .proxy-summary {
    position: static;
  }
}
@media (max-width: 600px) {
  .proxy-page {
    padding-top: 0;
  }
  .proxy-page__hero {
    padding: 24px;
    border-radius: 18px;
  }
  .proxy-page__hero img {
    display: none;
  }
  .proxy-page__hero-copy p {
    font-size: 14px;
  }
  .proxy-options--pools, .proxy-selects {
    grid-template-columns: 1fr;
  }
  .proxy-field, .proxy-summary {
    padding: 16px;
  }
  .proxy-result__actions {
    grid-template-columns: 1fr;
  }
}
.proxy-page {
  color: #f3f4f7;
}
.proxy-page h1, .proxy-page h2, .proxy-page h3, .proxy-page b, .proxy-page strong, .proxy-page dt, .proxy-page dd, .proxy-page label {
  color: #f3f4f7;
}
.proxy-page__hero-copy h1 {
  color: #fff;
  font-weight: 750;
}
.proxy-page__hero-copy p {
  color: #b8bbc3;
}
.proxy-page__badges span {
  color: #e6e7ea;
}

.proxy-field > div:first-child b {
  color: #f5f5f7;
  font-weight: 700;
}
.proxy-field > div:first-child span {
  color: #9a9da6;
}

.proxy-option {
  color: #e4e5e9;
}
.proxy-option b, .proxy-option code {
  color: #f2f3f5;
  font-weight: 650;
}
.proxy-option span {
  color: #a7aab2;
}
.proxy-option--active {
  color: #fff;
}
.proxy-option--active b, .proxy-option--active code, .proxy-option--active span {
  color: #fff;
}

.proxy-selects select {
  color: #f1f2f4;
}
.proxy-selects select option {
  color: #f1f2f4;
  background: #1d1d1d;
}

.proxy-summary {
  color: #f1f2f4;
}
.proxy-summary__head span {
  color: #9a9da6;
}
.proxy-summary__head b {
  color: #fff;
}
.proxy-summary dt {
  color: #9a9da6;
}
.proxy-summary dd {
  color: #f1f2f4;
}
.proxy-summary__total span {
  color: #d5d7dc;
}
.proxy-summary__total b {
  color: #ff5555;
}
.proxy-summary__balance {
  color: #92959e;
}
.proxy-summary__balance b {
  color: #e2e3e7;
}

.proxy-result__card h2 {
  color: #fff;
  font-weight: 750;
}
.proxy-result__card p {
  color: #a4a7af;
}

.proxy-result__actions button {
  color: #f2f3f5;
}

html.light .proxy-page {
  color: var(--light-text);
}
html.light .proxy-page h1, html.light .proxy-page h2, html.light .proxy-page h3, html.light .proxy-page b, html.light .proxy-page strong, html.light .proxy-page dt, html.light .proxy-page dd, html.light .proxy-page label {
  color: var(--light-text);
}
html.light .proxy-page__hero {
  border-color: var(--light-border);
  background: radial-gradient(circle at 82% 18%, rgba(201, 65, 69, 0.15), transparent 34%), linear-gradient(135deg, #fff, #f8f2f3);
  box-shadow: none;
}
html.light .proxy-page__hero-copy h1 {
  color: #171920;
}
html.light .proxy-page__hero-copy p {
  color: #616672;
}
html.light .proxy-page__badges span {
  color: #454a55;
  border-color: #e0e3e9;
  background: rgba(255, 255, 255, 0.72);
}
html.light .proxy-page__status {
  border: 1px solid var(--light-border);
  background: var(--light-surface);
  color: var(--light-text-muted);
}
html.light .proxy-page__status--error {
  color: #b52e37;
  border-color: #f1c6c8;
  background: #fff5f5;
}
html.light .proxy-field, html.light .proxy-summary {
  border-color: var(--light-border);
  background: var(--light-surface);
  box-shadow: none;
}
html.light .proxy-field > div:first-child b {
  color: var(--light-text);
}
html.light .proxy-field > div:first-child span {
  color: var(--light-text-muted);
}
html.light .proxy-option {
  border-color: #dfe2e8;
  background: #f6f7f9;
  color: #353943;
  box-shadow: none;
}
html.light .proxy-option b, html.light .proxy-option code {
  color: #272b34;
}
html.light .proxy-option span {
  color: #747984;
}
html.light .proxy-option:hover {
  border-color: #c8ccd4;
  background: #fff;
}
html.light .proxy-option--active {
  border-color: var(--light-accent);
  background: var(--light-accent-soft);
  color: #7e272d;
}
html.light .proxy-option--active b, html.light .proxy-option--active code, html.light .proxy-option--active span {
  color: #7e272d;
}
html.light .proxy-selects select {
  border-color: #dfe2e8;
  background: #f7f8fa;
  color: #252932;
}
html.light .proxy-selects select:focus {
  border-color: var(--light-accent);
}
html.light .proxy-selects select option {
  color: #252932;
  background: #fff;
}
html.light .proxy-summary__head {
  border-bottom-color: var(--light-border);
}
html.light .proxy-summary__head span {
  color: var(--light-text-muted);
}
html.light .proxy-summary__head b {
  color: var(--light-text);
}
html.light .proxy-summary dt {
  color: var(--light-text-muted);
}
html.light .proxy-summary dd {
  color: var(--light-text);
}
html.light .proxy-summary__total {
  border-top-color: var(--light-border);
}
html.light .proxy-summary__total span {
  color: #454a55;
}
html.light .proxy-summary__total b {
  color: var(--light-accent);
}
html.light .proxy-summary__balance {
  color: var(--light-text-muted);
}
html.light .proxy-summary__balance b {
  color: #3f444e;
}
html.light .proxy-summary > small {
  color: #7a7f89;
}
html.light .proxy-result {
  background: rgba(31, 35, 45, 0.28);
}
html.light .proxy-result__card {
  border-color: var(--light-border);
  background: var(--light-surface);
  box-shadow: 0 24px 60px rgba(31, 35, 45, 0.14);
}
html.light .proxy-result__card h2 {
  color: var(--light-text);
}
html.light .proxy-result__card p {
  color: var(--light-text-muted);
}
html.light .proxy-result__card > button {
  color: #717681;
}
html.light .proxy-result textarea {
  border-color: var(--light-border);
  background: #f5f6f8;
  color: #242832;
}
html.light .proxy-result__actions button {
  border-color: var(--light-border);
  background: #f2f3f6;
  color: #30343d;
}

@media (max-width: 1100px) {
  .proxy-builder {
    grid-template-columns: minmax(0, 1fr) 310px;
  }
  .proxy-page__hero {
    padding: 36px;
  }
  .proxy-page__hero-copy h1 {
    font-size: clamp(34px, 4.5vw, 54px);
  }
}
@media (max-width: 820px) {
  .proxy-builder {
    grid-template-columns: minmax(0, 1fr);
  }
  .proxy-summary {
    position: static;
  }
  .proxy-page__hero {
    align-items: flex-start;
  }
  .proxy-page__hero img {
    width: 132px;
    height: 132px;
  }
}
@media (max-width: 480px) {
  .proxy-page__hero-copy h1 {
    font-size: 30px;
    line-height: 1.08;
  }
  .proxy-page__badges {
    gap: 6px;
  }
  .proxy-page__badges span {
    width: 100%;
    box-sizing: border-box;
  }
  .proxy-options {
    display: grid;
    grid-template-columns: 1fr;
  }
  .proxy-option {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .proxy-summary dl div {
    align-items: flex-start;
  }
  .proxy-summary dd {
    max-width: 58%;
  }
  .proxy-result {
    padding: 10px;
  }
  .proxy-result__card {
    padding: 24px 16px 18px;
  }
  .proxy-result textarea {
    height: 155px;
  }
}
.purchase-detail--proxy .purchase-detail__body {
  width: min(760px, 100vw - 32px);
}

.proxy-purchase {
  display: grid;
  gap: 12px;
  color: #f1f2f4;
}
.proxy-purchase__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #303035;
  border-radius: 13px;
  background: #303035;
}
.proxy-purchase__facts div {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  background: #202024;
}
.proxy-purchase__facts span {
  color: #858892;
  font-size: 12px;
}
.proxy-purchase__facts b {
  min-width: 0;
  color: #f0f1f4;
  font-size: 12px;
  text-align: right;
  overflow-wrap: anywhere;
}
.proxy-purchase__access, .proxy-purchase__topup {
  padding: 15px;
  border: 1px solid #303035;
  border-radius: 13px;
  background: #18181c;
}
.proxy-purchase__traffic {
  padding: 15px;
  border: 1px solid #303035;
  border-radius: 13px;
  background: linear-gradient(135deg, #19191d, #151519);
}
.proxy-purchase__traffic-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.proxy-purchase__traffic-head b {
  color: #fff;
  font-size: 13px;
}
.proxy-purchase__traffic-head span {
  color: #a8abb3;
  font-size: 12px;
}
.proxy-purchase__traffic-bar {
  height: 8px;
  margin: 11px 0 13px;
  overflow: hidden;
  border-radius: 99px;
  background: #2b2b31;
}
.proxy-purchase__traffic-bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d3343a, #ff676c);
  box-shadow: 0 0 14px rgba(223, 55, 61, 0.25);
  transition: width 0.35s ease;
}
.proxy-purchase__traffic-bar .proxy-purchase__traffic-fill--warning {
  background: linear-gradient(90deg, #e58a26, #e3463e);
}
.proxy-purchase__traffic-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.proxy-purchase__traffic-values div {
  padding: 9px 10px;
  border-radius: 9px;
  background: #222227;
}
.proxy-purchase__traffic-values span {
  display: block;
  color: #81848d;
  font-size: 11px;
}
.proxy-purchase__traffic-values b {
  display: block;
  margin-top: 3px;
  color: #f0f1f4;
  font-size: 13px;
}
.proxy-purchase__traffic > small {
  display: block;
  min-height: 14px;
  margin-top: 8px;
  color: #696c75;
  font-size: 10px;
  text-align: right;
}
.proxy-purchase__access > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.proxy-purchase__access > div:first-child span {
  color: #fff;
  font-weight: 700;
}
.proxy-purchase__access > div:first-child small {
  color: #81848d;
  overflow-wrap: anywhere;
  text-align: right;
}
.proxy-purchase textarea {
  box-sizing: border-box;
  width: 100%;
  height: 128px;
  padding: 12px;
  border: 1px solid #2e2e33;
  border-radius: 10px;
  resize: vertical;
  outline: none;
  background: #0e0e11;
  color: #e4e5e8;
  font: 12px/1.55 monospace;
}
.proxy-purchase__line-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}
.proxy-purchase__line-controls button {
  border: 1px solid #35353b;
  border-radius: 9px;
  padding: 8px 10px;
  background: #242429;
  color: #d3d4d8;
}
.proxy-purchase__line-controls label {
  display: flex;
  flex: 1 1 150px;
  min-width: 0;
}
.proxy-purchase__line-controls label input {
  width: 62px;
  min-width: 0;
  border: 1px solid #35353b;
  border-radius: 9px 0 0 9px;
  padding: 8px;
  background: #111115;
  color: #fff;
}
.proxy-purchase__line-controls label button {
  flex: 1;
  border-radius: 0 9px 9px 0;
  border-left: 0;
}
.proxy-purchase__access-actions, .proxy-purchase__manage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.proxy-purchase__access-actions button, .proxy-purchase__manage button {
  border: 1px solid #35353b;
  border-radius: 10px;
  padding: 10px;
  background: #29292e;
  color: #eee;
}
.proxy-purchase__topup > div:first-child b {
  display: block;
  color: #fff;
}
.proxy-purchase__topup > div:first-child span {
  display: block;
  margin-top: 3px;
  color: #858892;
  font-size: 12px;
}
.proxy-purchase__topup > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}
.proxy-purchase__topup > div:last-child button {
  border: 1px solid #413236;
  border-radius: 9px;
  padding: 9px 11px;
  background: #291d20;
  color: #ff8589;
}
.proxy-purchase__topup > div:last-child button span {
  color: #c5a2a4;
}
.proxy-purchase__topup > div:last-child button:disabled {
  opacity: 0.4;
  pointer-events: none;
}
.proxy-purchase__manage {
  margin-top: 0;
}
.proxy-purchase__manage button:first-child {
  background: #33291d;
  border-color: #4a3a24;
  color: #e9bd76;
}
.proxy-purchase__manage button:last-child {
  background: #2a2022;
  border-color: #463033;
  color: #ff7b80;
}
.proxy-purchase__notice {
  min-height: 18px;
  color: #dd7276;
  font-size: 12px;
  text-align: center;
}

html.light .proxy-purchase {
  color: var(--light-text);
}
html.light .proxy-purchase__facts {
  border-color: var(--light-border);
  background: var(--light-border);
}
html.light .proxy-purchase__facts div {
  background: #f7f8fa;
}
html.light .proxy-purchase__facts span {
  color: var(--light-text-muted);
}
html.light .proxy-purchase__facts b {
  color: var(--light-text);
}
html.light .proxy-purchase__access, html.light .proxy-purchase__topup {
  border-color: var(--light-border);
  background: #fafbfc;
}
html.light .proxy-purchase__traffic {
  border-color: var(--light-border);
  background: #fafbfc;
}
html.light .proxy-purchase__traffic-head b {
  color: var(--light-text);
}
html.light .proxy-purchase__traffic-head span {
  color: var(--light-text-muted);
}
html.light .proxy-purchase__traffic-bar {
  background: #e8eaf0;
}
html.light .proxy-purchase__traffic-values div {
  background: #f1f3f6;
}
html.light .proxy-purchase__traffic-values span {
  color: var(--light-text-muted);
}
html.light .proxy-purchase__traffic-values b {
  color: var(--light-text);
}
html.light .proxy-purchase__traffic > small {
  color: #8a8f99;
}
html.light .proxy-purchase__access > div:first-child span {
  color: var(--light-text);
}
html.light .proxy-purchase__access > div:first-child small {
  color: var(--light-text-muted);
}
html.light .proxy-purchase textarea {
  border-color: var(--light-border);
  background: #fff;
  color: #252932;
}
html.light .proxy-purchase__line-controls button {
  border-color: var(--light-border);
  background: #f1f3f6;
  color: #373b45;
}
html.light .proxy-purchase__line-controls label input {
  border-color: var(--light-border);
  background: #fff;
  color: #252932;
}
html.light .proxy-purchase__access-actions button, html.light .proxy-purchase__manage button {
  border-color: var(--light-border);
  background: #f1f3f6;
  color: #343842;
}
html.light .proxy-purchase__topup > div:first-child b {
  color: var(--light-text);
}
html.light .proxy-purchase__topup > div:first-child span {
  color: var(--light-text-muted);
}
html.light .proxy-purchase__topup > div:last-child button {
  border-color: #efc9ca;
  background: #fff0f0;
  color: #a83238;
}
html.light .proxy-purchase__topup > div:last-child button span {
  color: #8d6063;
}
html.light .proxy-purchase__manage button:first-child {
  background: #fff8eb;
  border-color: #eeddbb;
  color: #8a6324;
}
html.light .proxy-purchase__manage button:last-child {
  background: var(--light-accent-soft);
  border-color: #efc9ca;
  color: #a83238;
}

@media (max-width: 600px) {
  .purchase-detail--proxy .purchase-detail__body {
    width: calc(100vw - 20px);
    max-width: none;
    padding: 16px;
  }
  .proxy-purchase__facts {
    grid-template-columns: 1fr;
  }
  .proxy-purchase__access-actions, .proxy-purchase__manage {
    grid-template-columns: 1fr;
  }
  .proxy-purchase__line-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .proxy-purchase__line-controls label {
    grid-column: 1/-1;
  }
  .proxy-purchase__traffic-values {
    grid-template-columns: 1fr;
  }
  .proxy-purchase__traffic-values div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .proxy-purchase__traffic-values b {
    margin-top: 0;
  }
}

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