:root {
  --v3-bg: #02070b;
  --v3-bg2: #041018;
  --v3-card: #05111a;
  --v3-card2: #071722;
  --v3-line: #12324a;
  --v3-line2: #0d2435;
  --v3-text: #eaf6ff;
  --v3-muted: #8398ac;
  --v3-blue: #159cff;
  --v3-cyan: #10d9ff;
  --v3-green: #00e9a0;
  --v3-red: #ff3f57;
  --v3-yellow: #ffb02e;
  --v3-purple: #7c4dff;
}

* {
  box-sizing: border-box
}

.v3-body {
  margin: 0;
  background: #02070b;
  color: var(--v3-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  min-height: 100vh
}

.v3-body button,
.v3-body input,
.v3-body select,
.v3-body textarea {
  font: inherit
}

.v3-body button {
  color: inherit
}

.v3-body a {
  text-decoration: none
}

.v3-app {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr);
  height: 100vh;
  background: radial-gradient(circle at 68% -20%, rgba(0, 116, 182, .11), transparent 32%), #02070b
}

.v3-sidebar {
  border-right: 1px solid #0d2637;
  background: linear-gradient(180deg, #02080d 0%, #031018 64%, #02070b 100%);
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  z-index: 20
}

.v3-brand {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  border-bottom: 1px solid #0a2232;
  color: #f2f8fc
}

.v3-brand>span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0
}

.v3-brand strong {
  font-size: 22px;
  letter-spacing: .03em;
  line-height: 1
}

.v3-brand strong b {
  color: #19a8ff
}

.v3-brand small {
  font-size: 7px;
  margin-top: 8px;
  margin-bottom: 5px;
  color: #139eff;
  font-weight: 800;
  letter-spacing: .05em;
  white-space: nowrap
}

.v3-logo {
  width: 60px;
  height: 50px;
  position: relative;
  display: block;
  flex: none
}

.v3-logo i {
  position: absolute;
  display: block;
  background: linear-gradient(145deg, #169fff, #6fd1ff);
  filter: drop-shadow(0 0 7px rgba(21, 156, 255, .28));
  clip-path: polygon(50% 0, 100% 100%, 0 100%)
}

.v3-logo i:nth-child(1) {
  width: 24px;
  height: 36px;
  left: 18px;
  top: -2px
}

.v3-logo i:nth-child(2) {
  width: 24px;
  height: 23px;
  left: 2px;
  top: 25px;
  transform: rotate(-8deg)
}

.v3-logo i:nth-child(3) {
  width: 24px;
  height: 23px;
  right: 2px;
  top: 25px;
  transform: rotate(8deg)
}

.v3-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 15px;
  overflow: auto;
  scrollbar-width: none
}

.v3-nav::-webkit-scrollbar {
  display: none
}

.v3-nav button {
  height: 40px;
  border: 1px solid transparent;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 13px;
  color: #9eb4c9;
  font-size: 13px;
  padding: 0 12px;
  cursor: pointer;
  position: relative;
  text-align: left;
  transition: .18s
}

.v3-nav button:hover {
  background: #07131d;
  color: #dff5ff
}

.v3-nav button.active {
  background: linear-gradient(90deg, #073a70, #061b2b 78%);
  border-color: #078ff6;
  color: #12b5ff;
  box-shadow: inset 3px 0 #0da5ff, 0 0 20px rgba(0, 135, 255, .08)
}

.nav-ico {
  width: 28px;
  text-align: center;
  color: #86a9c6;
  font-size: 14px;
  font-weight: 800
}

.v3-nav button.active .nav-ico {
  color: #1aa8ff
}

.nav-count {
  margin-left: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff3f57;
  color: white;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-style: normal
}

.v3-upgrade {
  margin-top: auto;
  border: 1px solid #0e8cf1;
  border-radius: 7px;
  padding: 12px;
  background: linear-gradient(180deg, #061221, #04101a);
  box-shadow: 0 0 20px rgba(0, 129, 255, .08)
}

.v3-upgrade .diamond {
  color: #53b9ff;
  font-size: 28px;
  float: left;
  margin-right: 8px;
  line-height: 1
}

.v3-upgrade strong {
  font-size: 13px
}

.v3-upgrade p {
  clear: both;
  margin: 10px 0;
  color: #9aacbc;
  font-size: 11px;
  line-height: 1.5
}

.v3-btn {
  border: 1px solid #173b56;
  background: #0a1822;
  border-radius: 13px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.v3-btn-blue {
  background: linear-gradient(180deg, #169eff, #0786f1);
  margin-top: 8px;
  margin-bottom: 8px;
  border-color: #2cb0ff;
  color: #02111a;
  box-shadow: 0 0 18px rgba(8, 143, 255, .2)
}

.v3-btn.danger {
  background: #291017;
  margin-top: 8px;
  margin-bottom: 8px;
  border-color: #7a2432;
  color: #ff8c9b;
  width: 100%
}

.v3-upgrade .v3-btn {
  width: 100%;
  font-size: 12px;
  padding: 9px
}

.v3-shell {
  min-width: 0;
  display: grid;
  grid-template-rows: 74px minmax(0, 1fr) 46px;
  overflow: hidden
}

.v3-topbar {
  border-bottom: 1px solid #0d2637;
  background: #02080d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  position: relative;
  z-index: 30
}

.mobile-menu {
  display: none
}

.v3-search-wrap {
  width: min(550px, 48vw);
  height: 44px;
  border: 1px solid #12334a;
  border-radius: 13px;
  background: #06101a;
  display: flex;
  align-items: center;
  padding: 0 12px;
  position: relative;
  box-shadow: inset 0 0 18px rgba(4, 134, 217, .025)
}

.v3-search-wrap>span {
  font-size: 22px;
  color: #88a8c3
}

.v3-search-wrap input {
  border: 0;
  outline: 0;
  background: transparent;
  color: #d9ecf9;
  padding: 0 10px;
  flex: 1;
  min-width: 0;
  font-size: 12px
}

.v3-search-wrap input::placeholder {
  color: #6f879a
}

.v3-search-wrap kbd {
  border: 1px solid #34536c;
  border-radius: 8px;
  padding: 4px 7px;
  font-size: 10px;
  color: #a7bdd0;
  background: #07131d
}

.search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  background: #06111a;
  border: 1px solid #15354a;
  border-radius: 13px;
  display: none;
  padding: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  z-index: 50
}

.search-results.show {
  display: block
}

.search-results button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px;
  color: #cce2f3;
  text-align: left;
  border-radius: 4px
}

.search-results button:hover {
  background: #0a1b28
}

.v3-top-actions {
  position: absolute;
  right: 12px;
  top: 0;
  height: 74px;
  display: flex;
  align-items: center
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00e9a0;
  font-size: 12px;
  margin-right: 14px
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e9a0;
  box-shadow: 0 0 11px #00e9a0;
  animation: v3pulse 1.6s infinite
}

.icon-btn {
  height: 74px;
  width: 54px;
  border: 0;
  border-left: 1px solid #091e2c;
  background: #03101a;
  cursor: pointer;
  color: #9fb8cd;
  font-size: 22px;
  position: relative
}

.icon-btn em {
  position: absolute;
  top: 14px;
  right: 10px;
  border-radius: 50%;
  background: #ff334a;
  color: white;
  font-size: 10px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  font-style: normal;
  border: 2px solid #02080d
}

.profile-btn {
  height: 74px;
  border: 0;
  border-left: 1px solid #091e2c;
  background: #02080d;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  cursor: pointer;
  min-width: 170px;
  text-align: left
}

.profile-btn .avatar {
  width: 40px;
  height: 40px;
  border: 1px solid #1a4c70;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #071520
}

.profile-btn>span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 65px
}

.profile-btn b {
  font-size: 12px
}

.profile-btn small {
  background: #087bf1;
  border: 1px solid #249fff;
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 10px;
  color: white;
  width: max-content
}

.profile-btn i {
  margin-left: auto;
  color: #75a4c8
}

.profile-menu,
.notification-menu {
  position: absolute;
  right: 12px;
  top: 68px;
  display: none;
  background: #06111a;
  border: 1px solid #14364d;
  border-radius: 7px;
  padding: 7px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
  z-index: 70
}

.profile-menu.show,
.notification-menu.show {
  display: block
}

.profile-menu {
  width: 180px
}

.profile-menu button,
.profile-menu a {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: #c8deed;
  padding: 10px;
  border-radius: 8px;
  text-align: left;
  font-size: 12px;
  cursor: pointer
}

.profile-menu button:hover,
.profile-menu a:hover {
  background: #0a1c29
}

.notification-menu {
  right: 190px;
  width: 310px;
  padding: 12px
}

.notification-menu strong {
  display: block;
  margin-bottom: 8px
}

.notification-menu p {
  font-size: 11px;
  color: #a9bdce;
  margin: 0;
  padding: 9px 4px;
  border-top: 1px solid #0b2232
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 7px
}

.dot.green {
  background: #00e9a0
}

.dot.red {
  background: #ff3f57
}

.dot.blue {
  background: #159cff
}

.v3-main {
  overflow: auto;
  padding: 9px 12px 10px;
  background: linear-gradient(180deg, #02070b, #02101a 60%, #02070b);
  scrollbar-color: #153349 #031018;
  scrollbar-width: thin
}

.v3-view {
  display: none;
  min-height: 100%
}

.v3-view.active {
  display: block;
  animation: v3fade .22s ease
}

.market-strip {
  display: grid;
  grid-template-columns: 1.06fr .78fr .83fr .9fr .9fr 1.42fr;
  gap: 10px;
  margin-bottom: 10px
}

.ticker {
  height: 68px;
  border: 1px solid #12364e;
  border-radius: 13px;
  background: linear-gradient(180deg, #06121b, #04101a);
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e9f7ff;
  text-align: left;
  cursor: pointer;
  min-width: 0
}

.ticker:hover,
.ticker.active {
  border-color: #1c587d;
  background: #071825
}

.ticker>span:not(.asset-icon):not(.coin):not(.brain) {
  display: flex;
  flex-direction: column;
  min-width: 0
}

.ticker b {
  font-size: 13px
}

.ticker small {
  font-size: 12px;
  margin-top: 2px;
  color: #d1e4f1
}

.ticker em {
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  margin-top: 1px
}

.ticker>strong {
  margin-left: auto;
  font-size: 12px
}

.asset-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #28526b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #aac9df
}

.ticker svg {
  width: 65px;
  margin-left: auto
}

.ticker svg polyline {
  fill: none;
  stroke: #00e9a0;
  stroke-width: 1.4
}

.coin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900
}

.coin.orange {
  background: #f6842a
}

.coin.violet {
  background: #5964ba
}

.date-card {
  cursor: default
}

.date-card .brain {
  width: 40px;
  font-size: 27px;
  color: #63809a
}

.up {
  color: var(--v3-green) !important
}

.down {
  color: var(--v3-red) !important
}

.cyan {
  color: var(--v3-cyan) !important
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  grid-template-rows: 504px 217px;
  gap: 10px
}

.chart-card {
  grid-column: 1/14;
  grid-row: 1
}

.signal-card {
  grid-column: 14/19;
  grid-row: 1
}

.right-stack {
  grid-column: 19/25;
  grid-row: 1
}

.v3-card,
.module-card {
  border: 1px solid #12364e;
  border-radius: 13px;
  background: linear-gradient(180deg, #05111a, #041019);
  box-shadow: inset 0 0 18px rgba(0, 120, 180, .018);
  overflow: hidden
}

.chart-card {
  position: relative;
  display: grid;
  grid-template-rows: 41px 48px minmax(0, 1fr) 103px 28px
}

.chart-toolbar {
  display: flex;
  border-bottom: 1px solid #143149
}

.drawing-tools {
  position: absolute;
  left: 0;
  top: 41px;
  width: 44px;
  bottom: 0;
  border-right: 1px solid #143149;
  background: #04101a;
  display: flex;
  flex-direction: column;
  z-index: 5;
  padding-top: 4px
}

.drawing-tools button {
  border: 0;
  background: transparent;
  color: #8fb1c8;
  height: 43px;
  cursor: pointer;
  font-size: 17px
}

.drawing-tools button:hover {
  color: #1bafff;
  background: #071a28
}

.chart-controls {
  margin-left: 44px;
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: auto
}

.chart-controls button {
  border: 0;
  background: transparent;
  color: #b9cede;
  padding: 9px 10px;
  min-width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 11px
}

.chart-controls button.active {
  color: #12a9ff;
  background: #082849;
  box-shadow: inset 0 -2px #0a9fff
}

.chart-controls button:hover {
  background: #071b28
}

.chart-controls .sep {
  height: 24px;
  border-left: 1px solid #17344b;
  margin: 0 6px
}

.chart-symbol-row {
  margin-left: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 10px
}

.round-x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #758c9b;
  color: white;
  display: grid;
  place-items: center;
  font-size: 11px
}

.chart-symbol-row div {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.chart-symbol-row b {
  font-size: 13px
}

.chart-symbol-row small {
  font-size: 11px;
  color: #00dcb7
}

.chart-stage {
  margin-left: 44px;
  position: relative;
  min-height: 0;
  border-bottom: 1px solid #1a3548
}

.chart-stage canvas {
  width: 100%;
  height: 100%;
  display: block
}

.res-label,
.sup-label {
  position: absolute;
  right: 7%;
  padding: 2px 7px;
  font-size: 10px
}

.res-label {
  top: 17%;
  color: #ffa2af;
  background: rgba(121, 22, 39, .35);
  border: 1px solid rgba(255, 63, 87, .5)
}

.sup-label {
  bottom: 16%;
  color: #00e9a0;
  background: rgba(0, 122, 84, .25);
  border: 1px solid rgba(0, 233, 160, .45)
}

.price-tag {
  position: absolute;
  right: 0;
  top: 44%;
  transform: translateY(-50%);
  background: #07a88c;
  color: #eafffa;
  font-size: 10px;
  padding: 3px 6px
}

.rsi-wrap {
  margin-left: 44px;
  position: relative;
  border-bottom: 1px solid #123047;
  min-height: 0
}

.rsi-title {
  position: absolute;
  left: 8px;
  top: 4px;
  font-size: 10px;
  z-index: 2
}

.rsi-title b {
  color: #13aaff
}

.rsi-wrap canvas {
  width: 100%;
  height: 100%;
  display: block
}

.chart-bottom {
  margin-left: 44px;
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 0 10px;
  color: #a8bdcd;
  font-size: 9px
}

.chart-bottom span:nth-last-of-type(3) {
  margin-left: auto
}

.chart-bottom b {
  color: #00aefa
}

.signal-card {
  padding: 0 14px
}

.signal-card header,
.analysis-card header,
.news-card header,
.bottom-card header,
.module-card header {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #0f2b3e
}

.signal-card header b,
.analysis-card header b,
.news-card header b,
.bottom-card header b {
  font-size: 12px
}

.elite {
  font-size: 9px;
  color: #00e9a0;
  background: #063d33;
  border: 1px solid #087861;
  border-radius: 8px;
  padding: 4px 8px
}

.signal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 8px;
  border-bottom: 1px solid #0d2b3d
}

.signal-title strong {
  font-size: 15px;
  line-height: 1;
  color: #00e9a0;
  text-shadow: 0 0 20px rgba(0, 233, 160, .2);
  border-bottom: 2px solid #00e9a0;
  padding-bottom: 7px
}

.signal-title b {
  font-size: 17px
}

.signal-score-row {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #0b2535;
  color: #a9bdcd;
  font-size: 12px
}

.signal-score-row strong {
  font-size: 28px;
  color: #00e9a0
}

.signal-score-row small {
  font-size: 11px;
  font-weight: 500
}

.signal-kv {
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #0b2535;
  font-size: 12px
}

.signal-kv span {
  color: #a9bdcd
}

.execute-btn {
  width: 100%;
  height: 35px;
  border: 1px solid #10a6ff;
  border-radius: 13px;
  background: linear-gradient(180deg, #18a4ff, #0886ef);
  color: #01111b;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  margin-top: 13px;
  box-shadow: 0 0 24px rgba(0, 136, 255, .16)
}

.execute-btn:hover {
  filter: brightness(1.08)
}

.watch-btn {
  width: 100%;
  height: 15px;
  border: 0;
  background: transparent;
  margin-bottom: 5px;
  margin-top: 5px;
  color: #1aaeff;
  font-size: 7px;
  cursor: pointer
}

.right-stack {
  display: grid;
  grid-template-rows: 315px 179px;
  gap: 10px
}

.analysis-card {
  padding: 0 12px
}

.analysis-card header small {
  font-size: 9px;
  color: #798da0
}

.analysis-tabs {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  border-bottom: 1px solid #102d41;
  margin: 0 -12px
}

.analysis-tabs button {
  border: 0;
  background: transparent;
  color: #8da4b8;
  font-size: 10px;
  padding: 10px 2px;
  cursor: pointer
}

.analysis-tabs button.active {
  color: #1bb4ff;
  background: #07243a;
  box-shadow: inset 0 -2px #0da6ff
}

.analysis-pane {
  display: none;
  padding-top: 10px
}

.analysis-pane.active {
  display: block
}

.analysis-row {
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px
}

.analysis-row span {
  color: #a9c0d2
}

.analysis-row span::first-letter {
  color: #00e9a0
}

.analysis-row b {
  color: #00e9a0;
  font-size: 10px
}

.pill-green {
  background: #08775d;
  padding: 4px 10px;
  border-radius: 8px;
  color: #dffff5 !important
}

.tf-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px
}

.tf-matrix span {
  background: #071925;
  border: 1px solid #12344a;
  padding: 11px;
  border-radius: 8px;
  color: #9cb4c7;
  font-size: 11px
}

.tf-matrix b {
  float: right;
  color: #00e9a0
}

.ai-insight {
  font-size: 11px;
  line-height: 1.65;
  color: #abc2d3
}

.news-card {
  padding: 0 12px
}

.news-card header button {
  border: 0;
  background: none;
  color: #8197aa;
  font-size: 9px;
  cursor: pointer
}

.news-row {
  display: grid;
  grid-template-columns: 38px 58px 1fr auto;
  gap: 5px;
  align-items: center;
  height: 34px;
  font-size: 9px
}

.news-row time {
  color: #859cb0
}

.news-row p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  color: #cbdce8
}

.impact {
  font-style: normal;
  padding: 4px 7px;
  border-radius: 3px
}

.impact.high {
  background: #3d111a;
  color: #ff536a
}

.impact.medium {
  background: #372a0b;
  color: #ffc334
}

.bottom-card {
  padding: 0 13px
}

.account-card,
.dashboard-grid .account-card {
  grid-column: 1/7;
  grid-row: 2
}

.performance-card,
.dashboard-grid .performance-card {
  grid-column: 7/13;
  grid-row: 2
}

.bot-card,
.dashboard-grid .bot-card {
  grid-column: 13/19;
  grid-row: 2;
  display: block
}

.sentiment-card,
.dashboard-grid .sentiment-card {
  grid-column: 19/25;
  grid-row: 2
}

.account-card header div {
  display: flex;
  align-items: center;
  gap: 12px
}

.currency-btn {
  background: #071a27;
  border: 1px solid #11364f;
  color: #d3e7f5;
  border-radius: 8px;
  padding: 5px 9px;
  font-size: 9px
}

.account-balance {
  height: 103px;
  display: grid;
  grid-template-columns: 1.25fr .55fr 1fr;
  align-items: center;
  border-bottom: 1px solid #0e2a3c
}

.account-balance>div {
  display: flex;
  flex-direction: column
}

.account-balance span,
.account-stats span,
.perf-stats span {
  font-size: 10px;
  color: #8da4b6
}

.account-balance strong {
  font-size: 20px;
  margin-top: 6px
}

.account-balance>b {
  font-size: 12px
}

.account-balance canvas {
  width: 100%;
  height: 65px
}

.account-stats {
  height: 69px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr
}

.account-stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #0d2839
}

.account-stats div:last-child {
  border: 0;
  padding-left: 14px
}

.account-stats b {
  font-size: 16px;
  margin-top: 4px
}

.performance-card canvas {
  width: 100%;
  height: 94px
}

.perf-stats {
  height: 57px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center
}

.perf-stats div {
  display: flex;
  flex-direction: column
}

.perf-stats b {
  font-size: 17px;
  margin-top: 3px
}

.sentiment-card {
  padding-bottom: 10px
}

.sentiment-top {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 8px
}

.sentiment-ring {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(#00e9a0 0 73%, #0d2735 73% 100%);
  position: relative
}

.sentiment-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: #06131c;
  border-radius: 50%
}

.sentiment-ring span {
  position: relative;
  z-index: 2;
  color: #00e9a0;
  font-weight: 900;
  font-size: 17px
}

.sentiment-top>div:last-child {
  display: flex;
  flex-direction: column
}

.sentiment-top>div:last-child b {
  font-size: 14px
}

.sentiment-top small {
  font-size: 10px;
  color: #9cb0c1;
  margin-top: 4px
}

.sentiment-row {
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  margin-top: 8px
}

.sentiment-row>div {
  height: 11px;
  border-radius: 8px;
  background: #102635;
  overflow: hidden
}

.sentiment-row i {
  display: block;
  height: 100%;
  background: #00e9a0;
  border-radius: 3px
}

.sentiment-row.short i {
  background: #ff3f57
}

.sentiment-row b {
  font-size: 9px
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px;
  margin-top: 10px
}

.shortcut-grid button {
  height: 62px;
  border: 1px solid #12364e;
  border-radius: 13px;
  background: #05111a;
  color: #e4f2fb;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: 1fr 1fr;
  text-align: left;
  padding: 8px;
  column-gap: 8px;
  cursor: pointer
}

.shortcut-grid button:hover {
  border-color: #168ee4;
  background: #061826
}

.shortcut-icon {
  grid-row: 1/3;
  width: 32px;
  height: 32px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 18px;
  align-self: center
}

.shortcut-icon.purple {
  background: #5b2dd9;
  color: #fff
}

.shortcut-icon.blue {
  background: #086af2;
  color: #fff
}

.shortcut-icon.green {
  background: #078d64;
  color: #fff
}

.shortcut-icon.orange {
  background: #ee801c;
  color: #fff
}

.shortcut-icon.red {
  background: #ae2744;
  color: #fff
}

.shortcut-grid b {
  font-size: 10px;
  align-self: end
}

.shortcut-grid small {
  font-size: 8px;
  color: #8398aa;
  align-self: start
}

.v3-footer {
  border-top: 1px solid #0e2b3e;
  background: #02070b;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 20px;
  font-size: 10px;
  color: #73899d
}

.v3-footer>div {
  display: flex;
  gap: 20px
}

.v3-footer>div b {
  color: #10d9ff
}

.v3-footer blockquote {
  margin: 0;
  text-align: center;
  font-style: italic
}

.v3-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px
}

.v3-footer a {
  color: #73899d
}

.module-view {
  padding: 10px 2px 30px
}

.module-heading {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px
}

.module-heading small {
  color: #13aaff;
  font-weight: 900;
  letter-spacing: .12em
}

.module-heading h1 {
  margin: 4px 0 2px;
  font-size: 26px
}

.module-heading p {
  margin: 0;
  color: #8097aa;
  font-size: 12px
}

.module-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 12px
}

.module-grid.four {
  grid-template-columns: repeat(4, 1fr)
}

.module-grid.three {
  grid-template-columns: repeat(3, 1fr)
}

.module-grid.two {
  grid-template-columns: repeat(2, 1fr)
}

.module-card {
  padding: 16px;
  min-height: 130px
}

.module-card.wide {
  margin-bottom: 12px
}

.module-card>span {
  color: #8aa1b4;
  font-size: 11px
}

.module-card h2 {
  margin: 10px 0 7px;
  font-size: 25px
}

.module-card p {
  color: #8ea4b5;
  font-size: 12px;
  line-height: 1.55
}

.module-card header {
  margin: -16px -16px 14px;
  padding: 0 16px
}

.module-card header small,
.module-card header span {
  color: #849aab;
  font-size: 10px
}

.market-module-card {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.market-module-card h3 {
  font-size: 13px;
  margin: 0
}

.market-module-card strong {
  font-size: 21px
}

.market-module-card em {
  font-size: 11px;
  font-style: normal
}

.module-card canvas {
  max-width: 100%
}

.ai-report #analysisReport {
  min-height: 85px
}

.ai-report.loading #analysisReport {
  opacity: .35
}

.upload-zone {
  height: 140px;
  border: 1px dashed #1a5d82;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #20aaff;
  cursor: pointer;
  background: #04131e
}

.upload-zone span {
  font-size: 11px;
  color: #7893a6
}

.chart-preview img {
  max-height: 300px;
  max-width: 100%;
  margin-top: 12px;
  border-radius: 13px;
  border: 1px solid #153c56
}

.signal-table {
  border: 1px solid #12364e;
  border-radius: 13px;
  overflow: hidden
}

.signal-tr {
  display: grid;
  grid-template-columns: 110px 90px 1fr 100px 110px 110px 110px;
  min-height: 48px;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #0d293b;
  font-size: 11px;
  background: #05111a
}

.signal-tr.head {
  background: #071722;
  color: #7f98ac;
  font-weight: 800
}

.signal-tr:last-child {
  border: 0
}

.status-connected {
  color: #00e9a0;
  font-size: 11px
}

.mode-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.mode-buttons button {
  border: 1px solid #143f5b;
  background: #071620;
  padding: 12px;
  border-radius: 13px;
  color: #a8bdcc;
  cursor: pointer
}

.mode-buttons button.active {
  border-color: #10a5ff;
  color: #13afff;
  background: #082a42
}

.mode-buttons button.locked {
  opacity: .55
}

.settings-list {
  display: grid;
  gap: 10px;
  margin-top: 16px
}

.settings-list label {
  display: flex;
  justify-content: space-between;
  color: #9fb4c4;
  font-size: 12px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #99afc1;
  font-size: 11px
}

.field input,
.field select,
.field textarea {
  background: #06131d;
  border: 1px solid #163a51;
  border-radius: 20px;
  color: #e7f5ff;
  padding: 11px;
  outline: none
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #159cff
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.form-stack.narrow {
  max-width: 540px
}

.fine {
  font-size: 10px !important;
  color: #71889b !important
}

.empty-state {
  height: 260px;
  display: grid;
  place-items: center;
  color: #73899a
}

.backtest-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.backtest-metrics div {
  background: #061722;
  border: 1px solid #12364e;
  border-radius: 13px;
  padding: 12px;
  display: flex;
  flex-direction: column
}

.backtest-metrics span {
  font-size: 10px;
  color: #8399ab
}

.backtest-metrics b {
  font-size: 20px;
  margin-top: 6px
}

.weight-list {
  display: grid;
  gap: 12px
}

.weight-row {
  display: grid;
  grid-template-columns: 180px 1fr 70px;
  align-items: center;
  gap: 15px
}

.weight-row span {
  font-size: 12px;
  color: #a7bdcc
}

.weight-row input[type=range] {
  accent-color: #159cff
}

.weight-row b {
  text-align: right;
  color: #12dfff
}

.strategy-total {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #123148;
  text-align: right;
  color: #8ea5b7
}

.strategy-total b {
  font-size: 22px;
  color: #10d9ff
}

.result-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.result-large span {
  font-size: 11px;
  color: #899faf
}

.result-large h2 {
  font-size: 34px;
  margin: 4px 0 15px
}

.result-large h3 {
  margin: 4px 0;
  font-size: 20px
}

.journal-item {
  padding: 12px 0;
  border-bottom: 1px solid #0e2a3c
}

.journal-item header {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0
}

.journal-item p {
  margin: 6px 0 0
}

.calendar-list {
  border: 1px solid #12364e;
  border-radius: 20px;
  overflow: hidden
}

.calendar-item {
  display: grid;
  grid-template-columns: 100px 90px 1fr 100px 120px;
  align-items: center;
  min-height: 58px;
  margin-right: 10px;
  padding: 0 16px;
  border-bottom: 1px solid #0c293b;
  background: #05111a;
  font-size: 11px
}

.calendar-item:last-child {
  border: 0
}

.calendar-item time {
  color: #93aabd
}

.calendar-item .event {
  font-weight: 700
}

.impact-filter {
  display: flex;
  gap: 7px
}

.impact-filter button {
  border: 1px solid #143b54;
  background: #07131d;
  color: #8ca4b6;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer
}

.impact-filter button.active {
  border-color: #139fff;
  color: #12b1ff
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.news-article {
  border: 1px solid #12364e;
  border-radius: 13px;
  background: #05111a;
  padding: 15px;
  min-height: 160px
}

.news-article small {
  color: #12aaff
}

.news-article h3 {
  font-size: 15px;
  line-height: 1.35
}

.news-article p {
  font-size: 11px;
  color: #859bad;
  line-height: 1.5
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.lesson-num {
  font-size: 25px !important;
  color: #139fff !important;
  font-weight: 900
}

.lesson-btn {
  border: 1px solid #15405d;
  background: #071723;
  color: #18abff;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer
}

.community-feed {
  display: grid;
  gap: 10px
}

.community-post {
  border: 1px solid #12364e;
  background: #05111a;
  border-radius: 13px;
  padding: 14px
}

.community-post header {
  display: flex;
  justify-content: space-between
}

.community-post p {
  font-size: 12px;
  color: #8fa6b8
}

.community-post small {
  color: #6f8799
}

.trade-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(5px)
}

.trade-modal.show {
  display: flex
}

.trade-dialog {
  width: min(440px, calc(100% - 28px));
  background: #06131d;
  border: 1px solid #15618c;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 0 60px rgba(0, 132, 210, .2);
  position: relative
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: transparent;
  color: #a8c0d2;
  font-size: 25px;
  cursor: pointer
}

.modal-label {
  font-size: 10px;
  color: #12adff;
  letter-spacing: .12em
}

.trade-dialog h2 {
  margin: 10px 0 18px
}

.trade-dialog h2 b {
  float: right
}

.order-kv {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #103046;
  font-size: 12px
}

.order-kv span {
  color: #8ea4b5
}

.trade-dialog .field {
  margin-top: 15px
}

.toast-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  display: grid;
  gap: 8px
}

.v3-toast {
  min-width: 270px;
  background: #071822;
  border: 1px solid #17608a;
  border-radius: 13px;
  padding: 12px 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .45);
  animation: v3toast .22s ease
}

.v3-toast b {
  display: block;
  font-size: 12px
}

.v3-toast span {
  display: block;
  font-size: 10px;
  color: #879fb1;
  margin-top: 3px
}

.bot-card.module-active {
  display: block
}

.toggle {
  position: relative;
  width: 38px;
  height: 20px
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0
}

.toggle i {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #143040;
  cursor: pointer
}

.toggle i::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #cad7df;
  left: 2px;
  top: 2px;
  transition: .2s
}

.toggle input:checked+i {
  background: #00b884
}

.toggle input:checked+i::after {
  transform: translateX(18px);
  background: white
}

.bot-online {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #00e9a0;
  font-size: 13px;
  margin: 4px 0 4px
}

.bot-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 28px;
  font-size: 10px;
  color: #a9bdca
}

.bot-line>b {
  color: #00e9a0
}

.bot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px
}

.bot-actions button,
.bot-card header button {
  border: 1px solid #13507a;
  background: #061827;
  color: #10a8ff;
  border-radius: 8px;
  margin-bottom: 5px;
  padding: 5px;
  font-size: 9px;
  cursor: pointer
}

.bot-card header div {
  display: flex;
  gap: 4px
}

.bot-card header button {
  border: 0;
  background: transparent;
  padding: 2px;
  color: #12b2ff
}

.focus-mode .v3-sidebar {
  display: none
}

.focus-mode .v3-app {
  grid-template-columns: 1fr
}

.focus-mode .v3-footer {
  display: none
}

.focus-mode .v3-shell {
  grid-template-rows: 74px minmax(0, 1fr)
}

@keyframes v3pulse {
  50% {
    opacity: .45;
    transform: scale(.7)
  }
}

@keyframes v3fade {
  from {
    opacity: 0;
    transform: translateY(4px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes v3toast {
  from {
    opacity: 0;
    transform: translateX(15px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(min-width:1400px) {
  .chart-bottom {
    gap: 30px
  }
}

@media(max-width:1250px) {
  .v3-app {
    grid-template-columns: 190px 1fr
  }

  .v3-brand strong {
    font-size: 18px
  }

  .v3-brand small {
    font-size: 8px
  }

  .market-strip {
    grid-template-columns: repeat(3, 1fr)
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 500px auto auto auto
  }

  .chart-card {
    grid-column: 1;
    grid-row: 1
  }

  .signal-card {
    grid-column: 2;
    grid-row: 1
  }

  .right-stack {
    grid-column: 1/3;
    grid-row: 2;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto
  }

  .account-card,
  .dashboard-grid .account-card {
    grid-column: 1;
    grid-row: 3
  }

  .performance-card,
  .dashboard-grid .performance-card {
    grid-column: 2;
    grid-row: 3
  }

  .bot-card,
  .dashboard-grid .bot-card {
    grid-column: 1;
    grid-row: 4
  }

  .sentiment-card,
  .dashboard-grid .sentiment-card {
    grid-column: 2;
    grid-row: 4
  }

  .shortcut-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .v3-topbar {
    justify-content: flex-start;
    padding-left: 18px
  }

  .v3-search-wrap {
    width: 42vw
  }

  .profile-btn {
    min-width: 145px
  }

  .v3-top-actions {
    right: 0
  }

  .live-pill {
    display: none
  }
}

@media(max-width:900px) {
  .v3-app {
    grid-template-columns: 1fr
  }

  .v3-sidebar {
    position: fixed;
    left: -220px;
    top: 0;
    bottom: 0;
    width: 216px;
    transition: .22s
  }

  .v3-sidebar.open {
    left: 0;
    box-shadow: 15px 0 50px rgba(0, 0, 0, .6)
  }

  .mobile-menu {
    display: block;
    border: 0;
    background: transparent;
    color: #1aaaff;
    font-size: 23px;
    margin-right: 8px;
    cursor: pointer
  }

  .v3-topbar {
    justify-content: flex-start
  }

  .v3-search-wrap {
    width: min(430px, 48vw)
  }

  .icon-btn {
    width: 44px
  }

  .profile-btn {
    min-width: auto;
    padding: 0 9px
  }

  .profile-btn>span:nth-child(2),
  .profile-btn>i {
    display: none
  }

  .notification-menu {
    right: 55px
  }

  .dashboard-grid {
    display: block
  }

  .chart-card {
    height: 560px;
    margin-bottom: 10px
  }

  .signal-card,
  .right-stack,
  .bottom-card {
    margin-bottom: 10px
  }

  .right-stack {
    display: grid
  }

  .account-card,
  .performance-card,
  .sentiment-card {
    display: block
  }

  .shortcut-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .module-grid.four,
  .module-grid.three {
    grid-template-columns: repeat(2, 1fr)
  }

  .news-grid,
  .lesson-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:620px) {
  .v3-shell {
    grid-template-rows: 62px minmax(0, 1fr) 38px
  }

  .v3-topbar {
    height: 62px;
    padding: 0 8px
  }

  .v3-search-wrap {
    flex: 1;
    width: auto;
    height: 40px
  }

  .v3-search-wrap kbd {
    display: none
  }

  .v3-top-actions {
    height: 62px;
    position: static
  }

  .icon-btn {
    height: 62px;
    width: 40px
  }

  .profile-btn {
    height: 62px;
    min-width: 50px
  }

  .v3-main {
    padding: 8px
  }

  .market-strip {
    grid-template-columns: 1fr 1fr
  }

  .ticker {
    height: 62px
  }

  .dashboard-grid {
    display: block
  }

  .chart-card {
    height: 510px;
    grid-template-rows: 41px 48px minmax(0, 1fr) 95px 28px
  }

  .chart-controls button {
    padding: 8px 7px;
    min-width: 34px
  }

  .drawing-tools {
    display: none
  }

  .chart-controls,
  .chart-symbol-row,
  .chart-stage,
  .rsi-wrap,
  .chart-bottom {
    margin-left: 0
  }

  .chart-bottom {
    gap: 10px;
    overflow: hidden
  }

  .right-stack {
    display: block
  }

  .analysis-card,
  .news-card {
    margin-bottom: 10px
  }

  .shortcut-grid {
    grid-template-columns: 1fr 1fr
  }

  .module-heading {
    align-items: flex-start;
    flex-direction: column;
    padding: 6px 0
  }

  .module-grid.four,
  .module-grid.three,
  .module-grid.two,
  .news-grid,
  .lesson-grid {
    grid-template-columns: 1fr
  }

  .signal-tr {
    grid-template-columns: 70px 65px 1fr 75px
  }

  .signal-tr span:nth-child(5),
  .signal-tr span:nth-child(6),
  .signal-tr span:nth-child(7) {
    display: none
  }

  .calendar-item {
    grid-template-columns: 70px 60px 1fr auto
  }

  .calendar-item>*:nth-child(5) {
    display: none
  }

  .weight-row {
    grid-template-columns: 110px 1fr 55px
  }

  .v3-footer {
    grid-template-columns: 1fr 1fr;
    padding: 0 10px
  }

  .v3-footer blockquote {
    display: none
  }

  .v3-footer nav span {
    display: none
  }

  .notification-menu {
    position: fixed;
    top: 64px;
    right: 8px;
    width: calc(100% - 16px)
  }

  .profile-menu {
    top: 60px;
    right: 8px
  }

  .market-strip .date-card {
    grid-column: 1/3
  }

  .v3-toast {
    min-width: 220px;
    max-width: calc(100vw - 36px)
  }
}