/* =========================================================
   PUSHX SIGNALS V3 вЂ” PREMIUM TERMINAL
   ========================================================= */

.signals-page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px 34px 80px;
  isolation: isolate;
}

/* HERO */

.signals-hero {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 570px;
  align-items: center;
  overflow: hidden;
  padding: 38px 46px;
  border: 1px solid rgba(0, 255, 102, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 35%, rgba(0, 255, 102, 0.105), transparent 31%),
    radial-gradient(circle at 20% 105%, rgba(0, 255, 102, 0.055), transparent 36%),
    linear-gradient(118deg, rgba(7, 15, 10, 0.985), rgba(3, 10, 6, 0.96) 48%, rgba(2, 8, 5, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(0, 255, 102, 0.025),
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 55px rgba(0, 255, 102, 0.035);
}

.signals-hero::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -90px;
  width: 790px;
  height: 730px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(0, 255, 102, 0.30), rgba(0, 255, 102, 0.09) 31%, transparent 67%);
  filter: blur(2px);
  opacity: 0.88;
}

.signals-hero-copy {
  position: relative;
  z-index: 5;
  max-width: 680px;
}

.signals-kicker {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 255, 102, 0.16);
  border-radius: 8px;
  color: rgba(92, 255, 150, 0.96);
  background: rgba(0, 255, 102, 0.05);
  box-shadow: inset 0 0 18px rgba(0, 255, 102, 0.025);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.signals-hero h1 {
  margin: 0;
  color: #f5fff8;
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 760;
  line-height: 0.97;
  letter-spacing: -0.052em;
}

.signals-hero h1 span {
  color: #45ff87;
  text-shadow:
    0 0 22px rgba(0, 255, 102, 0.22),
    0 0 55px rgba(0, 255, 102, 0.08);
}

.signals-hero-copy > p {
  max-width: 590px;
  margin: 21px 0 0;
  color: rgba(224, 238, 229, 0.59);
  font-size: 14px;
  line-height: 1.72;
}

.signals-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.signals-hero-tags span {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(0, 255, 102, 0.16);
  border-radius: 8px;
  color: rgba(222, 255, 232, 0.70);
  background:
    linear-gradient(180deg, rgba(0, 255, 102, 0.065), rgba(0, 255, 102, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

/* RADAR */

.signals-radar {
  position: relative;
  width: 430px;
  height: 300px;
  justify-self: center;
  pointer-events: none;
}

.signals-radar-grid {
  position: absolute;
  inset: -50px;
  opacity: 0.2;
  background-image:
    linear-gradient(
      rgba(0, 255, 102, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0, 255, 102, 0.07) 1px,
      transparent 1px
    );
  background-size: 30px 30px;
  mask-image: radial-gradient(circle, black, transparent 70%);
}

.signals-radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 255, 102, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signals-radar-ring-one {
  width: 250px;
  height: 250px;
}

.signals-radar-ring-two {
  width: 180px;
  height: 180px;
  opacity: 0.7;
}

.signals-radar-ring-three {
  width: 105px;
  height: 105px;
  opacity: 0.55;
}

.signals-radar-cross {
  position: absolute;
  top: 50%;
  left: 50%;
}

.signals-radar-cross-x {
  width: 320px;
  height: 1px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0, 255, 102, 0.2),
      transparent
    );
}

.signals-radar-cross-y {
  width: 1px;
  height: 290px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(
      transparent,
      rgba(0, 255, 102, 0.2),
      transparent
    );
}

.signals-radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125px;
  height: 125px;
  transform-origin: 0 0;
  border-top: 1px solid rgba(0, 255, 102, 0.9);
  background:
    linear-gradient(
      135deg,
      rgba(0, 255, 102, 0.14),
      transparent 62%
    );
  clip-path: polygon(0 0, 100% 0, 0 100%);
  animation: signalsRadarSweep 4.4s linear infinite;
}

.signals-radar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 255, 102, 0.46);
  border-radius: 50%;
  color: #00ff66;
  background:
    radial-gradient(
      circle,
      rgba(0, 255, 102, 0.2),
      rgba(0, 255, 102, 0.04)
    );
  box-shadow:
    0 0 28px rgba(0, 255, 102, 0.18),
    inset 0 0 20px rgba(0, 255, 102, 0.08);
  transform: translate(-50%, -50%);
  animation: signalsCorePulse 2.5s ease-in-out infinite;
}

.signals-radar-point {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00ff66;
  box-shadow:
    0 0 10px #00ff66,
    0 0 22px rgba(0, 255, 102, 0.55);
}

.signals-radar-point-one {
  top: 72px;
  left: 284px;
}

.signals-radar-point-two {
  top: 206px;
  left: 120px;
}

.signals-radar-point-three {
  top: 190px;
  right: 72px;
}

.signals-radar-chip {
  position: absolute;
  z-index: 4;
  top: 39px;
  left: 18px;
  min-height: 37px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid rgba(0, 255, 102, 0.14);
  border-radius: 8px;
  color: rgba(225, 255, 232, 0.54);
  background: rgba(3, 10, 6, 0.9);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  animation: signalsFloat 3.5s ease-in-out infinite;
}

.signals-radar-chip strong {
  color: #00ff66;
}

.signals-radar-chip span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00ff66;
  box-shadow: 0 0 8px rgba(0, 255, 102, 0.9);
}

/* OPTIONS / FUTURES */

.signals-tabs {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 6px;
  margin-top: 16px;
  padding: 6px;
  border: 1px solid rgba(0, 255, 102, 0.10);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(8, 15, 10, 0.94), rgba(4, 10, 6, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 12px 34px rgba(0, 0, 0, 0.18);
}

.signals-tab {
  position: relative;
  min-height: 56px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  color: rgba(235, 243, 233, 0.48);
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.signals-tab strong {
  font-size: 13px;
  font-weight: 720;
}

.signals-tab-active {
  color: #effff4;
  background:
    radial-gradient(circle at 50% 130%, rgba(0, 255, 102, 0.22), transparent 58%),
    linear-gradient(135deg, rgba(0, 255, 102, 0.19), rgba(0, 255, 102, 0.065));
  box-shadow:
    inset 0 0 0 1px rgba(0, 255, 102, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 0 32px rgba(0, 255, 102, 0.075);
}

.signals-tab-soon {
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* WORKSPACE */

.signals-workspace {
  display: grid;
  grid-template-columns:
    minmax(310px, 0.72fr)
    minmax(0, 1.28fr);
  gap: 14px;
  margin-top: 14px;
}

.signals-control-panel,
.signals-main-panel,
.signals-history-preview,
.signals-futures-soon {
  border: 1px solid rgba(0, 255, 102, 0.15);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(0, 255, 102, 0.055),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(7, 15, 10, 0.97),
      rgba(3, 9, 6, 0.985)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.028),
    inset 0 0 42px rgba(0, 255, 102, 0.012),
    0 18px 55px rgba(0, 0, 0, 0.2),
    0 0 38px rgba(0, 255, 102, 0.025);
}

.signals-control-panel {
  position: relative;
  z-index: 20;
  padding: 23px;
  overflow: visible;
}

.signals-panel-head,
.signals-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.signals-panel-head span,
.signals-history-head > div > span {
  color: rgba(72, 255, 137, 0.76);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.signals-panel-head h2,
.signals-history-head h2 {
  margin: 5px 0 0;
  color: rgba(248, 252, 247, 0.9);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.signals-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(0, 255, 102, 0.24);
  border-radius: 7px;
  color: rgba(101, 255, 156, 0.92);
  background: rgba(0, 255, 102, 0.06);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.045);
  font-size: 7px;
  font-weight: 800;
}

.signals-live-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00ff66;
  box-shadow: 0 0 8px rgba(0, 255, 102, 0.85);
}

/* MARKET SWITCH */

.signals-market-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin-top: 22px;
  padding: 4px;
  border: 1px solid rgba(0, 255, 102, 0.095);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.20);
  box-shadow: inset 0 1px 12px rgba(0, 0, 0, 0.20);
}

.signals-market-switch button {
  min-height: 37px;
  border: 0;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.28);
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.signals-market-switch .signals-market-switch-active {
  color: #e8fff0;
  background:
    linear-gradient(135deg, rgba(0, 255, 102, 0.18), rgba(0, 255, 102, 0.07));
  box-shadow:
    inset 0 0 0 1px rgba(0, 255, 102, 0.20),
    0 0 20px rgba(0, 255, 102, 0.055);
}

/* FIELDS */

.signals-fields {
  position: relative;
  z-index: 80;

  display: grid;
  gap: 17px;
  margin-top: 19px;

  overflow: visible;
}

.signals-field {
  position: relative;
  display: grid;
  gap: 9px;
}

.signals-field:first-child {
  z-index: 20;
}

.signals-field:nth-child(2) {
  z-index: 10;
}

.signals-field > span {
  color: rgba(235, 243, 233, 0.46);
  font-size: 10px;
  font-weight: 650;
}

.signals-custom-select {
  position: relative;
  z-index: 100;
}

.signals-select-trigger {
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 255, 102, 0.105);
  border-radius: 11px;
  outline: none;
  color: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.038), rgba(0, 255, 102, 0.028));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    inset 0 0 20px rgba(0, 255, 102, 0.012);
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.signals-select-trigger:hover {
  border-color: rgba(0, 255, 102, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(0, 255, 102, 0.045));
  box-shadow: 0 0 22px rgba(0, 255, 102, 0.035);
}

.signals-select-trigger:disabled {
  opacity: 0.5;
  cursor: wait;
}

.signals-pair-selected,
.signals-expiration-selected {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.signals-pair-selected > div:last-child,
.signals-expiration-selected > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.signals-pair-selected strong,
.signals-expiration-selected strong {
  overflow: hidden;
  color: rgba(247, 252, 247, 0.86);
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signals-pair-selected small,
.signals-expiration-selected small {
  color: rgba(255, 255, 255, 0.25);
  font-size: 9px;
}

.signals-expiration-selected > svg {
  flex: 0 0 auto;
  color: #00ff66;
}

.signals-pair-flags {
  position: relative;
  width: 42px;
  height: 28px;
  flex: 0 0 auto;
}

.signals-pair-flags span {
  position: absolute;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid #07100a;
  border-radius: 50%;
  background: #0a120c;
  font-size: 17px;
  line-height: 1;
}

.signals-pair-flags span:first-child {
  left: 0;
  z-index: 2;
}

.signals-pair-flags span:last-child {
  right: 0;
  z-index: 1;
}

.signals-select-chevron {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 180ms ease;
}

.signals-select-chevron-open {
  transform: rotate(180deg);
}

/* CUSTOM DROPDOWN */

.signals-select-menu {
  position: absolute;
  z-index: 2000;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(0, 255, 102, 0.24);
  border-radius: 11px;
  background: rgba(3, 10, 6, 0.99);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.78),
    0 0 38px rgba(0, 255, 102, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(24px);
}

.signals-select-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px 8px;
}

.signals-select-menu-head span {
  color: rgba(0, 255, 102, 0.57);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.signals-select-menu-head small {
  color: rgba(255, 255, 255, 0.2);
  font-size: 7px;
}

.signals-select-scroll {
  max-height: 295px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.signals-select-scroll::-webkit-scrollbar {
  width: 4px;
}

.signals-select-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 255, 102, 0.18);
}

.signals-select-option {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 0;
  border-radius: 8px;
  color: rgba(240, 247, 239, 0.6);
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.signals-select-option:hover {
  background: rgba(0, 255, 102, 0.04);
}

.signals-select-option-active {
  color: rgba(246, 255, 248, 0.94);
  background:
    linear-gradient(90deg, rgba(0, 255, 102, 0.16), rgba(0, 255, 102, 0.035));
  box-shadow: inset 2px 0 0 rgba(0, 255, 102, 0.72);
}

.signals-select-option > svg {
  flex: 0 0 auto;
  color: #00ff66;
}

.signals-select-option-copy {
  min-width: 0;
  flex: 1;
  display: grid;
  gap: 2px;
}

.signals-select-option-copy strong {
  color: rgba(247, 251, 246, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.signals-select-option-copy span {
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  font-weight: 700;
}

.signals-select-option > small {
  color: rgba(0, 255, 102, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.signals-settings-error {
  margin-top: 13px;
  padding: 11px;
  border: 1px solid rgba(255, 96, 96, 0.13);
  border-radius: 8px;
  color: rgba(255, 165, 165, 0.74);
  background: rgba(255, 70, 70, 0.035);
  font-size: 8px;
  line-height: 1.5;
}

/* ENGINE */

.signals-scan-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 102, 0.14);
  border-radius: 10px;
  color: rgba(76, 255, 140, 0.82);
  background:
    linear-gradient(100deg, rgba(0, 255, 102, 0.07), rgba(0, 255, 102, 0.018));
  box-shadow: inset 0 0 26px rgba(0, 255, 102, 0.018);
}

.signals-scan-info > div {
  display: grid;
  gap: 3px;
}

.signals-scan-info strong {
  color: rgba(239, 250, 240, 0.72);
  font-size: 13px;
}

.signals-scan-info span {
  color: rgba(235, 243, 233, 0.31);
  font-size: 10px;
  line-height: 1.5;
}

.signals-scan-info > i {
  position: absolute;
  right: -7px;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(0, 255, 102, 0.09);
  border-radius: 50%;
}

.signals-generate {
  width: 100%;
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 15px;
  border: 1px solid rgba(96, 255, 151, 0.78);
  border-radius: 10px;
  color: #031009;
  background:
    linear-gradient(135deg, #15ff70 0%, #65ff9d 52%, #2dff7b 100%);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(0, 255, 102, 0.12),
    0 0 34px rgba(0, 255, 102, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.signals-generate:not(:disabled):hover {
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.03);
  box-shadow:
    0 13px 32px rgba(0, 255, 102, 0.15),
    0 0 42px rgba(0, 255, 102, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.signals-generate:disabled {
  opacity: 0.55;
  cursor: wait;
}

.signals-demo-note {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 7px;
  line-height: 1.5;
  text-align: center;
}

/* MAIN */

.signals-main-panel {
  min-height: 540px;
  display: flex;
  overflow: hidden;
  position: relative;
}

.signals-empty-state,
.signals-analyzing {
  width: 100%;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px;
  text-align: center;
}

.signals-empty-visual {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 24px rgba(0, 255, 102, 0.08));
}

.signals-empty-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 255, 102, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signals-empty-ring-one {
  width: 145px;
  height: 145px;
  animation: signalsEmptyPulse 3s ease-in-out infinite;
}

.signals-empty-ring-two {
  width: 95px;
  height: 95px;
}

.signals-empty-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 255, 102, 0.48);
  border-radius: 50%;
  color: #31ff79;
  background:
    radial-gradient(circle, rgba(0, 255, 102, 0.18), rgba(0, 255, 102, 0.055));
  box-shadow:
    0 0 34px rgba(0, 255, 102, 0.18),
    inset 0 0 24px rgba(0, 255, 102, 0.10);
  transform: translate(-50%, -50%);
}

.signals-empty-state > span,
.signals-analyzing > span {
  color: rgba(0, 255, 102, 0.57);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.signals-empty-state h2,
.signals-analyzing h2 {
  margin: 9px 0 0;
  color: rgba(247, 252, 247, 0.9);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.signals-empty-state p,
.signals-analyzing p {
  max-width: 370px;
  margin: 11px 0 0;
  color: rgba(235, 243, 233, 0.38);
  font-size: 10px;
  line-height: 1.7;
}

/* ANALYZING */

.signals-analyzing-radar {
  position: relative;
  width: 135px;
  height: 135px;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 255, 102, 0.19);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(0, 255, 102, 0.08),
      transparent 65%
    );
}

.signals-analyzing-radar div {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(0, 255, 102, 0.13);
  border-radius: 50%;
}

.signals-analyzing-radar span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: #00ff66;
  opacity: 0.06;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px #00ff66;
}

.signals-analyzing-radar i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, #00ff66, transparent);
  animation: signalsAnalyzeSpin 1.7s linear infinite;
}

.signals-analysis-lines {
  width: 180px;
  display: grid;
  gap: 7px;
  margin-top: 23px;
}

.signals-analysis-lines i {
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(0, 255, 102, 0.08);
}

.signals-analysis-lines i::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00ff66, transparent);
  animation: signalsScanLine 1.3s ease-in-out infinite;
}

/* ACTIVE SIGNAL */

.signals-active-card {
  width: 100%;
  padding: 27px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 255, 102, 0.11), transparent 37%),
    linear-gradient(145deg, rgba(7, 15, 9, 0.28), rgba(0, 0, 0, 0.04));
}

.signals-active-card.signals-active-up {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 255, 102, 0.11),
      transparent 40%
    );
}

.signals-active-card.signals-active-down {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 62, 62, 0.115),
      transparent 40%
    );
}

.signals-symbol-icon-up {
  border-color: rgba(0, 255, 102, 0.24);
  color: #00ff66;
  background: rgba(0, 255, 102, 0.07);
}

.signals-symbol-icon-down {
  border-color: rgba(255, 76, 76, 0.25);
  color: #ff6666;
  background: rgba(255, 65, 65, 0.07);
}

.signals-active-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.signals-symbol {
  display: flex;
  align-items: center;
  gap: 11px;
}

.signals-symbol-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 255, 102, 0.21);
  border-radius: 10px;
  color: #00ff66;
  background: rgba(0, 255, 102, 0.06);
}

.signals-symbol > div:last-child {
  display: grid;
  gap: 4px;
}

.signals-symbol span {
  color: rgba(0, 255, 102, 0.5);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.signals-symbol strong {
  color: rgba(248, 252, 247, 0.92);
  font-size: 17px;
}

.signals-direction {
  min-width: 118px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 7px 8px;
  border-radius: 11px;
}

.signals-direction-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.signals-direction-copy {
  display: grid;
  gap: 1px;
}

.signals-direction-copy span {
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.signals-direction-copy strong {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.035em;
}

.signals-direction-up {
  border: 1px solid rgba(0, 255, 102, 0.32);
  color: #72ffa5;
  background:
    linear-gradient(
      135deg,
      rgba(0, 255, 102, 0.16),
      rgba(0, 255, 102, 0.055)
    );
  box-shadow:
    inset 0 0 0 1px rgba(0, 255, 102, 0.035),
    0 0 28px rgba(0, 255, 102, 0.08);
}

.signals-direction-up .signals-direction-icon {
  color: #07120b;
  background: #00ff66;
  box-shadow:
    0 0 18px rgba(0, 255, 102, 0.28);
}

.signals-direction-down {
  border: 1px solid rgba(255, 78, 78, 0.34);
  color: #ff8b8b;
  background:
    linear-gradient(
      135deg,
      rgba(255, 64, 64, 0.17),
      rgba(255, 64, 64, 0.055)
    );
  box-shadow:
    inset 0 0 0 1px rgba(255, 70, 70, 0.035),
    0 0 28px rgba(255, 55, 55, 0.08);
}

.signals-direction-down .signals-direction-icon {
  color: #160707;
  background: #ff5555;
  box-shadow:
    0 0 18px rgba(255, 73, 73, 0.28);
}

.signals-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding: 17px 19px;
  border: 1px solid rgba(0, 255, 102, 0.20);
  border-radius: 11px;
  color: rgba(84, 255, 145, 0.82);
  background:
    linear-gradient(90deg, rgba(0, 255, 102, 0.11), rgba(0, 255, 102, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 0 28px rgba(0, 255, 102, 0.045);
}

.signals-countdown > div {
  display: grid;
  gap: 3px;
}

.signals-countdown span {
  color: rgba(0, 255, 102, 0.46);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.signals-countdown strong {
  color: #dfffea;
  font-size: 26px;
  font-variant-numeric: tabular-nums;
}

.signals-progress {
  margin-top: 19px;
}

.signals-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.signals-progress-head span {
  color: rgba(255, 255, 255, 0.28);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.signals-progress-head strong {
  color: rgba(0, 255, 102, 0.78);
  font-size: 9px;
}

.signals-progress-track {
  height: 7px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 102, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.35);
}

.signals-progress-fill {
  position: relative;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      #00b94b,
      #00ff66,
      #9bffbc
    );
  box-shadow: 0 0 14px rgba(0, 255, 102, 0.25);
  transition: width 200ms linear;
}

.signals-progress-fill i {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #baffce;
  box-shadow: 0 0 10px #00ff66;
  transform: translateY(-50%);
}

.signals-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.signals-data-grid > div {
  min-width: 0;
  padding: 15px 14px;
  border: 1px solid rgba(0, 255, 102, 0.085);
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.028), rgba(0, 255, 102, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.signals-data-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 600;
}

.signals-data-grid strong {
  display: block;
  margin-top: 7px;
  overflow: hidden;
  color: rgba(246, 250, 245, 0.9);
  font-size: 16px;
  font-weight: 740;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.signals-positive {
  color: #58ff94 !important;
}

.signals-analysis-card {
  margin-top: 15px;
  padding: 17px;
  border: 1px solid rgba(0, 255, 102, 0.13);
  border-radius: 11px;
  background:
    linear-gradient(135deg, rgba(0, 255, 102, 0.045), rgba(0, 255, 102, 0.012));
  box-shadow: inset 0 0 30px rgba(0, 255, 102, 0.01);
}

.signals-analysis-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.signals-analysis-head > div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(0, 255, 102, 0.73);
}

.signals-analysis-head > div span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.signals-analysis-status {
  padding: 4px 6px;
  border: 1px solid rgba(0, 255, 102, 0.1);
  border-radius: 5px;
  color: rgba(0, 255, 102, 0.5);
  font-size: 7px;
  font-weight: 800;
}

.signals-analysis-card p {
  margin: 12px 0 0;
  color: rgba(232, 241, 232, 0.5);
  font-size: 10px;
  line-height: 1.75;
}

.signals-result-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.signals-result-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.signals-result-banner > div:last-child {
  display: grid;
  gap: 2px;
}

.signals-result-banner span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.signals-result-banner strong {
  font-size: 23px;
  font-weight: 850;
  letter-spacing: 0.015em;
}

.signals-result-banner-win {
  border-color: rgba(0, 255, 102, 0.2);
  background:
    linear-gradient(
      90deg,
      rgba(0, 255, 102, 0.09),
      rgba(0, 255, 102, 0.025)
    );
}

.signals-result-banner-win span {
  color: rgba(0, 255, 102, 0.55);
}

.signals-result-banner-win strong {
  color: #58ff94;
}

.signals-result-icon-win {
  color: #061009;
  background: #00ff66;
  box-shadow:
    0 0 26px rgba(0, 255, 102, 0.28);
}

.signals-result-banner-loss {
  border-color: rgba(255, 73, 73, 0.24);
  background:
    linear-gradient(
      90deg,
      rgba(255, 61, 61, 0.11),
      rgba(255, 61, 61, 0.025)
    );
}

.signals-result-banner-loss span {
  color: rgba(255, 115, 115, 0.65);
}

.signals-result-banner-loss strong {
  color: #ff6868;
}

.signals-result-icon-loss {
  color: #180707;
  background: #ff5555;
  box-shadow:
    0 0 26px rgba(255, 73, 73, 0.25);
}

.signals-result-banner-draw {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.018)
    );
}

.signals-result-banner-draw span {
  color: rgba(255, 255, 255, 0.35);
}

.signals-result-banner-draw strong {
  color: rgba(245, 248, 245, 0.82);
}

.signals-result-icon-draw {
  color: #dce4de;
  background: rgba(255, 255, 255, 0.1);
}

.signals-next-button {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
  padding: 0 13px;
  border: 1px solid rgba(0, 255, 102, 0.22);
  border-radius: 8px;
  color: rgba(229, 255, 238, 0.86);
  background: rgba(0, 255, 102, 0.07);
  box-shadow: inset 0 0 18px rgba(0, 255, 102, 0.018);
  font: inherit;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.signals-next-button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 255, 102, 0.34);
  background: rgba(0, 255, 102, 0.10);
}

.signals-analysis-toggle {
  width: 100%;
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding: 0 12px;
  border: 1px solid rgba(0, 255, 102, 0.14);
  border-radius: 8px;
  color: rgba(228, 255, 237, 0.82);
  background: rgba(0, 255, 102, 0.045);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.signals-analysis-toggle-icon {
  transition: transform 220ms ease;
}

.signals-analysis-toggle-icon-open {
  transform: rotate(180deg);
}

.signals-analysis-details {
  max-height: 0;
  overflow: hidden;

  opacity: 0;

  transition:
    max-height 450ms ease,
    opacity 250ms ease,
    margin 250ms ease;
}

.signals-analysis-details-open {
  max-height: 1200px;

  margin-top: 15px;

  opacity: 1;
}

.signals-indicator-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 7px;
}

.signals-indicator-grid > div {
  min-width: 0;

  padding: 11px;

  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.015);
}

.signals-indicator-grid span {
  display: block;

  color: rgba(255, 255, 255, 0.3);

  font-size: 8px;
  font-weight: 650;
}

.signals-indicator-grid strong {
  display: block;

  margin-top: 5px;

  overflow: hidden;

  color: rgba(245, 250, 245, 0.82);

  font-size: 11px;

  text-overflow: ellipsis;
}

.signals-reasons {
  display: grid;

  gap: 8px;

  margin-top: 13px;
}

.signals-reasons > div {
  display: flex;
  align-items: flex-start;

  gap: 9px;

  color: rgba(232, 241, 232, 0.52);

  font-size: 10px;
  line-height: 1.55;
}

.signals-reasons i {
  width: 5px;
  height: 5px;

  flex: 0 0 auto;

  margin-top: 5px;

  border-radius: 50%;

  background: #00ff66;

  box-shadow:
    0 0 8px rgba(0, 255, 102, 0.45);
}

.signals-no-entry {
  max-width: 390px;

  display: flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 18px;
  padding: 12px 14px;

  border: 1px solid rgba(0, 255, 102, 0.1);
  border-radius: 9px;

  color: rgba(225, 244, 230, 0.62);
  background: rgba(0, 255, 102, 0.025);

  font-size: 11px;
  line-height: 1.5;

  text-align: left;
}

.signals-no-entry svg {
  flex: 0 0 auto;

  color: #00ff66;
}

.signals-result-checking {
  color: #00ff66;

  background: rgba(0, 255, 102, 0.08);
}

@media (max-width: 560px) {
  .signals-indicator-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

/* FOREX CHART */

.signals-forex-chart-card {
  position: relative;

  margin-top: 15px;

  overflow: hidden;

  border:
    1px solid
    rgba(0, 255, 102, 0.13);

  border-radius: 12px;

  background:
    radial-gradient(
      circle at 88% 0%,
      rgba(0, 255, 102, 0.06),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(5, 13, 8, 0.98),
      rgba(2, 8, 5, 0.99)
    );

  box-shadow:
    inset 0 1px 0
      rgba(255, 255, 255, 0.025),
    inset 0 0 45px
      rgba(0, 255, 102, 0.012),
    0 14px 40px
      rgba(0, 0, 0, 0.18);
}

.signals-forex-chart-card::before {
  content: "";

  position: absolute;

  z-index: 0;

  top: -80px;
  right: -70px;

  width: 220px;
  height: 180px;

  border-radius: 50%;

  background:
    rgba(
      0,
      255,
      102,
      0.06
    );

  filter: blur(65px);

  pointer-events: none;
}

.signals-forex-chart-head {
  position: relative;

  z-index: 3;

  min-height: 62px;

  display: flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 16px;

  padding:
    12px 15px;

  border-bottom:
    1px solid
    rgba(
      255,
      255,
      255,
      0.045
    );
}

.signals-forex-chart-head > div:first-child {
  min-width: 0;

  display: grid;

  gap: 4px;
}

.signals-forex-chart-kicker {
  display: flex;

  align-items: center;

  gap: 5px;

  color:
    rgba(
      0,
      255,
      102,
      0.60
    );

  font-size: 7px;

  font-weight: 850;

  letter-spacing:
    0.14em;
}

.signals-forex-chart-kicker svg {
  color:
    #00ff66;
}

.signals-forex-chart-head > div:first-child > strong {
  overflow: hidden;

  color:
    rgba(
      248,
      252,
      247,
      0.92
    );

  font-size: 15px;

  font-weight: 760;

  text-overflow:
    ellipsis;

  white-space:
    nowrap;
}

.signals-forex-chart-status {
  flex: 0 0 auto;

  display: flex;

  align-items: center;

  gap: 8px;

  min-height: 31px;

  padding:
    0 9px;

  border:
    1px solid
    rgba(
      0,
      255,
      102,
      0.13
    );

  border-radius: 8px;

  background:
    rgba(
      0,
      255,
      102,
      0.035
    );
}

.signals-forex-chart-status > span {
  color:
    rgba(
      255,
      255,
      255,
      0.34
    );

  font-size: 8px;

  font-weight: 850;
}

.signals-forex-chart-status > i {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background:
    #00ff66;

  box-shadow:
    0 0 9px
    rgba(
      0,
      255,
      102,
      0.85
    );

  animation:
    signalsChartLive
    1.8s
    ease-in-out
    infinite;
}

.signals-forex-chart-status > strong {
  color:
    rgba(
      220,
      255,
      232,
      0.82
    );

  font-size: 10px;

  font-weight: 760;

  font-variant-numeric:
    tabular-nums;
}

.signals-forex-chart-shell {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 330px;

  background:
    linear-gradient(
      180deg,
      rgba(
        0,
        255,
        102,
        0.008
      ),
      transparent
    );
}

.signals-forex-chart {
  width: 100%;

  height: 100%;
}

.signals-forex-chart-loading {
  position: absolute;

  z-index: 10;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content:
    center;

  gap: 9px;

  color:
    rgba(
      0,
      255,
      102,
      0.55
    );

  background:
    rgba(
      3,
      10,
      6,
      0.76
    );

  backdrop-filter:
    blur(7px);

  font-size: 8px;

  font-weight: 850;

  letter-spacing:
    0.15em;
}

.signals-forex-chart-loading i {
  width: 12px;
  height: 12px;

  border:
    1px solid
    rgba(
      0,
      255,
      102,
      0.2
    );

  border-top-color:
    #00ff66;

  border-radius: 50%;

  animation:
    signalsSpin
    0.8s linear
    infinite;
}

.signals-forex-chart-error {
  position: absolute;

  z-index: 10;

  inset: 0;

  display: grid;

  place-items: center;

  color:
    rgba(
      255,
      255,
      255,
      0.38
    );

  background:
    rgba(
      3,
      10,
      6,
      0.88
    );

  font-size: 10px;
}

.signals-forex-chart-footer {
  position: relative;

  z-index: 3;

  min-height: 34px;

  display: flex;

  align-items: center;

  justify-content:
    space-between;

  gap: 12px;

  padding:
    0 14px;

  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.04
    );

  color:
    rgba(
      255,
      255,
      255,
      0.20
    );

  font-size: 7px;

  letter-spacing:
    0.06em;
}

.signals-forex-chart-footer a {
  color:
    rgba(
      255,
      255,
      255,
      0.28
    );

  text-decoration:
    none;
}

.signals-forex-chart-footer a:hover {
  color:
    rgba(
      0,
      255,
      102,
      0.65
    );
}

@keyframes signalsChartLive {
  0%,
  100% {
    opacity: 0.45;

    transform:
      scale(0.85);
  }

  50% {
    opacity: 1;

    transform:
      scale(1.15);
  }
}

@media (max-width: 760px) {
  .signals-forex-chart-shell {
    height: 270px;
  }

  .signals-forex-chart-head {
    min-height: 56px;

    padding:
      10px 11px;
  }

  .signals-forex-chart-head > div:first-child > strong {
    font-size: 13px;
  }

  .signals-forex-chart-status {
    gap: 6px;

    padding:
      0 7px;
  }

  .signals-forex-chart-status > strong {
    font-size: 9px;
  }

  .signals-forex-chart-footer {
    padding:
      0 10px;
  }
}

@media (max-width: 480px) {
  .signals-forex-chart-shell {
    height: 245px;
  }
}

/* HISTORY */

.signals-history-preview {
  margin-top: 14px;
  padding: 23px;
  position: relative;
  overflow: hidden;
}

.signals-history-preview::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 180px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: rgba(0, 255, 102, 0.085);
  filter: blur(70px);
  pointer-events: none;
}

.signals-history-all {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 9px;
  border: 1px solid rgba(0, 255, 102, 0.14);
  border-radius: 7px;
  color: rgba(91, 255, 148, 0.86);
  background: rgba(0, 255, 102, 0.045);
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.signals-history-empty {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 17px;
  border: 1px dashed rgba(0, 255, 102, 0.17);
  border-radius: 11px;
  background:
    linear-gradient(100deg, rgba(0, 255, 102, 0.035), rgba(0, 255, 102, 0.012));
}

.signals-history-empty > div {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 255, 102, 0.11);
  border-radius: 9px;
  color: rgba(0, 255, 102, 0.62);
  background: rgba(0, 255, 102, 0.035);
}

.signals-history-empty section {
  display: grid;
  gap: 4px;
}

.signals-history-empty strong {
  color: rgba(244, 249, 243, 0.7);
  font-size: 13px;
}

.signals-history-empty span {
  color: rgba(255, 255, 255, 0.27);
  font-size: 10px;
  line-height: 1.55;
}

/* FUTURES */

.signals-futures-soon {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 40px;
  text-align: center;
}

.signals-soon-visual {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 27px;
}

.signals-soon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 255, 102, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signals-soon-ring-one {
  width: 145px;
  height: 145px;
}

.signals-soon-ring-two {
  width: 100px;
  height: 100px;
}

.signals-soon-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 255, 102, 0.42);
  border-radius: 16px;
  color: #31ff79;
  background:
    linear-gradient(145deg, rgba(0, 255, 102, 0.14), rgba(0, 255, 102, 0.04));
  box-shadow:
    0 0 40px rgba(0, 255, 102, 0.15),
    inset 0 0 20px rgba(0, 255, 102, 0.06);
  transform: translate(-50%, -50%);
}

.signals-futures-soon > span {
  color: rgba(0, 255, 102, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.signals-futures-soon h2 {
  margin: 10px 0 0;
  color: rgba(246, 251, 245, 0.91);
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.signals-futures-soon h2 strong {
  color: #00ff66;
}

.signals-futures-soon p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(235, 243, 233, 0.35);
  font-size: 10px;
  line-height: 1.7;
}

/* CONFETTI */

.signals-confetti {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}

.signals-confetti i {
  position: absolute;
  top: -55px;
  width: 7px;
  height: 15px;
  border-radius: 2px 5px 2px 5px;
  opacity: 0;
  background: #00ff66;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation-name: signalsConfettiFall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.signals-confetti i:nth-child(2n) {
  width: 9px;
  height: 4px;
  background: #a1ffbf;
}

.signals-confetti i:nth-child(3n) {
  width: 5px;
  height: 9px;
  background: #27ff75;
}

/* ANIMATIONS */

.signals-spinner {
  animation: signalsSpin 0.8s linear infinite;
}

@keyframes signalsRadarSweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes signalsCorePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 0 42px rgba(0, 255, 102, 0.25);
  }
}

@keyframes signalsFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(5px, -5px, 0);
  }
}

@keyframes signalsEmptyPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.07);
    opacity: 1;
  }
}

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

@keyframes signalsScanLine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(260%);
  }
}

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

@keyframes signalsConfettiFall {
  0% {
    opacity: 0;
    transform: translate3d(0, -30px, 0) rotate(0deg);
  }

  4% {
    opacity: 1;
  }

  72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform:
      translate3d(var(--confetti-drift, 0px), calc(100vh + 120px), 0)
      rotate(var(--confetti-rotation, 720deg));
  }
}



/* TABLET */

@media (max-width: 1280px) {
  .signals-hero {
    grid-template-columns: minmax(0, 1fr) 440px;
  }

  .signals-radar {
    transform: scale(0.9);
  }
}

@media (max-width: 1050px) {
  .signals-workspace {
    grid-template-columns: 1fr;
  }
}

/* VERTICAL / MOBILE / NARROW */

@media (max-width: 820px) {
  .signals-page {
    padding: 24px 17px 60px;
  }

  .signals-hero {
    min-height: 330px;
    display: block;
    padding: 27px 23px;
    border-radius: 19px;
  }

  .signals-hero-copy {
    z-index: 7;
    max-width: 72%;
  }

  .signals-kicker {
    font-size: 9px;
  }

  .signals-hero h1 {
    font-size: 39px;
  }

  .signals-hero-copy > p {
    max-width: 310px;
    font-size: 10px;
  }

  .signals-hero-tags {
    max-width: 300px;
    gap: 6px;
    margin-top: 18px;
  }

  .signals-hero-tags span {
    min-height: 27px;
    padding: 0 8px;
    font-size: 6px;
  }

  /*
    РўРµРїРµСЂСЊ СЂР°РґР°СЂ РЅРµ Р·Р°РЅРёРјР°РµС‚ РѕС‚РґРµР»СЊРЅСѓСЋ
    РїРѕР»РѕРІРёРЅСѓ hero. РћРЅ РґРµРєРѕСЂР°С‚РёРІРЅРѕ РІРёСЃРёС‚
    СЃРїСЂР°РІР°, РєР°Рє РїР»Р°РЅРµС‚Р° Dashboard.
  */

  .signals-radar {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: -92px;
    width: 320px;
    height: 280px;
    opacity: 0.48;
    transform: scale(0.68);
    transform-origin: center;
  }

  .signals-radar-chip {
    top: 27px;
    left: 25px;
  }

  .signals-tabs {
    margin-top: 11px;
  }

  .signals-tab {
    min-height: 58px;
    gap: 9px;
  }

  .signals-tab strong {
    font-size: 14px;
  }

  .signals-tab svg {
    width: 21px;
    height: 21px;
  }

  .signals-tab-soon {
    font-size: 7px;
  }

  .signals-workspace {
    gap: 10px;
    margin-top: 10px;
  }

  .signals-control-panel {
    padding: 18px;
  }

  .signals-main-panel,
  .signals-empty-state,
  .signals-analyzing {
    min-height: 450px;
  }

  .signals-active-card {
    padding: 19px;
  }

  .signals-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signals-data-grid span {
    font-size: 9px;
  }

  .signals-data-grid strong {
    font-size: 14px;
  }

  .signals-history-preview {
    margin-top: 10px;
    padding: 18px;
  }

  .signals-futures-soon {
    min-height: 460px;
    margin-top: 10px;
  }
}

@media (max-width: 560px) {
  .signals-hero {
    min-height: 294px;
    padding: 24px 20px;
  }

  .signals-hero-copy {
    max-width: 77%;
  }

  .signals-hero h1 {
    font-size: 35px;
  }

  .signals-hero-copy > p {
    max-width: 270px;
    font-size: 9px;
    line-height: 1.6;
  }

  .signals-hero-tags span:nth-child(3) {
    display: none;
  }

  .signals-radar {
    top: 34px;
    right: -111px;
    opacity: 0.4;
    transform: scale(0.61);
  }

  .signals-radar-chip {
    display: none;
  }

  .signals-tab {
    min-height: 56px;
  }

  .signals-tab strong {
    font-size: 13px;
  }

  .signals-tab-soon {
    padding: 3px 5px;
    font-size: 6px;
  }

  .signals-pair-selected strong,
.signals-expiration-selected strong {
  font-size: 14px;
}

  .signals-select-menu {
  z-index: 2000;
}

  .signals-data-grid > div {
    padding: 13px 12px;
  }

    .signals-data-grid span {
    font-size: 10px;
  }

  .signals-data-grid strong {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signals-radar-sweep,
  .signals-radar-core,
  .signals-radar-chip,
  .signals-empty-ring,
  .signals-analyzing-radar i,
  .signals-analysis-lines i::after,
  .signals-spinner,
  .signals-confetti i {
    animation: none !important;
  }
}

/* SIGNAL HISTORY PAGE */

.signals-history-page {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 0 70px;
}

.signals-history-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.signals-history-page-head > div:first-child {
  max-width: 620px;
}

.signals-history-page-head > div:first-child > span {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(0, 255, 102, 0.16);
  border-radius: 7px;
  color: #54ff91;
  background: rgba(0, 255, 102, 0.045);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.signals-history-page-head h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.signals-history-page-head h1 strong {
  color: #45ff87;
  font-weight: 700;
  text-shadow: 0 0 28px rgba(0, 255, 102, 0.14);
}

.signals-history-page-head p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.65;
}

.signals-history-page-head .signals-next-button {
  width: auto;
  min-width: 210px;
  margin: 0;
  flex-shrink: 0;
}

.signals-history-list {
  display: grid;
  gap: 14px;
}

.signals-history-item {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  border: 1px solid rgba(0, 255, 102, 0.11);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 255, 102, 0.05), transparent 31%),
    linear-gradient(135deg, rgba(9, 17, 11, 0.95), rgba(4, 10, 6, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 15px 42px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(12px);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.signals-history-item:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 255, 102, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 48px rgba(0, 0, 0, 0.20);
}

.signals-history-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  opacity: 0.9;
}

.signals-history-item-win::before {
  background: var(--pushx-green);
  box-shadow: 0 0 18px var(--pushx-green);
}

.signals-history-item-loss::before {
  background: #ff4d5d;
  box-shadow: 0 0 18px rgba(255, 77, 93, 0.55);
}

.signals-history-item-draw::before {
  background: rgba(255, 255, 255, 0.45);
}

.signals-history-item-main {
  display: flex;
  align-items: center;
  gap: 13px;
}

.signals-history-direction {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 13px;
}

.signals-history-direction-up {
  color: var(--pushx-green);
  border: 1px solid rgba(0, 255, 102, 0.2);
  background: rgba(0, 255, 102, 0.08);
}

.signals-history-direction-down {
  color: #ff5362;
  border: 1px solid rgba(255, 83, 98, 0.2);
  background: rgba(255, 83, 98, 0.08);
}

.signals-history-symbol {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.signals-history-symbol span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.signals-history-direction-up + .signals-history-symbol span {
  color: rgba(0, 255, 102, 0.7);
}

.signals-history-direction-down + .signals-history-symbol span {
  color: rgba(255, 83, 98, 0.75);
}

.signals-history-symbol strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
}

.signals-history-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.signals-history-metrics > div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(0, 255, 102, 0.075);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.022);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.signals-history-metrics span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.signals-history-metrics strong {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signals-history-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
}

.signals-history-time {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
}

.signals-history-result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 78px;
  padding: 7px 11px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.signals-history-result-win {
  color: var(--pushx-green);
  border: 1px solid rgba(0, 255, 102, 0.2);
  background: rgba(0, 255, 102, 0.08);
}

.signals-history-result-loss {
  color: #ff5362;
  border: 1px solid rgba(255, 83, 98, 0.2);
  background: rgba(255, 83, 98, 0.08);
}

.signals-history-result-draw {
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 760px) {
  .signals-history-page {
    padding:
      22px
      0
      56px;
  }

  .signals-history-page-head {
    display: block;
    margin-bottom: 22px;
  }

  .signals-history-page-head h1 {
    font-size: 43px;
  }

  .signals-history-page-head p {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.55;
  }

  .signals-history-page-head .signals-next-button {
    width: 100%;
    min-width: 0;
    margin-top: 20px;
  }

  .signals-history-item {
    padding: 17px;
    border-radius: 17px;
  }

  .signals-history-direction {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }

  .signals-history-symbol strong {
    font-size: 17px;
  }

  .signals-history-metrics {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
    gap: 8px;
    margin-top: 16px;
  }

  .signals-history-metrics > div {
    padding: 11px 12px;
  }

  .signals-history-metrics > div:last-child {
    grid-column:
      1 / -1;
  }

  .signals-history-metrics strong {
    font-size: 13px;
  }

  .signals-history-item-footer {
    margin-top: 13px;
  }
}

/* =========================================================
   RECENT SIGNALS
   ========================================================= */

.signals-recent-list {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.signals-recent-item {
  position: relative;

  overflow: hidden;

  padding: 16px 17px;

  border:
    1px solid
    rgba(0, 255, 102, 0.11);

  border-radius: 15px;

  background:
    radial-gradient(
      circle at 94% 0%,
      rgba(0, 255, 102, 0.055),
      transparent 35%
    ),
    rgba(2, 9, 5, 0.66);

  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.signals-recent-item:hover {
  transform:
    translateY(-1px);

  border-color:
    rgba(0, 255, 102, 0.22);

  background:
    radial-gradient(
      circle at 94% 0%,
      rgba(0, 255, 102, 0.09),
      transparent 37%
    ),
    rgba(3, 12, 7, 0.76);
}

.signals-recent-item::before {
  content: "";

  position: absolute;

  top: 13px;
  bottom: 13px;
  left: 0;

  width: 2px;

  border-radius:
    0 4px 4px 0;
}

.signals-recent-item-win::before {
  background:
    #00ff66;

  box-shadow:
    0 0 14px
    rgba(0, 255, 102, 0.6);
}

.signals-recent-item-loss::before {
  background:
    #ff5362;

  box-shadow:
    0 0 14px
    rgba(255, 83, 98, 0.48);
}

.signals-recent-item-draw::before {
  background:
    rgba(255, 255, 255, 0.45);
}

.signals-recent-main {
  display: flex;

  align-items: center;

  gap: 11px;
}

.signals-recent-direction {
  width: 36px;
  height: 36px;

  flex:
    0 0 36px;

  display: grid;

  place-items: center;

  border-radius: 10px;
}

.signals-recent-direction-up {
  color:
    #00ff66;

  border:
    1px solid
    rgba(0, 255, 102, 0.18);

  background:
    rgba(0, 255, 102, 0.07);
}

.signals-recent-direction-down {
  color:
    #ff5362;

  border:
    1px solid
    rgba(255, 83, 98, 0.18);

  background:
    rgba(255, 83, 98, 0.07);
}

.signals-recent-symbol {
  min-width: 0;

  display: flex;

  flex-direction: column;

  gap: 3px;
}

.signals-recent-symbol span {
  color:
    rgba(0, 255, 102, 0.62);

  font-size: 8px;

  font-weight: 800;

  letter-spacing:
    0.09em;
}

.signals-recent-symbol strong {
  overflow: hidden;

  color:
    rgba(255, 255, 255, 0.93);

  font-size: 14px;

  font-weight: 700;

  text-overflow:
    ellipsis;

  white-space: nowrap;
}

.signals-recent-result {
  margin-left: auto;

  padding:
    6px 9px;

  border-radius: 8px;

  font-size: 9px;

  font-weight: 900;

  letter-spacing:
    0.08em;
}

.signals-recent-result-win {
  color:
    #00ff66;

  border:
    1px solid
    rgba(0, 255, 102, 0.2);

  background:
    rgba(0, 255, 102, 0.07);
}

.signals-recent-result-loss {
  color:
    #ff6572;

  border:
    1px solid
    rgba(255, 83, 98, 0.2);

  background:
    rgba(255, 83, 98, 0.07);
}

.signals-recent-result-draw {
  color:
    rgba(255, 255, 255, 0.65);

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  background:
    rgba(255, 255, 255, 0.035);
}

.signals-recent-details {
  display: grid;

  grid-template-columns:
    repeat(
      5,
      minmax(0, 1fr)
    );

  gap: 6px;

  margin-top: 13px;
}

.signals-recent-details > div {
  min-width: 0;

  padding:
    9px 10px;

  border:
    1px solid
    rgba(255, 255, 255, 0.045);

  border-radius: 9px;

  background:
    rgba(255, 255, 255, 0.018);
}

.signals-recent-details span {
  display: block;

  margin-bottom: 4px;

  color:
    rgba(255, 255, 255, 0.3);

  font-size: 7px;

  font-weight: 700;

  text-transform:
    uppercase;

  letter-spacing:
    0.06em;
}

.signals-recent-details strong {
  display: block;

  overflow: hidden;

  color:
    rgba(255, 255, 255, 0.77);

  font-size: 10px;

  font-weight: 650;

  white-space: nowrap;

  text-overflow:
    ellipsis;
}

.signals-recent-time {
  display: flex;

  align-items: center;

  gap: 5px;

  margin-top: 10px;

  color:
    rgba(255, 255, 255, 0.26);

  font-size: 9px;
}

@media (max-width: 760px) {
  .signals-recent-item {
    padding:
      14px;
  }

  .signals-recent-details {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }

  .signals-recent-details > div:last-child {
    grid-column:
      1 / -1;
  }
}

/* =========================================================
   PUSHX SIGNALS — COMPACT RECENT HISTORY / MOBILE
   ========================================================= */

@media (max-width: 680px) {
  .signals-history-preview {
    padding:
      17px 14px
      14px;
  }

  .signals-history-head {
    margin-bottom:
      12px;
  }

  .signals-recent-list {
    gap: 7px;
  }

  .signals-recent-item {
    padding:
      10px 11px;

    border-radius:
      12px;
  }

  .signals-recent-main {
    display: grid;

    grid-template-columns:
      31px
      minmax(0, 1fr)
      auto;

    align-items: center;

    gap: 9px;
  }

  .signals-recent-direction {
    width: 31px;
    height: 31px;

    border-radius:
      9px;
  }

  .signals-recent-direction svg {
    width: 15px;
    height: 15px;
  }

  .signals-recent-symbol {
    min-width: 0;

    display: flex;
    flex-direction: row;
    align-items: baseline;

    gap: 7px;
  }

  .signals-recent-symbol span {
    order: 2;

    font-size: 7px;

    white-space:
      nowrap;

    opacity: 0.48;
  }

  .signals-recent-symbol strong {
    order: 1;

    overflow: hidden;

    font-size: 11px;

    white-space:
      nowrap;

    text-overflow:
      ellipsis;
  }

  .signals-recent-result {
    min-width: 43px;

    padding:
      5px 7px;

    border-radius:
      7px;

    font-size: 9px;
  }

  .signals-recent-details {
    display: flex;

    align-items: center;

    gap: 0;

    margin:
      8px 0 0
      40px;

    padding-top:
      7px;

    border-top:
      1px solid
      rgba(
        255,
        255,
        255,
        0.045
      );

    overflow: hidden;
  }

  .signals-recent-details > div {
    min-width: 0;

    display: flex;
    flex-direction: row;

    align-items:
      baseline;

    gap: 3px;

    padding-right:
      8px;

    margin-right:
      8px;

    border-right:
      1px solid
      rgba(
        255,
        255,
        255,
        0.055
      );
  }

  .signals-recent-details > div:last-child {
    padding-right: 0;
    margin-right: 0;

    border-right: 0;
  }

  .signals-recent-details span {
    display: none;
  }

  .signals-recent-details strong {
    font-size: 8px;

    white-space:
      nowrap;

    color:
      rgba(
        235,
        244,
        237,
        0.64
      );
  }

  .signals-recent-details > div:nth-child(1) strong::before {
    content:
      "E ";

    color:
      rgba(
        255,
        255,
        255,
        0.25
      );
  }

  .signals-recent-details > div:nth-child(2) strong::before {
    content:
      "C ";

    color:
      rgba(
        255,
        255,
        255,
        0.25
      );
  }

  .signals-recent-details > div:nth-child(3) strong::before {
    content:
      "T ";

    color:
      rgba(
        255,
        255,
        255,
        0.25
      );
  }

  .signals-recent-details > div:nth-child(4) strong::before {
    content:
      "Q ";

    color:
      rgba(
        255,
        255,
        255,
        0.25
      );
  }

  .signals-recent-details > div:nth-child(5) strong::before {
    content:
      "P ";

    color:
      rgba(
        255,
        255,
        255,
        0.25
      );
  }

  .signals-recent-time {
    margin:
      6px 0 0
      40px;

    font-size: 7px;

    opacity: 0.38;
  }

  .signals-recent-time svg {
    width: 10px;
    height: 10px;
  }
}

/* =========================================================
   PUSHX — FULL SIGNAL HISTORY / FINAL
   ========================================================= */
.signals-page.signals-history-screen {
  max-width: 1500px;

  padding-top: 0 !important;
  padding-bottom: 0 !important;

  margin-top: -28px;
  margin-bottom: -68px;
}

.signals-history-page {
  width: 100%;
  max-width: 1180px;

  margin: 0 auto;

  padding:
    0 0
    10px !important;
}


/* HERO */

.signals-history-page-head {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(340px, 1.12fr);

  align-items: center;

  gap: 34px;

  min-height: 270px;

  margin:
  -30px 0
  14px !important;
}

.signals-history-hero-copy {
  position: relative;

  z-index: 3;
}

.signals-history-hero-copy > span {
  display:
    inline-flex !important;

  align-items: center;

  min-height: 31px;

  margin:
    0 0
    10px !important;

  padding:
    0 11px;

  border:
    1px solid
    rgba(
      0,
      255,
      102,
      0.25
    );

  border-radius:
    8px;

  background:
    rgba(
      0,
      255,
      102,
      0.035
    );

  color:
    var(--pushx-green) !important;

  font-size:
    10px !important;

  font-weight:
    850 !important;

  letter-spacing:
    0.16em !important;

  box-shadow:
    inset 0 0 20px
    rgba(
      0,
      255,
      102,
      0.02
    );
}

.signals-history-page-head h1 {
  margin: 0 !important;

  color:
    #ffffff;

  font-size:
    clamp(
      48px,
      5.1vw,
      74px
    ) !important;

  font-weight:
    500;

  line-height:
    0.88 !important;

  letter-spacing:
    -0.06em;
}

.signals-history-page-head h1 strong {
  color:
    var(--pushx-green);

  font-weight:
    760;

  text-shadow:
    0 0 28px
    rgba(
      0,
      255,
      102,
      0.12
    );
}

.signals-history-page-head p {
  max-width:
    490px;

  margin:
    17px 0
    0 !important;

  color:
    rgba(
      255,
      255,
      255,
      0.46
    );

  font-size:
    14px !important;

  line-height:
    1.5 !important;
}


/* HERO VISUAL */

.signals-history-hero-visual {
  position: relative;

  width: 100%;
  height: 220px;

  overflow: visible;

  background:
    transparent;
}

.signals-history-hero-glow {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 340px;
height: 260px;

  transform:
    translate(
      -50%,
      -50%
    );

  border-radius:
    50%;

  background:
    radial-gradient(
      circle,
      rgba(
        0,
        255,
        102,
        0.09
      ),
      rgba(
        0,
        255,
        102,
        0.015
      ) 55%,
      transparent 72%
    );

  filter:
  blur(18px);

  animation:
    signalHistoryGlow
    4s ease-in-out
    infinite;
}

.signals-history-hero-core {
  position: absolute;

  z-index: 6;

  top: 50%;
  left: 50%;

  display: flex;

  flex-direction:
    column;

  align-items:
    center;

  transform:
    translate(
      -50%,
      -50%
    );
}

.signals-history-hero-core-inner {
  width: 92px;
  height: 92px;

  display: grid;

  place-items:
    center;

  border:
    1px solid
    rgba(
      0,
      255,
      102,
      0.26
    );

  border-radius:
    50%;

  color:
    var(--pushx-green);

  background:
    rgba(
      3,
      12,
      7,
      0.92
    );

  box-shadow:
    0 0 45px
    rgba(
      0,
      255,
      102,
      0.08
    ),
    inset 0 0 30px
    rgba(
      0,
      255,
      102,
      0.04
    );
}

.signals-history-hero-core-inner svg {
  filter:
    drop-shadow(
      0 0 12px
      rgba(
        0,
        255,
        102,
        0.35
      )
    );
}

.signals-history-hero-core > span {
  margin-top:
    11px;

  color:
    rgba(
      255,
      255,
      255,
      0.31
    );

  font-size:
    7px;

  font-weight:
    800;

  letter-spacing:
    0.22em;
}

.signals-history-hero-core > strong {
  margin-top:
    4px;

  color:
    var(--pushx-green);

  font-size:
    10px;

  letter-spacing:
    0.14em;

  text-shadow:
    0 0 12px
    rgba(
      0,
      255,
      102,
      0.3
    );
}

.signals-history-hero-orbit {
  position: absolute;

  top: 50%;
  left: 50%;

  border:
    1px solid
    rgba(
      0,
      255,
      102,
      0.12
    );

  border-radius:
    50%;
}

.signals-history-hero-orbit-one {
  width: 330px;
  height: 115px;

  transform:
    translate(
      -50%,
      -50%
    )
    rotate(-13deg);

  animation:
    signalHistoryOrbitOne
    11s ease-in-out
    infinite;
}

.signals-history-hero-orbit-two {
  width: 280px;
  height: 170px;

  opacity: 0.6;

  transform:
    translate(
      -50%,
      -50%
    )
    rotate(23deg);

  animation:
    signalHistoryOrbitTwo
    14s ease-in-out
    infinite;
}

.signals-history-hero-float {
  position: absolute;

  z-index: 7;

  display:
    inline-flex;

  align-items:
    center;

  gap: 6px;

  min-height: 30px;

  padding:
    0 9px;

  border:
    1px solid
    rgba(
      0,
      255,
      102,
      0.16
    );

  border-radius:
    8px;

  background:
    rgba(
      3,
      12,
      7,
      0.86
    );

  color:
    rgba(
      235,
      255,
      241,
      0.6
    );

  font-size:
    8px;

  font-weight:
    800;

  letter-spacing:
    0.08em;

  box-shadow:
    0 10px 30px
    rgba(
      0,
      0,
      0,
      0.22
    );
}

.signals-history-hero-float svg {
  color:
    var(--pushx-green);
}

.signals-history-hero-float-one {
  top: 32px;
  left: 7%;
}

.signals-history-hero-float-two {
  top: 47px;
  right: 4%;
}

.signals-history-hero-float-three {
  left: 11%;
  bottom: 28px;
}

.signals-history-hero-dot {
  position: absolute;

  z-index: 5;

  width: 5px;
  height: 5px;

  border-radius:
    50%;

  background:
    var(--pushx-green);

  box-shadow:
    0 0 10px
    rgba(
      0,
      255,
      102,
      0.7
    );

  animation:
    signalHistoryDot
    2.8s ease-in-out
    infinite;
}

.signals-history-hero-dot-one {
  top: 43px;
  left: 38%;
}

.signals-history-hero-dot-two {
  top: 56%;
  right: 15%;
}

.signals-history-hero-dot-three {
  bottom: 36px;
  left: 43%;

  animation-delay:
    -1.2s;
}


/* BACK BUTTON */

.signals-history-page-head
  .signals-next-button {
  position: absolute;

  right: 0;
  bottom: 0;

  width: auto !important;

  min-width:
    210px !important;

  min-height:
    42px !important;

  margin: 0 !important;

  padding:
    0 17px !important;
}


/* LIST */

.signals-history-list {
  display: grid;

  gap:
    10px !important;

  margin:
    0 !important;

  padding:
    0 !important;
}

.signals-history-item {
  padding:
    15px 17px !important;

  border-radius:
    16px !important;
}

.signals-history-item-main {
  gap:
    11px !important;
}

.signals-history-direction {
  width:
    38px !important;

  height:
    38px !important;

  min-width:
    38px !important;

  flex:
    0 0 38px !important;

  border-radius:
    11px !important;
}

.signals-history-direction svg {
  width:
    19px !important;

  height:
    19px !important;
}

.signals-history-symbol span {
  font-size:
    9px !important;
}

.signals-history-symbol strong {
  font-size:
    16px !important;

  line-height:
    1.1 !important;
}


/* ALL FIVE METRICS — SAME WIDTH */

.signals-history-metrics {
  display: grid !important;

  grid-template-columns:
    repeat(
      5,
      minmax(
        0,
        1fr
      )
    ) !important;

  gap:
    8px !important;

  width:
    100% !important;

  margin-top:
    13px !important;
}

.signals-history-metrics > div {
  width:
    100% !important;

  min-width:
    0 !important;

  padding:
    9px 10px !important;

  border-radius:
    10px !important;
}

.signals-history-metrics span {
  display:
    block;

  margin-bottom:
    4px !important;

  font-size:
    8px !important;
}

.signals-history-metrics strong {
  display:
    block;

  font-size:
    12px !important;

  line-height:
    1.2 !important;

  white-space:
    nowrap;

  overflow:
    hidden;

  text-overflow:
    ellipsis;
}

.signals-history-item-footer {
  margin-top:
    11px !important;
}

.signals-history-time {
  font-size:
    10px !important;
}

.signals-history-result {
  min-width:
    72px !important;

  padding:
    6px 9px !important;

  font-size:
    10px !important;
}


/* ANIMATIONS */

@keyframes signalHistoryGlow {
  0%,
  100% {
    opacity: 0.58;

    transform:
      translate(
        -50%,
        -50%
      )
      scale(0.94);
  }

  50% {
    opacity: 1;

    transform:
      translate(
        -50%,
        -50%
      )
      scale(1.04);
  }
}

@keyframes signalHistoryOrbitOne {
  0%,
  100% {
    transform:
      translate(
        -50%,
        -50%
      )
      rotate(-13deg);
  }

  50% {
    transform:
      translate(
        -50%,
        -50%
      )
      rotate(-7deg);
  }
}

@keyframes signalHistoryOrbitTwo {
  0%,
  100% {
    transform:
      translate(
        -50%,
        -50%
      )
      rotate(23deg);
  }

  50% {
    transform:
      translate(
        -50%,
        -50%
      )
      rotate(29deg);
  }
}

@keyframes signalHistoryDot {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}


/* =========================================================
   NARROW LAPTOP / TABLET
   ========================================================= */

@media (
  max-width: 980px
) {

  .signals-history-page-head {
    grid-template-columns:
      minmax(
        0,
        0.95fr
      )
      minmax(
        270px,
        1.05fr
      );

    min-height:
      230px;

    gap:
      20px;
  }

  .signals-history-page-head h1 {
    font-size:
      48px !important;
  }

  .signals-history-hero-visual {
    height:
      190px;
  }

  .signals-history-hero-orbit-one {
    width:
      260px;

    height:
      92px;
  }

  .signals-history-hero-orbit-two {
    width:
      220px;

    height:
      140px;
  }

  .signals-history-page-head
    .signals-next-button {
    min-width:
      190px !important;
  }

  .signals-history-metrics {
  grid-template-columns:
    repeat(
      4,
      minmax(
        0,
        1fr
      )
    ) !important;

  gap:
    6px !important;
}

.signals-history-metrics > div {
  grid-column:
    auto !important;
}

.signals-history-metrics > div:last-child {
  grid-column:
    1 / -1 !important;
}

  .signals-history-metrics > div {
    padding:
      8px 6px !important;
  }

  .signals-history-metrics span {
    font-size:
      7px !important;
  }

  .signals-history-metrics strong {
    font-size:
      10px !important;
  }
}


/* =========================================================
   PHONE
   ========================================================= */

@media (
  max-width: 760px
) {

.signals-page.signals-history-screen {
  margin-top: -12px;
  margin-bottom: -54px;
}

  .signals-history-page {
    padding:
      0 0
      14px !important;
  }

  .signals-history-page-head {
    display: block;

    min-height:
      0;

    margin:
  0 0
  12px !important;
  }

  .signals-history-hero-copy {
    position: relative;

    z-index: 4;

    padding-top:
      4px;
  }

  .signals-history-hero-copy > span {
    min-height:
      28px;

    margin-bottom:
      8px !important;

    padding:
      0 9px;

    font-size:
      8px !important;
  }

  .signals-history-page-head h1 {
    font-size:
      40px !important;

    line-height:
      0.9 !important;
  }

  .signals-history-page-head p {
    max-width:
      77%;

    margin-top:
      11px !important;

    font-size:
      11px !important;

    line-height:
      1.4 !important;
  }


  /* smaller decorative visual on phone */

  .signals-history-hero-visual {
    position: absolute;

    z-index: 1;

    top: -8px;
    right: -26px;

    width:
      185px;

    height:
      180px;

    opacity:
      0.74;

    pointer-events:
      none;
  }

  .signals-history-hero-core-inner {
    width:
      58px;

    height:
      58px;
  }

  .signals-history-hero-core-inner svg {
    width:
      23px;

    height:
      23px;
  }

  .signals-history-hero-core > span,
  .signals-history-hero-core > strong,
  .signals-history-hero-float {
    display:
      none;
  }

  .signals-history-hero-orbit-one {
    width:
      165px;

    height:
      62px;
  }

  .signals-history-hero-orbit-two {
    width:
      128px;

    height:
      94px;
  }


  /* button */

  .signals-history-page-head
    .signals-next-button {
    position:
      relative;

    right: auto;
    bottom: auto;

    width:
      100% !important;

    min-width:
      0 !important;

    min-height:
      40px !important;

    margin-top:
      13px !important;
  }


  /* cards */

  .signals-history-list {
    gap:
      8px !important;
  }

  .signals-history-item {
    padding:
      11px 12px !important;

    border-radius:
      13px !important;
  }

  .signals-history-direction {
    width:
      33px !important;

    height:
      33px !important;

    min-width:
      33px !important;

    flex:
      0 0 33px !important;
  }

  .signals-history-direction svg {
    width:
      16px !important;

    height:
      16px !important;
  }

  .signals-history-symbol span {
    font-size:
      7px !important;
  }

  .signals-history-symbol strong {
    font-size:
      14px !important;
  }


  /* five equal metric cells */

  .signals-history-metrics {
  display: grid !important;

  grid-template-columns:
    repeat(
      4,
      minmax(
        0,
        1fr
      )
    ) !important;

  gap:
    4px !important;

  width:
    100% !important;

  margin-top:
    9px !important;
}

.signals-history-metrics > div {
  grid-column:
    auto !important;
}

.signals-history-metrics > div:last-child {
  grid-column:
    1 / -1 !important;
}

  .signals-history-metrics > div {
    width:
      100% !important;

    min-width:
      0 !important;

    padding:
      7px 3px !important;

    border-radius:
      8px !important;

    text-align:
      center;
  }

  .signals-history-metrics span {
    margin-bottom:
      3px !important;

    font-size:
      5.7px !important;

    letter-spacing:
      0 !important;

    white-space:
      nowrap;
  }

  .signals-history-metrics strong {
    font-size:
      8.5px !important;

    line-height:
      1.15 !important;
  }

  .signals-history-item-footer {
    margin-top:
      8px !important;
  }

  .signals-history-time {
    font-size:
      8px !important;
  }

  .signals-history-result {
    min-width:
      57px !important;

    padding:
      5px 7px !important;

    font-size:
      8px !important;
  }
}


@media (
  prefers-reduced-motion:
  reduce
) {

  .signals-history-hero-glow,
  .signals-history-hero-orbit,
  .signals-history-hero-dot {
    animation:
      none !important;
  }
}