@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 8px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами


/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light: #ffffff;
  --color-dark: #151719;
  --color-dark-alt: #1c1c26;
  --color-gray: #9a9aab;
  --color-purple: #8B6CFF;
  --color-accent: #8B6CFF;
  --color-brand: #8B6CFF;
  --color-green: #08B208;
  --color-red: #EA2E49;
  --font-family-base: "Inter", sans-serif;
  --container-width: 75rem;
  --container-padding-x: 0rem;
  --transition-duration: 0.2s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow-x: hidden;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.fade-in-item { opacity: 1; }

.fade-in-sidebar { opacity: 1; }


}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent; /* фон трека */
}

::-webkit-scrollbar-thumb {
  background: #8B6CFF;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8B6CFF;
}

/* ===== Firefox ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: #8B6CFF transparent;
}

html.is-lock {
  overflow: hidden;
}
@media (width > 47.99875rem) {
  html {
    overflow-x: hidden;
  }
}

body {
  font-size: clamp(0.875rem, 0.8112745098rem + 0.2614379085vw, 1.125rem);
  font-family: var(--font-family-base);
  letter-spacing: 0.3px;
  color: var(--color-light);
  background-color: #151719;
  overflow-x: hidden;
}

.main {
  display: flex;
  min-height: 100vh;
}

.content {
  flex: 1;
  min-width: 0;
  padding: 0 40px 80px 40px;
  margin-left: 290px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color-light);
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-family: var(--font-family-accent);
  font-weight: 500;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
}

h1,
.h1 {
  font-size: clamp(1.875rem, 1.237745098rem + 2.614379085vw, 4.375rem);
  line-height: 1.2;
}

h2,
.h2 {
  font-size: clamp(1.75rem, 1.2720588235rem + 1.9607843137vw, 3.625rem);
  line-height: 1.3;
}

h3,
.h3 {
  font-size: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
}

h4,
.h4 {
  font-size: clamp(1.125rem, 0.9975490196rem + 0.522875817vw, 1.625rem);
}

h5,
.h5 {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
}

h6,
.h6 {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-accent);
  }
}
a[class] {
  text-decoration: none;
}

a[aria-label],
button[aria-label] {
  position: relative;
}
a[aria-label]::before,
button[aria-label]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  content: "";
}

.welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 78px;
}
.welcome__logo {
  margin: 0;
  padding-bottom: 41px;
}
.welcome__image {
  width: 155px;
  height: auto;
  object-fit: cover;
}
.welcome__info {
}
.welcome__title {
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  color: #fff;
  padding-bottom: 40px;
}
.welcome__description {
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
  text-align: center;
  padding-block: 37px 19px;
}
.welcome__buttons {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.welcome__button {
  width: 526px;
  height: 64px;
}
.welcome__links {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
}
.welcome__link {
  font-weight: 400;
  font-size: 16px;
  color: #8B6CFF;
  text-decoration-skip-ink: none;
  background-color: transparent;
  border: none;
  padding: 0;
}
.welcome__link:hover {
  text-decoration: underline !important;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 27, 35, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.modal__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Модальное окно (правый drawer) */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  width: 465px;
  height: 800px;
  background: #fff;
  border-radius: 25px 0 0 25px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.modal--alt {
  width: 465px;
}

/* Когда открыто */
.modal__overlay.active .modal {
  transform: translateX(0);
}

/* Header */
.modal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
  padding-top: 17px;
}

/* Close button */
.modal__close-button {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  left: 196px;
  bottom: -23px;
}
.modal__close-button--alt {
  left: 196px;
}

/* Body */
.modal__body {
  margin-top: 20px;
  flex: 1;
}

.modal__title {
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: #071c28;
}
.modal__description {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #a9a9a9;
}
.modal__qr {
  padding-block: 30px 14px;
}
.modal__warning {
  border: 1px solid #bff3d6;
  border-radius: 10px;
  width: 365px;
  height: 144px;
  background: #dff9ea;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #1e5736;
  padding-inline: 33px;
  margin-bottom: 20px;
}
.modal__address {
  border: 1px solid #e8eaee;
  border-radius: 10px;
  width: 365px;
  height: 200px;
  background: #f3f4f6;
  padding: 30px 25px 25px 25px;
}
.modal__address-text {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #071c28;
  padding-bottom: 20px;
  text-align: center;
}
.modal__address-hash {
  border-radius: 7px;
  width: 315px;
  height: 43px;
  background: #fff;
  font-weight: 400;
  font-size: 11px;
  color: #071c28;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.5px;
}
.modal__address-button {
  width: 315px;
}

.policy-overlay {
  overflow-y: auto; /* если модалка выше экрана */
  width: 100%;
  height: 100vh;
}

.policy-modal {
  max-height: 100vh; /* ограничиваем */
  overflow-y: auto;
}

.terms-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end; /* ← ВАЖНО */
  background: rgba(13, 13, 13, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 2000;
}

.terms-overlay.active {
  opacity: 1;
  visibility: visible;
}

.terms-overlay.active .terms-modal {
  transform: translateX(0);
}

.modal,
.terms-modal {
  will-change: transform;
}

.terms-modal {
  width: 949px;
  height: 100vh;
  background: #18181d;
  border-radius: 25px 0 0 25px;

  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;

  overflow-y: auto;
  padding: 80px 50px 80px 80px;
  box-sizing: border-box;
}

.terms-close {
  position: absolute;
  right: 43px;
  top: 49px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/* запрет скролла */
body.no-scroll {
  overflow: hidden;
}

.terms__title {
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  padding-bottom: 14px;
}
.terms__subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  color: #fff;
}
.terms__last-updated {
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
  padding-bottom: 27px;
}
.terms__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #fff;
}
.terms__list {
  display: flex;
  flex-direction: column;
  list-style: disc;
  row-gap: 3px;
  padding-left: 24px;
}
.terms__block {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.terms__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
}
.terms__item--bold {
  font-weight: 700;
  color: #fff;
}

.button {
  background-color: #8B6CFF;
  border-radius: 15px;
  max-width: 100%;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  column-gap: 15px;
  border: none;
}
.button:hover {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #9D86FF;
}
.button:active {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #9D86FF;
}
.button--alt {
  background-color: #1c1c26;
  color: #9a9aab;
}
.button--alt:hover {
  cursor: pointer;
  color: #9a9aab;
  background-color: #21212b;
}
.button--alt:active {
  cursor: pointer;
  color: #9a9aab;
  background-color: #2e3033;
}

.sidebar {
  position: fixed;
  z-index: 10;
  max-width: 290px;
  width: 100%;
  top: 0; /* фиксируем сверху */
  left: 0;
  height: 100vh;
  background: #151719;
  padding: 50px 0 30px 0;
  border-radius: 0 25px 25px 0;
  display: flex;
  flex-direction: column;
}
.sidebar__logo {
  margin-left: 0;
  margin-bottom: 15px;
}
.sidebar__subtitle {
  font-weight: 400;
  font-size: 10px;
  color: #9a9aab;
  padding-left: 0;
  padding-bottom: 24px;
}
.sidebar__list {
  margin-left: 20px;
  width: 250px;
  display: flex;
  flex-direction: column;
  background: #1c1c26;
  border-radius: 25px;
}
.sidebar__item {
  width: 250px;
  height: 60px;
  background-color: transparent;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
  align-items: center;
  user-select: none;
  
}
.sidebar__item:not(:last-child) {
  border-bottom: 1px solid #0f0f12;
}
.sidebar__item:hover {
  color: #8B6CFF;
  transform: translateX(7px);
}
.sidebar__item:hover:not(.is-active) svg path {
  color: #8B6CFF;
  fill: #8B6CFF;
}
.sidebar__item.is-active {
  font-weight: 600;
  font-size: 16px;
  color: #8B6CFF;
}
.sidebar__item.is-active svg path {
  color: #8B6CFF;
  fill: #8B6CFF;
}
.sidebar__link {
  display: inline-flex;
  align-items: center;
  column-gap: 20px;
  width: 250px;
  padding-left: 22px;
  height: 49px;
  justify-content: space-between;
  padding-right: 30px;
}
.sidebar__link.is-active {
  cursor: default;
}
.sidebar__title {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  padding-left: 40px;
  padding-bottom: 12px;
}
.sidebar__block:first-child {
  padding-bottom: 0;
}
.sidebar__block:last-child {
  padding-top: 12px;
}
a.sidebar__button { display: none !important; }
.sidebar__button {
  margin-left: 20px;
  border-radius: 25px;
  width: 250px;
  height: 58px;
  border: none;
  background-color: #1c1c26;
  display: inline-flex;
  padding-inline: 21px 30px;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #9a9aab;
  margin-top: 130px;
  justify-content: space-between;
  transition-duration: 0.2s;
}
.sidebar__button:hover {
  background-color: #452122;
  color: #d93033;
}
.sidebar__button:hover svg path {
  fill: #d93033;
}
.sidebar__button:active {
  background-color: #582122;
}
.sidebar__button-inner {
  display: inline-flex;
  column-gap: 14px;
  align-items: center;
}

.sidebar {
  flex-shrink: 0;
}

.sidebar__logo {
  display: block;
}

.sidebar__button-inner svg {
  flex-shrink: 0;
}

.assets {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #e8eaee;
  border-radius: 15px;
  background: #fff;
  margin-top: 30px;
  transition-duration: 0.6s;
}
.assets:hover {
  border-color: #7C5CFF;
}
.assets__header {
  display: flex;
  flex-direction: column;
}
.assets__title {
  padding: 24px 0 16px 25px;
  font-weight: 600;
  font-size: 17px;
  color: #071c28;
}
.assets__table {
  display: flex;
  width: 100%;
  height: 47px;
  font-weight: 400;
  font-size: 14px;
  color: #bdbdbd;
  border-block: 1px solid #f3f3f3;
  background: #f8f8f8;
}
.assets__table-asset {
  padding-left: 25px;
  display: flex;
  align-items: center;
  width: 202px;
}
.assets__table-price {
  width: 145px;
  display: flex;
  align-items: center;
}
.assets__table-change {
  width: 187px;
  display: flex;
  align-items: center;
}
.assets__table-amount {
  width: 142px;
  display: flex;
  align-items: center;
}
.assets__table-value {
  width: 98px;
  display: flex;
  align-items: center;
}
.assets__table-receive {
  display: flex;
  align-items: center;
}
.assets-tokens__list {
  display: flex;
  flex-direction: column;
}
.assets-tokens__item {
  display: flex;
  height: 58px;
  border-bottom: 1px solid #f3f3f3;
  transition-duration: 0.2s;
}
.assets-tokens__item:hover {
  background-color: #f3f4f6;
}
.assets-tokens__asset {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 400;
  font-size: 15px;
  color: #071c28;
  padding-left: 25px;
  width: 201px;
}
.assets-tokens__price {
  width: 145px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #071c28;
}
.assets-tokens__change {
  display: flex;
  align-items: center;
  column-gap: 7px;
  font-weight: 400;
  font-size: 14px;
  width: 142px;
  color: rgb(86, 87, 91);
}
.assets-tokens__change svg {
  color: rgb(86, 87, 91);
}
.assets-tokens__change--income {
  color: #08b208;
}
.assets-tokens__change--income svg {
  color: #08b208;
}
.assets-tokens__change--outcome {
  color: #ea2e49;
}
.assets-tokens__change--outcome svg {
  color: #ea2e49;
}
.assets-tokens__amount {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #071c28;
  width: 150px;
}
.assets-tokens__value {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #7C5CFF;
  width: 154px;
}
.assets-tokens__value--alt {
  padding-left: 37px;
}
.assets-tokens__receive {
  display: flex;
  align-items: center;
  color: #7C5CFF;
}
.assets-tokens__receive-button {
  border: 1px solid #7C5CFF;
  border-radius: 5px;
  width: 33px;
  height: 33px;
  color: #7C5CFF;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.assets-tokens__receive-button:hover {
  background-color: #7C5CFF;
}
.assets-tokens__receive-button:hover svg path {
  fill: #fff;
}
.assets__button {
  margin-top: 25px;
  width: 801px;
  margin: 25px;
}
.assets__button:hover {
  background-color: rgb(139, 128, 219);
  border-color: rgb(139, 128, 219);
  color: rgb(255, 255, 255);
}

.graph {
  width: 100%;
  display: flex;
  column-gap: 60px;
  padding-top: 34px;
}
.graph--alt {
  column-gap: 36px;
}
.graph__actions {
  display: flex;
  flex-direction: column;
  height: 248px;
  justify-content: space-between;
}
.graph__actions-info {
  display: flex;
  flex-direction: column;
}
.graph__actions-price {
  font-weight: 500;
  font-size: 48px;
  color: #fff;
  letter-spacing: 1.7px;
}
.graph__actions-percent {
  font-weight: 500;
  font-size: 32px;
}
.graph__actions-percent--income {
  color: #30d972;
}
.graph__actions-percent--outcome {
  color: #d93033;
}
.graph__actions-percent-inner {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.graph__actions-added {
  font-weight: 500;
  font-size: 20px;
  border-radius: 5px;
  padding-inline: 5px;
  height: 31px;
}
.graph__actions-added--income {
  background: #1f3b29;
  color: #30d972;
}
.graph__actions-added--outcome {
  color: #d93033;
  background: #3b1f1f;
}
.graph__receive-button {
  width: 241px;
}
.graph__elements {
  display: flex;
  row-gap: 12px;
  flex-direction: column;
  width:100%;
}
.graph__elements-buttons {
  display: flex;
  column-gap: 10px;
  padding-top: 5px;
  align-items: center;
}
.graph__elements-button {
  background-color: transparent;
  font-weight: 500;
  font-size: 13px;
  color: #9a9aab;
  padding-inline: 10px;
  height: 34px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-wrap: nowrap;
}
.graph__elements-button.is-active {
  background: #21212b;
  color: #8B6CFF;
  pointer-events: none;
}

.chart-tooltip {
  position: absolute;
  background: #1c1c26;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -120%);
  transition: opacity 0.2s ease;
  white-space: nowrap;
  z-index: 10;
}

.chart-tooltip.active {
  opacity: 1;
}

.portfolio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
}
.portfolio__info {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.portfolio__info span svg {
  
  cursor: pointer;
}

.portfolio__info span svg:hover {
  transform: rotate(180deg);
}

.portfolio__title {
  font-weight: 600;
  font-size: 48px;
  color: #fff;
  letter-spacing: 1px;
}
.portfolio__account {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.portfolio__account-info {
  display: flex;
  flex-direction: column;
}
.portfolio__account-name {
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
}
.portfolio__account-value {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  display:none;
}

.tokens {
  padding-top: 37px;
}
.tokens__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
.tokens__title {
  font-weight: 600;
  font-size: 32px;
  color: #fff;
}
.tokens__link {
  display: inline-flex;
  align-items: center;
  column-gap: 15px;
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
}

.tokens__link svg {
  
}

.tokens__link:hover svg {
  transform: translateX(4px);
}


.tokens__list {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}
.tokens__item {
  background: #1c1c26;
  border-radius: 25px;
  width: 100%;
  
  height: 90px;
  padding-inline: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tokens__asset {
  display: flex;
  column-gap: 16px;
  align-items: center;
}
.tokens__info {
  display: flex;
  flex-direction: column;
}
.tokens__info-name {
  display: inline-flex;
  column-gap: 8px;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #eee;
}
.tokens__info-value {
  font-weight: 400;
  font-size: 16px;
  color: #b4b4b4;
}
.tokens__info-image-wrapper {
  position: relative;
}
.tokens__amount {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.tokens__amount-name {
  font-weight: 600;
  font-size: 18px;
  color: #eee;
}
.tokens__amount-value {
  font-weight: 400;
  font-size: 16px;
  color: #b4b4b4;
}

.content--alt {
  padding-bottom: 0;
}

.transactions {
  padding-top: 40px;
}
.transactions__item {
  cursor: pointer;
}
.transactions--alt {
  max-height: none;
  overflow-y: auto;
  padding-bottom: 40px;
  min-width: 0;
}
.transactions__header {
  padding-bottom: 24px;
}
.transactions__info-image-wrapper {
  position: relative;
}
.transactions__info-image-icon {
  position: absolute;
  right: 0;
  bottom: -5px;
}
.transactions__list:not(:last-child) {
  padding-bottom: 28px;
}
.transactions__amount-name {
  font-weight: 600;
  font-size: 18px;
}
.transactions__amount-name--income {
  color: #30d972;
}
.transactions__amount-name--outcome {
  color: #D93033;
}
.transactions__subtitle {
  font-weight: 500;
  font-size: 16px;
  color: #c2c2c2;
  padding-bottom: 18px;
}
.transactions__portfolio {
  padding-bottom: 30px;
}

.receive-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 27, 35, 0);
  visibility: hidden;
  transition: background 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
}

.receive-overlay.active {
  background: rgba(13, 13, 13, 0.8);
  visibility: visible;
}

.receive-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 510px;
  max-height: 100vh;
  overflow-y: auto;
  background: #18181d;
  border-radius: 25px 0 0 25px;
  transition: right 0.3s ease;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  padding: 59px 35px 35px 35px;
  box-sizing: border-box;
}

.receive-overlay.active .receive-modal {
  right: 0;
  align-items: center;
}

.receive-close {
  position: absolute;
  right: 34px;
  top: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.receive__title {
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  color: #fff;
  padding-bottom: 12px;
}

.receive__description {
  font-weight: 400;
  font-size: 16px;
  color: #b4b4b4;
  padding-bottom: 20px;
}

/* запрет скролла */
body.no-scroll {
  overflow: hidden;
}

.receive__qr-wrapper {
  position: relative;
  padding-top: 25px;
}
.receive__qr-token {
  position: absolute;
  left: 195px;
  top: 53%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
}

.receive__select {
  width: 148px;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 15px 21px 15px 15px;
  background: #1c1c26;
  border-radius: 15px;
  border: none;
  justify-content: space-between;
}
.receive__select-token {
  font-weight: 600;
  font-size: 16px;
  color: #eee;
  width: 55px;
  white-space: nowrap; /* Запрещаем перенос на новую строку */
  overflow: hidden; /* Скрываем всё, что вылезает за границы */
  text-overflow: ellipsis;
}
.receive__select-name {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.receive__hash {
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  background-color: transparent;
  font-weight: 600;
  font-size: 16px;
  color: #eee;
  padding-block: 26px;
}
.receive__copy {
  width: 439px;
  height: 64px;
}

.token-select {
  position: relative;
  width: 148px;
  height: 50px;
}

.token-select__button {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1c1c26;
  border: none;
  padding-inline: 15px 21px;
  border-radius: 15px;
  cursor: pointer;
}

.token-select__info {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
}

.token-select__label {
  font-weight: 600;
  font-size: 16px;
  color: #eee;
}

.token-select__image {
  width: 20px;
  height: 20px;
}

.token-select__arrow {
  transition: transform 0.3s;
}

.token-select.active .token-select__arrow {
  transform: rotate(180deg);
}

.token-select__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #1c1c26;
  border-radius: 15px;
  border: none;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.token-select.active .token-select__dropdown {
  display: flex;
  z-index: 10;
}

.token-select__option {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 15px 21px;
  cursor: pointer;
}

.token-select__option:hover {
  background: #1c1c26;
}

.background {
  position: fixed;
  top: 0;
  opacity: 0.5;
  width: 100%;
  height: 508px;
  z-index: -1;
  background: linear-gradient(180deg, #21212b 0%, #151719 100%);
}
.background--green {
  background: linear-gradient(180deg, #21452f 0%, #151719 100%);
}
.background--red {
  background: linear-gradient(180deg, #452122 0%, #151719 100%);
}

.received-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 27, 35, 0);
  visibility: hidden;
  transition: background 0.3s ease, visibility 0.3s ease;
  z-index: 2100;
  overflow-y: auto;
}

.received-overlay.active {
  background: rgba(13, 13, 13, 0.8);
  visibility: visible;
}

.received-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 510px;
  max-height: 100vh;
  height: 100%;
  overflow-y: auto;
  background: #18181d;
  border-radius: 25px 0 0 25px;
  transition: right 0.3s ease;
  z-index: 2101;
  display: flex;
  flex-direction: column;
  padding: 100px 35px;
}

.received-overlay.active .received-modal {
  right: 0;
  align-items: center;
}

.received-close {
  position: absolute;
  right: 34px;
  top: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.received__title {
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  padding-bottom: 50px;
}

.received__info-image {
  width: 80px;
  height: 80px;
}
.received__info-image-icon svg {
  width: 32px;
  height: 32px;
}
.received__percent {
  font-weight: 600;
  font-size: 32px;
  padding-block: 32px 45px;
  color: #30d972;
}
.received__list {
  display: flex;
  flex-direction: column;
  background: #1c1c26;
  border-radius: 25px;
  width: 440px;
}
.received__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
}
.received__item:not(:last-child) {
  border-bottom: 1px solid #0f0f12;
}
.received__item-name {
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
}
.received__item-date {
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
}
.received__item-status {
  font-weight: 500;
  font-size: 16px;
  color: #30d972;
}
.received__item-hash {
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
}
.received__item-token {
  font-weight: 500;
  font-size: 16px;
  color: #eee;
}

.market {
  padding-top: 29px;
}
.market__header {
  background-color: transparent;
  padding-left: 20px;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
  padding-bottom: 29px;
}
.market__description {
  font-weight: 400;
  font-size: 16px;
  color: #b4b4b4;
}
.market__portfolio {
  flex-direction: column;
  justify-content: unset;
  align-items: start;
  row-gap: 18px;
}
.market__crypto {
  width: 192px;
}
.market__price {
  width: 136px;
}
.market__change {
  width: 134px;
}
.market__volume {
  width: 157px;
}
.market__chart {
  width: 150px;
}
.market__list {
  display: flex;
  flex-direction: column;
  row-gap: 11px;
  max-height: none;
  padding-bottom: 60px;
  overflow-y: auto;
  min-width: 0;
}
.market__item {
  width: 100%;
  
  height: 90px;
  padding: 20px 0 20px 20px;
  display: flex;
  align-items: center;
  background: #1c1c26;
  border-radius: 25px;
}
.market__asset {
  display: flex;
  column-gap: 16px;
  width: 191px;
}
.market__asset-info {
  display: flex;
  flex-direction: column;
}
.market__asset-name {
  font-weight: 600;
  font-size: 16px;
  color: #eee;
}
.market__asset-value {
  font-weight: 400;
  font-size: 16px;
  color: #b4b4b4;
}
.market__money {
  font-weight: 600;
  font-size: 18px;
  color: #eee;
  width: 137px;
}
.market__percent {
  display: flex;
  column-gap: 5px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  width: 135px;
}
.market__percent--outcome {
  color: #ff3a33;
}
.market__percent--income {
  color: #32ca5b;
}
.market__range {
  font-weight: 400;
  font-size: 16px;
  color: #eee;
  width: 155px;
  text-wrap: nowrap;
}
.market__graph {
  width: 150px;
}
.market__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 30px;
  margin-bottom: 10px;
}
.market__search {
  padding-top: 0;
}
.market__card {
  border: 1px solid #1c1c26;
  border-radius: 18px;
  width: auto;
  min-height: 100px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.market__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.market__card-name {
  font-weight: 400;
  font-size: 13px;
  color: #b4b4b4;
  text-wrap: nowrap;
}
.market__card-percent {
  font-weight: 400;
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  height: 31px;
  padding-inline: 8px;
  column-gap: 5px;
}
.market__card-percent--outcome {
  background: #3b1f1f;
  color: #ff3a33;
}
.market__card-percent--income {
  color: #32ca5b;
  background: #1f3b29;
}
.market__card-asset {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.market__card-asset-name {
  font-weight: 600;
  font-size: 14px;
  color: #eee;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.market__card-asset-name--alt {
  font-weight: 400;
  color: rgba(238, 238, 238, 0.35);
  padding-left: 5px;
}

.market__search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 39px;
}

/* SEARCH INPUT */
.search__field {
  position: relative;
  width: 618px;
  max-height: none;
}

.search__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.search__input {
  width: 100%;
  padding: 17px 14px 17px 53px;
  border: none;
  border-radius: 25px;
  background: #18181d;
  color: #9a9aab;
  font-weight: 500;
  font-size: 16px;
}
.search__input:active, .search__input:focus, .search__input:active {
  background: #18181d;
  border: 1px solid #646464;
  outline: none;
}

/* SELECT */
.search__select {
  position: relative;
}

.search__dropdown {
  appearance: none;
  padding: 17px 20px 17px 20px;
  border: none;
  background: #18181d;
  border-radius: 25px;
  width: 152px;
  max-height: none;
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
  cursor: pointer;
}
.search__dropdown:active, .search__dropdown:focus, .search__dropdown:active, .search__dropdown:focus-visible {
  background: #1c1c26;
  border: 1px solid #646464;
  outline: none;
}

.search__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.token-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  transition: 0.3s;
  z-index: 3000;
}

.token-overlay.active {
  visibility: visible;
  background: rgba(0, 0, 0, 0.4);
}

.token-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 490px;
  height: 100vh;
  background: #18181d;
  transition: right 0.3s ease;
  padding: 60px 30px 30px 30px;
  box-sizing: border-box;
}

.token-overlay.active .token-modal {
  right: 0;
  display: flex;
  flex-direction: column;
}

.token-close {
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 44px;
  top: 50px;
  z-index: 10;
}

.token__title {
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  padding-right: 20px;
  padding-bottom: 40px;
  color: #fff;
  position: sticky;
  top: 0;
}

.token__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  max-height: none;
  overflow-y: auto;
}

.token__item {
  border-radius: 25px;
  width: 430px;
  height: 90px;
  background: #1c1c26;
  padding: 20px 30px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition-duration: 0.2s;
}

.token__asset {
  display: flex;
  column-gap: 16px;
}
.token__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.token__info-name {
  font-weight: 500;
  font-size: 18px;
  color: #eee;
}
.token__info-hash {
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
}
.token__buttons {
  display: flex;
  column-gap: 10px;
}
.token__button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.token__button--gray {
  background: #313335;
}
.token__button--copied {
  background-color: transparent;
  font-weight: 600;
  font-size: 16px;
  color: #8B6CFF;
  position: relative;
  right: 10px;
}

.token__item:hover {
  background: #1f1f26;
}

.line {
  display: flex;
  flex-direction: column;
  width: 100%;
  
  padding-block: 40px 20px;
}
.line__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}
.line__header-name, .line__header-value {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #9a9aab;
  letter-spacing: -0.01em;
}
.line__lines {
  display: flex;
  
  width: 100%;
  margin-bottom: 26px;
}
.line__line {
  height: 8px;
  border-radius: 4px;
}
.line__line--bitcoin {
  background: #f7931a;
}
.line__line--base {
  background: #9b9d95;
}
.line__line--ethereum {
  background: #9b9d95;
}
.line__line--solana {
  background: #5681cd;
}
.line__line--monero {
  background: #836ef9;
}
.line__line--others {
  background: #97fce4;
}
.line__list {
  display: grid;
}
.line__item {
  border-left: 1px dashed white;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 4px;
  height: 40px;
  width: 145px;
}
.line__item:not(:last-child) {
  margin-right: 16px;
}
.line__item-asset {
  display: flex;
  column-gap: 30px;
}
.line__item-asset-name, .line__item-asset-value {
  font-weight: 500;
  font-size: 12px;
  line-height: 135%;
  color: #9b9d95;
  letter-spacing: -0.01em;
  text-wrap: nowrap;
}
.line__item-asset--alt {
  column-gap: 20px;
}
.line__item-price {
  font-weight: 500;
  font-size: 12px;
  line-height: 135%;
  color: #fff;
  letter-spacing: -0.4px;
}
.line__item--bitcoin {
  border-color: #f7931a;
  width: 120px;
}
.line__item--base {
  border-color: #9b9d95;
  width: 140px;
}
.line__item--ethereum {
  border-color: #9b9d95;
  width: 117px;
}
.line__item--solana {
  border-color: #5681cd;
  width: 116px;
}
.line__item--tron {
	border-color: #c53229;
}
.line__item--bnb {
	border-color: #f0b90b;
}
.line__item--monero {
  border-color: #836ef9;
  width: 119px;
}
.line__item--others {
  border-color: #97fce4;
}

.settings {
  overflow-y: auto;
  max-height: none;
  min-width: 0;
}

.profile {
  display: flex;
  flex-direction: column;
  row-gap: 26px;
  padding-top: 20px;
}
.profile__header {
  padding-bottom: 30px;
}
.profile__profile {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  cursor: pointer;
}
.profile__security {
}
.profile__title {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.profile__item {
  width: 100%;
  
  height: 90px;
  background: #1c1c26;
  border-radius: 25px;
  padding: 20px 40px 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile__item-name {
  display: flex;
  align-items: center;
  column-gap: 15px;
  color: #9a9aab;
}
.profile__item-name input {
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
  background-color: transparent;
  border: none;
}
.profile__item-name input:focus {
  color: #FEFEFE;
  outline: none;
}
.profile__item-edit {
  display: flex;
  column-gap: 15px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
  transition-duration: 0.2s;
}
.profile__item-edit:hover {
  color: #8B6CFF;
  stroke: #8B6CFF;
}

.currency {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding-top: 28px;
}
.currency__block {
  display: flex;
  flex-direction: column;
  row-gap: 21px;
}
.currency__name {
  display: inline-flex;
  column-gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.currency__list {
  display: flex;
  flex-direction: column;
  background: #1c1c26;
  border-radius: 25px;
  width: 100%;
  
}
.currency__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 35px 0 35px;
}
.currency__item:not(:last-child) {
  border-bottom: 1px solid #0f0f12;
}
.currency__item-radio {
  display: none;
}
.currency__item-radio-ui {
  position: relative;
  width: 19px;
  height: 19px;
  border-radius: 100%;
  background: #151719;
  display: flex;
  align-items: center;
  justify-content: center;
}
.currency__item-name {
  font-weight: 400;
  font-size: 16px;
  color: #fefefe;
}
.currency__item-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: 59px;
}

.currency__item-radio:checked + .currency__item-radio-ui::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 100%;
  background: #8B6CFF;
}

.developer__item-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

.switch__input {
  display: none;
}

.switch__slider {
  position: relative;
  width: 45px;
  height: 27px;
  background: #21212b;
  border-radius: 345px;
  flex-shrink: 0;
}

.switch__slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 23px;
  height: 23px;
  border-radius: 345px;
  background: #151719;
  transition: 0.2s;
}

.switch__input:checked + .switch__slider {
  background: #151719;
}

.switch__input:checked + .switch__slider::before {
  transform: translateX(18px);
  background: #8B6CFF;
}

.developer {
  padding-top: 29px;
  row-gap: 20px;
}
.developer__list {
  width: 100%;
  
  border-radius: 25px;
  background: #1c1c26;
  padding-block: 3px;
}
.developer__item {
  display: flex;
  justify-content: space-between;
  padding: 18px 35px 19px 35px;
}
.developer__item:not(:last-child) {
  border-bottom: 1px solid #0f0f12;
}
.developer__item-info {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.developer__item-name {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.developer__item-value {
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
  line-height: 21px;
}

.about {
  padding-block: 30px 0px;
}
.about__list {
  padding-block: 14px;
}
.about__item {
  padding: 17px 30px 17px 35px;
}
.about__item-name {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.about__item-button {
  border: none;
  background-color: transparent;
}

.security-close {
  position: absolute;
  right: 34px;
  top: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* запрет скролла */
body.no-scroll {
  overflow: hidden;
}

.security__title {
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  padding: 60px 0 34px 50px;
}
.security__list {
  display: flex;
  flex-direction: column;
  row-gap: 27px;
  padding: 0 65px 22px 50px;
  border-bottom: 1px solid #0f0f12;
}
.security__item {
  display: flex;
  column-gap: 15px;
  align-items: start;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.security__button {
  width: 526px;
  height: 64px;
  background: #8B6CFF;
  border-radius: 15px;
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  margin-left: 50px;
  cursor: pointer;
}
.security__button--inactive {
  background: #21212b;
  color: #9a9aab;
  cursor: not-allowed;
  pointer-events: none;
}

.security__checkbox {
  padding: 30px 70px 40px 54px;
  display: flex;
  gap: 16px;
  cursor: pointer;
}

.security__checkbox input {
  display: none; /* скрываем стандартный */
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: none;
  background: #151719;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* галочка */
/* SVG по умолчанию скрыта */
.check-icon {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
}

/* при checked показываем галочку */
.security__checkbox input:checked + .custom-checkbox .check-icon {
  opacity: 1;
  transform: scale(1);
}

/* можно добавить активный фон */
.security__checkbox input:checked + .custom-checkbox {
  background: #8B6CFF;
}

.security__checkbox p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #9a9aab;
}

.security-overlay,
.recovery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2000;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  transition:
    opacity 0.28s ease,
    background-color 0.28s ease,
    visibility 0s linear 0.28s;
}

.security-overlay.active,
.recovery-overlay.active {
  background: rgba(13, 13, 13, 0.8);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.28s ease,
    background-color 0.28s ease,
    visibility 0s linear 0s;
}

.security-modal,
.recovery-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  overflow-y: auto;
  background: #18181d;
  border-radius: 25px;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
  will-change: transform, opacity;
}

/* размеры отдельно */
.security-modal {
  width: 625px;
  height: 625px;
}

.recovery-modal {
  width: 920px;
  height: 596px;
  align-items: center;
}

.security-overlay.active .security-modal,
.recovery-overlay.active .recovery-modal {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.security-close {
  position: absolute;
  right: 34px;
  top: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.recovery-close {
  position: absolute;
  right: 34px;
  top: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* запрет скролла */
body.no-scroll {
  overflow: hidden;
}

.recovery__title {
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  text-align: center;
  padding-block: 60px 47px;
}
.recovery__warning {
  background: #3b1f1f;
  border-radius: 10px;
  width: 830px;
  height: 106px;
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 6px;
}
.recovery__warning-title {
  font-weight: 600;
  font-size: 16px;
  color: #ff3a33;
}
.recovery__warning-description {
  font-weight: 400;
  font-size: 14px;
  color: #ff3a33;
}
.recovery__textarea {
  background: #18181d;
  border-radius: 25px;
  width: 526px;
  height: 180px;
  padding: 25px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 80px;
  resize: none;
}
.recovery__textarea::placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
}
.recovery__description {
  padding-bottom: 48px !important;
}
.recovery__button {
  width: 526px;
}
.recovery__hints {
  display: flex;
  align-items: center;
  column-gap: 10px;
  position: absolute;
  z-index: 10;
  top: 570px;
  left: 340px;
}
.recovery__hint {
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
  transition-duration: 0.2s;
  cursor: pointer;
}
.recovery__hint:hover, .recovery__hint:focus, .recovery__hint:active {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}
.recovery__error {
  font-weight: 400;
  font-size: 16px;
  color: #f83b17;
  display: flex;
  align-items: center;
  column-gap: 7px;
}

.register {
  padding-top: 81px;
}
.register--alt {
  padding-top: 148px !important;
}
.register__info {
  padding-top: 29px;
}
.register__description {
  font-weight: 400;
  font-size: 16px;
  color: #d5c628;
  padding-bottom: 36px !important;
}
.register__button {
}
.register__phrases-wrapper {
  width: 920px;
  height: 266px;
  background: #18181d;
  border: none;
  border-radius: 15px;
  padding: 25px 45px 40px 45px;
  transition-duration: 0.4s;
}
.register__phrases-wrapper--alt {
  width: 830px;
  height: 113px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 89px;
}
.register__phrases {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px 10px;
  padding-bottom: 89px;
}
.register__phrases-button {
  background: #8B6CFF;
  border-radius: 15px;
  width: 830px;
  height: 64px;
}
.register__copy-button {
  position: absolute;
  bottom: 137px;
  left: 372px;
  width: 200px;
  column-gap: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #eee;
  background-color: transparent;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
  text-wrap: nowrap;
}
.register__copy-button.is-active {
  color: #8B6CFF;
}
.register__copy-button--alt {
  left: 499px;
  bottom: 219px;
}

.phrase-item {
  position: relative;
}

.phrase-number {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a9aab;
  font-weight: 400;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.phrase-input {
  width: 130px;
  height: 49px;
  border: none;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  background: #1c1c26;
  border-radius: 10px;
  padding-left: 40px;
}
.phrase-input--alt {
  padding-left: 40px;
}

.import {
  padding-top: 96px;
}
.import__info {
  padding-top: 0;
}
.import__title {
  padding-bottom: 15px;
}
.import__description {
  padding-bottom: 40px;
  padding-top: 0;
}
.import__custom-checkbox {
  background: #151719;
}
.import__checkbox {
  padding-left: 37px;
}
.import__list {
  border-color: #9a9aab;
  width: 526px;
  padding-inline: 0;
  padding-bottom: 27px;
}
.import__item {
  line-height: 20px;
}
.import__button {
  margin-left: 0;
}
.import__button--inactive {
  background: #21212b;
  color: #9a9aab;
  cursor: not-allowed;
  pointer-events: none;
}
.import__back-button {
  border: none;
  background-color: transparent;
  display: inline-flex;
  column-gap: 15px;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
  position: absolute;
  left: 60px;
  top: 123px;
}

.sure__overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.8);

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.35s ease;
  z-index: 2000;
}

.sure__overlay.active {
  opacity: 1;
  visibility: visible;
}

.sure__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;

  transition: 
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;

  border-radius: 25px;
  width: 830px;
  height: 557px;
  background: #151719;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.sure__overlay.active .sure__modal {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.sure__close {
  position: absolute;
  right: 34px;
  top: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.sure__title {
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  color: #fff;
}
.sure__description {
  padding-top: 12px;
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
  width: 452px;
  text-align: center;
}
.sure__buttons {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-top: 34px;
}
.sure__button {
  width: 526px;
}

/* запрет скролла */
body.no-scroll {
  overflow: hidden;
}

.username {
  width: 526px;
  height: 49px;
  padding-bottom: 200px;
}

.username__wrapper {
  padding-top: 149px;
}

.username__field {
  position: relative;
  display: flex;
  align-items: center;
}

.username__prefix {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 15px;
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
}

.username__input {
  width: 100%;
  padding: 0 20px 0 34px;
  border-radius: 10px;
  outline: none;
  height: 49px;
  background-color: #1c1c26;
  border: none;
  color: #fff;
}
.username__input--red {
  border: 1px solid #F83B17;
}

.username__input:focus {
  border: 1px solid #646464;
}

.username__clear {
  position: absolute;
  right: 50px;
  border: none;
  cursor: pointer;
  color: #1c1c26;
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 23px;
  height: 23px;
  background-color: #b4b4b4;
  border-radius: 50%;
}

.username__clear:hover {
  opacity: 1;
}

/* info */
.username__info {
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.username__info--green {
  color: #00aa5f;
  transition-duration: 0s;
}

.username__info--red {
  color: #ff3b30;
  transition-duration: 0s;
}
.username__info--red .username__input {
  border: 1px solid #F83B17;
}

.username__svg--green,
.username__svg--red {
  display: none;
}

.username__info--green .username__svg--green {
  display: inline-block;
}

.username__info--red .username__svg--red {
  display: inline-block;
}

/* скрытие */
.visually-hidden {
  opacity: 0;
  visibility: hidden;
}

.market-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 27, 35, 0);
  visibility: hidden;
  transition: background 0.3s ease, visibility 0.3s ease;
  z-index: 2200;
  overflow-y: auto;
}

.market-overlay.active {
  background: rgba(13, 13, 13, 0.8);
  visibility: visible;
}

.market-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 510px;
  height: 100%;
  background: #18181d;
  border-radius: 25px 0 0 25px;
  transition: right 0.3s ease;
  z-index: 2201;
  padding: 60px 35px;
  overflow-y: auto;
  max-height: none;
}

.market-overlay.active .market-modal {
  right: 0;
}

.market-close {
  position: absolute;
  right: 34px;
  top: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
}

.market__title {
  font-size: 48px;
  color: #fff;
}

.market-overlay__info {
  display: flex;
  align-items: center;
  column-gap: 15px;
  padding-left: 24px;
}
.market-overlay__title {
  font-weight: 600;
  font-size: 36px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}
.market-overlay__text {
  padding: 2px 4px;
  font-weight: 500;
  font-size: 12px;
  color: #eee;
  background: #21212b;
  border-radius: 5px;
}
.market-overlay__price {
  font-weight: 500;
  font-size: 42px;
  color: #fff;
  padding-block: 20px 6px;
  padding-left: 24px;
}
.market-overlay__percent {
  font-weight: 500;
  font-size: 20px;
  padding: 4px 5px;
  border-radius: 5px;
}
.market-overlay__percent--outcome {
  background: #3b1f1f;
  color: #d93033;
}
.market-overlay__percent--income {
  background: #1f3b29;
  color: #30d972;
}
.market-overlay__percent-wrapper {
  display: flex;
  align-items: center;
  column-gap: 15px;
  padding-bottom: 18px;
  padding-left: 24px;
}
.market-overlay__graph {
  padding-left: 24px;
}
.market-overlay__damage {
  font-weight: 500;
  font-size: 24px;
}
.market-overlay__damage--outcome {
  color: #d93033;
}
.market-overlay__damage--income {
  color: #32ca5b;
}
.market-overlay__elements-buttons {
  padding-top: 40px;
  column-gap: 33px;
  padding-left: 24px;
}
.market-overlay__list {
  background: #1c1c26;
  border-radius: 25px;
  width: 439px;
  height: 369px;
  padding-bottom: 40px;
}
.market-overlay__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 17px;
}
.market-overlay__item:not(:last-child) {
  border-bottom: 1px solid #0f0f12;
}
.market-overlay__name {
  font-weight: 500;
  font-size: 16px;
  color: #9a9aab;
  padding-left: 30px;
}
.market-overlay__value {
  font-weight: 500;
  font-size: 16px;
  color: #eee;
  padding-right: 30px;
}
.market-overlay__subtitle {
  padding: 40px 0 19px 30px;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.market-overlay__description {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  color: #b4b4b4;
  padding-inline: 30px 25px;
}
.market-overlay__description:not(:last-child) {
  padding-bottom: 20px;
}

.reports__subtitle {
  font-weight: 600;
  font-size: 32px;
  color: #fff;
  padding-bottom: 31px;
}
.reports__header-description {
  font-weight: 400;
  padding-bottom: 16px;
  font-size: 16px;
  color: #b4b4b4;
}
.reports__body {
  overflow-y: auto;
  max-height: none;
  min-width: 0;
}
.reports__portfolio {
  padding-bottom: 16px;
  padding-top: 54px;
}
.reports__graph {
  padding-top: 36px;
}
.reports__graph-wrapper {
  display: flex;
  column-gap: 25px;
}
.reports__graph-cards {
  display: flex;
  flex-direction: column;
  row-gap: 22px;
}
.reports__graph-card {
  padding: 23px;
  width: 331px;
  height: 130px;
  border: 1px solid #1c1c26;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 22px;
}
.reports__graph-card--purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(17, 17, 17, 0.15) 100%);
}
.reports__graph-card--green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(17, 17, 17, 0.15) 100%);
}
.reports__graph-card--yellow {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(17, 17, 17, 0.15) 100%);
}
.reports__graph-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reports__graph-name, .reports__graph-date {
  font-weight: 400;
  font-size: 13px;
  color: #b4b4b4;
}
.reports__graph-price {
  font-weight: 600;
  font-size: 28px;
  color: #eee;
}
.reports__graph-graph {
  width: 330px;
  height: 330px;
  position: relative;
}
.reports__graph-graph-wrapper {
  width: 434px;
  height: 434px;
  padding: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid #1c1c26;
  border-radius: 25px;
}
.reports__graph-total {
  font-weight: 400;
  font-size: 16px;
  color: #b4b4b4;
}
.reports__graph-total-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reports__graph-total-price {
  font-weight: 600;
  font-size: 28px;
  color: #eee;
}
.reports__documents {
  display: flex;
  flex-direction: column;
  padding-top: 48px;
}
.reports__generate {
  padding-top: 45px;
  padding-bottom: 60px;
}

.reports__graph-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#151719 0deg, #151719 360deg);
  transition: background 1s ease;
  position: relative;
}

/* дырка внутри */
.reports__graph-circle::after {
  content: "";
  position: absolute;
  inset: 50px; /* толщина кольца */
  background: #151719;
  border-radius: 50%;
}

.reports__graph-card--purple {
  --chart-color: #8B5CF6;
}

.reports__graph-card--green {
  --chart-color: #11B981;
}

.reports__graph-card--yellow {
  --chart-color: #F59E14;
}

.documents {
  background: #18181d;
  border-radius: 25px;
  width: 100%;
  
  height: 450px;
  display: flex;
  flex-direction: column;
  padding-block: 30px;
}
.documents__selects, .documents__buttons {
  padding-inline: 30px;
}
.documents__selects {
  display: flex;
  column-gap: 14px;
  align-items: center;
}
.documents__select, .documents__dropdown {
  width: 358px;
  height: 59px;
  background: #1c1c26;
  border-radius: 20px;
}
.documents__select-title {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}
.documents__select-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.documents__method {
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}
.documents__method-title {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  padding-inline: 30px;
}
.documents__method-buttons {
  display: flex;
  column-gap: 18px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #21212b;
  padding-inline: 30px;
}
.documents__method-button {
  background: #1c1c26;
  border-radius: 15px;
  width: 231px;
  height: 64px;
  font-weight: 600;
  font-size: 20px;
  color: #9a9aab;
}
.documents__method-button.is-active {
  pointer-events: none;
  background: #8B6CFF;
  color: #FFFFFF;
}
.documents__buttons {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.generate {
  background: #18181d;
  border-radius: 25px;
  width: 100%;
  
  padding-block: 10px;
}
.generate--alt {
  height: 264px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
}
.generate__title {
  font-size: 18px;
  font-weight: 600;
  color: #fefefe;
}
.generate__description {
  font-size: 16px;
  font-weight: 400;
  color: #9a9aab;
  text-align: center;
}
.generate__header {
  display: flex;
  font-weight: 400;
  font-size: 16px;
  color: #9a9aab;
  padding-block: 17px;
  border-bottom: 1px solid #21212b;
}
.generate__header-year {
  padding-left: 30px;
  width: 168px;
}
.generate__header-created {
  width: 220px;
}
.generate__header-method {
  width: 131px;
}
.generate__header-format {
  width: 140px;
}
.generate__header-action {
  width: 129px;
}
.generate__row {
  display: flex;
  padding-block: 17px;
  font-weight: 400;
  font-size: 16px;
  color: #fefefe;
}
.generate__row:not(:last-child) {
  border-bottom: 1px solid #2c2c2c94;
}
.generate__row-year {
  padding-left: 30px;
  width: 168px;
}
.generate__row-created {
  width: 220px;
}
.generate__row-method {
  width: 131px;
}
.generate__row-format {
  width: 136px;
}
.generate__row-action {
  width: 129px;
}
.generate__row-action-button {
  display: inline-flex;
  align-items: center;
  column-gap: 7px;
  font-weight: 600;
  font-size: 16px;
  color: #8B6CFF;
  background-color: transparent;
  border: none;
}

.events {
  background: #18181d;
  border-radius: 25px;
  width: 100%;
  
  height: 194px;
}
.events__generate {
  padding-bottom: 60px;
}
.events__header-date {
  padding-left: 30px;
  width: 190px;
}
.events__header-type {
  width: 94px;
}
.events__header-asset {
  width: 102px;
}
.events__header-proceeds {
  width: 139px;
}
.events__header-cost {
  width: 139px;
}
.events__header-gain {
  width: 125px;
}
.events__row-date {
  padding-left: 30px;
  width: 190px;
}
.events__row-type {
  width: 94px;
}
.events__row-asset {
  width: 102px;
}
.events__row-proceeds {
  width: 139px;
}
.events__row-cost {
  width: 139px;
}
.events__row-gain {
  width: 125px;
}
.events__row-gain--income {
  color: #30d972;
}
.events__row-gain--outcome {
  color: #D93033;
}
.events__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 31px;
}
.events__button {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  background-color: transparent;
  cursor: pointer;
  border: none;
  font-weight: 600;
  font-size: 16px;
  color: #8B6CFF;
}
.events__subtitle {
  padding-bottom: 0;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.receive__qr-image {border-radius: 20px;
    padding: 20px;
    background: white;
	}
.token__button-content {position:relative; top:3px}

.token__button--no-bg {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color:#8B6CFF!important;
}




/* ========================================
   EXODUS CUSTOM STYLES
   ======================================== */

/* Layout fix — no body scroll */
html, body {
  overflow-x: hidden;
  background: #0f0f12 !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif !important;
}
.main {
  height: 100vh !important;
  overflow-x: hidden;
}
.content {
  overflow-y: auto !important;
  height: 100vh !important;
  background: #0f0f12 !important;
}

/* No animations */
.fade-in-item, .fade-in-sidebar {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Hide unused elements */
.background,
.graph__receive-button,
.portfolio__info {
  display: none !important;
}

/* Page header — unified across all pages */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0 14px;
  margin-bottom: 8px;
}

/* Portfolio account switcher */
.portfolio__account {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 10px;
  background: #18181d;
  border: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  font-weight: 500;
  color: #9a9aab;
  margin-left: auto;
  flex-shrink: 0;
}

/* Settings page — clean styles */
.stg-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  padding-top: 36px;
}
.stg-group-label {
  font-size: 11px;
  font-weight: 600;
  color: #5e5e6e;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.stg-card {
  background: #16161c;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  padding: 6px 0;
}
.stg-group {
  margin-bottom: 12px;
}
.stg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
}
.stg-row:hover .stg-row-body span {
  color: #8B6CFF;
}
.stg-row:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stg-row-body {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.stg-row-icon { flex-shrink: 0; }
.stg-chevron { flex-shrink: 0; opacity: 0.5; }
.stg-footer {
  text-align: center;
  font-size: 12px;
  color: #5e5e6e;
  padding: 32px 0 16px;
}

/* Settings tracker.js sections */
.settings section.developer {
  background: #16161c;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 12px;
}
.settings section.profile {
  margin-bottom: 0;
}
#tracker-addr-box {
  padding-top: 0 !important;
}
#tracker-addr-box section.developer {
  margin-bottom: 12px;
}
.settings h2.profile__title {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #5e5e6e !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
}
.settings .developer__list {
  background: transparent !important;
}
.settings .developer__item {
  cursor: default !important;
}
.settings .developer__item:hover,
.settings .developer__item-label:hover {
  background: transparent !important;
}
#tracker-data-box {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Modals */
.terms-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
.terms-overlay.active {
  display: flex;
}
.terms-modal {
  background: #18181d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}
.terms-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.terms__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.terms__last-updated {
  font-size: 12px;
  color: #5e5e6e;
  margin-bottom: 20px;
}
.terms__subtitle {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.terms__description {
  font-size: 13px;
  color: #9a9aab;
  line-height: 1.6;
  margin-bottom: 12px;
}
.terms__list {
  padding-left: 20px;
  margin-bottom: 12px;
}
.terms__item {
  font-size: 13px;
  color: #9a9aab;
  line-height: 1.6;
  margin-bottom: 6px;
}
.terms__block {
  margin-bottom: 20px;
}
.no-scroll {
  overflow-x: hidden;
}

/* Sidebar border */
.sidebar {
  border-right: 1px solid rgba(255,255,255,0.05) !important;
}

/* Hide all scrollbars */
.content::-webkit-scrollbar { display: none; width: 0; }
.content { scrollbar-width: none; -ms-overflow-style: none; }
*::-webkit-scrollbar { display: none; width: 0; height: 0; }
* { scrollbar-width: none; }

/* Instant page background to prevent flash */
html {
  background: #13131b !important;
}

/* Fix transaction icon jump */
.transactions__info-image-wrapper {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.transactions__info-image,
.tokens__info-image {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  object-fit: cover;
}

/* Sidebar header: icon + name inline */
.sidebar__logo {
  width: 32px !important;
  height: 32px !important;
  flex-shrink: 0;
}
