.mp-page {
  --pp-bg: #080b18;
  --pp-surface: #0f1529;
  --pp-border: rgba(139, 92, 246, 0.12);
  --pp-purple: #8b5cf6;
  --pp-violet: #7c3aed;
  --pp-muted: #6b7ba4;
  --pp-glow: rgba(139, 92, 246, 0.25);
  --pp-text: #cbd5e1;
  --pp-white: #f8fafc;
  font-family: "Manrope", "Arial", sans-serif;
  background: var(--pp-bg) !important;
  color: var(--pp-text);
  --mp-purple: #8b5cf6;
  --mp-purple-deep: #6d28d9;
  --mp-purple-light: #a78bfa;
  --mp-border-soft: rgba(255, 255, 255, 0.06);

  --green: #00d68f;
  --green-bg: rgba(0, 214, 143, 0.1);
  --green-bd: rgba(0, 214, 143, 0.22);
  --red: #ff3860;
  --red-bg: rgba(255, 56, 96, 0.1);
  --red-bd: rgba(255, 56, 96, 0.22);
  --blue: #38bdf8;
  --blue-bg: rgba(56, 189, 248, 0.1);
  --amber: #fbbf24;
  --amber-bg: rgba(251, 191, 36, 0.1);
  --orange: #fb923c;
}

/* TICKER */
.tickerSlide-sec {
  padding: 75px 0 0;
}
.ticker-bar {
  border-bottom: 1px solid var(--pp-border);
  height: 45px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
}
.ticker-inner {
  display: flex;
  animation: tkScroll 55s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover {
  animation-play-state: paused;
}
@keyframes tkScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ti {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  font-size: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.ti-s {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ti-v {
  color: #6b7f9a;
}
.ti-c {
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
}
.ti-c.up {
  color: var(--green);
  background: var(--green-bg);
}
.ti-c.dn {
  color: var(--red);
  background: var(--red-bg);
}

.pg-mrkt-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 70px 0 20px;
}
.mp-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--pp-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mrkt-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 40%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hdr-mrkt-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.live-mrkt-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
  padding: 6px 14px;
  border-radius: 99px;
}
.mp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: dotP 1.8s ease-in-out infinite;
}
@keyframes dotP {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 214, 143, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 214, 143, 0);
  }
}
.clock-mrkt {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted2);
}

/* SECTION LABEL */
.sec-mp-hdr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.sec-mp-ttl {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-muted);
  white-space: nowrap;
}
.sec-mp-line {
  flex: 1;
  height: 1px;
  background: var(--pp-border);
}

/* SLIDER */
.sl-mrkt-wrap {
  margin-bottom: 40px;
}
.sl-mrkt-ctrls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sl-mrktBtn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pp-surface);
  border: 1px solid var(--mp-border-soft);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.sl-mrktBtn:hover {
  background: linear-gradient(135deg, var(--pp-violet), var(--mp-purple-light));
  border-color: var(--pp-violet);
  color: #fff;
  transform: scale(1.08);
}
.sl-mrkt-overflow {
  position: relative;
  overflow: hidden;
}
.sl-mrkt-overflow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}
.sl-mrkt-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 2px 10px;
}
.sl-mrkt-track::-webkit-scrollbar {
  display: none;
}

.mc-data {
  flex: 0 0 210px;
  min-width: 235px;
  background: var(--pp-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px 20px 18px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.mc-data::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: var(--ca, var(--green));
  opacity: 0.75;
}
.mc-data.up {
  --ca: var(--green);
}
.mc-data.dn {
  --ca: var(--red);
}
.mc-data:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.mc-data-lbl {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--pp-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mc-data-val {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}
.mc-data-chg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.mc-data-chg.up {
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid var(--green-bd);
}
.mc-data-chg.dn {
  color: var(--red);
  background: var(--red-bg);
  border: 1px solid var(--red-bd);
}
.mc-data-spark {
  display: block;
  width: 100%;
}

.eco-cal-section {
  padding: 100px 0;
  border-top: 1px solid var(--pp-border);
}

.fp-shd {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.fp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--pp-purple);
  margin-bottom: 18px;
}
.fp-tag .fp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pp-purple);
  animation: fp-blink 2s infinite;
}
@keyframes fp-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.fp-shd h2 {
  font-family: "Outfit", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--pp-white);
  margin-bottom: 16px;
}
.fp-shd p {
  font-size: 17px;
  color: var(--pp-muted);
  line-height: 1.65;
}

.economic-card {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
}

.eco-days-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-height: 400px;
  overflow: auto;
  scrollbar-width: none;
}

.eco-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eco-item {
  padding: 12px;
  border-radius: 7px;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(139, 92, 246, 0.08)
  );
  border-left: 3px solid;
  transition: all 0.18s;
  cursor: pointer;
}

.eco-item:hover {
  transform: translateY(-1px);
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(139, 92, 246, 0.2)
  );
}
.eco-item.high {
  border-left-color: var(--red);
}
.eco-item.medium {
  border-left-color: var(--green);
}
.eco-item.low {
  border-left-color: #64748b;
}

.eco-time {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 4px;
}

.eco-item.high .eco-time {
  color: var(--red);
}
.eco-item.medium .eco-time {
  color: var(--green);
}
.eco-item.low .eco-time {
  color: #64748b;
}

.eco-name {
  font-size: 12px;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}
.day-label {
  background: linear-gradient(135deg, var(--mp-purple-light), #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.eco-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid var(--pp-border);
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--pp-muted);
}

.earn-cal-section {
  padding: 100px 0;
  position: relative;
  border-bottom: 1px solid var(--pp-border);
}
.earn-cal-section::before {
    content: '';
    position: absolute;
    inset: 0px 0 auto;
    height: 330px;
    background: radial-gradient(circle at 16% 20%, rgba(139, 92, 246, 0.05), transparent 34%), radial-gradient(circle at 82% 22%, rgba(59, 130, 246, 0.1), transparent 26%);
    pointer-events: none;
}

/* ───── EARNINGS CALENDAR ───── */

/* ───── HIDDEN ───── */
.earnings-section {
  display: none;
}
.earnings-section.visible {
  display: block;
}

.earnings-card {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  padding: 20px 24px;
}

.ern-card-header , .eco-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--pp-muted);
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tab-btn {
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: unset;
  background: rgba(139, 92, 246, 0.2);
  color: #949fbb;
  transition: all 0.2s;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--pp-violet), var(--pp-purple));
  color: #fff;
  font-weight: 600;
}

.tab-btn:hover:not(.active) {
  color: #fff;
}

.icon-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(109,40,217,0.25), rgba(139,92,246,0.1));
    border: 1px solid rgba(139,92,246,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--pp-muted);
}
.icon-btn:hover {
    background: linear-gradient(135deg, rgba(109,40,217,0.3), rgba(139,92,246,0.15));
    border-color: rgba(139,92,246,0.35);
    color: #fff;
}

/* Days grid */
.days-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.day-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-muted);
  margin: 4px 0 2px;
}

.section-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.earnings-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: all 0.18s;
  cursor: pointer;
  max-width: 127px;
    width: 127px;
}

.earnings-item:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.earnings-item.beat {
  background: rgb(37 208 108 / 15%);
  border-color: rgb(37 208 108 / 25%);
}
.earnings-item.miss {
  background: rgb(223 58 58 / 20%);
  border-color: rgb(223 58 58 / 20%);
}
.earnings-item.meet {
  background: rgb(100 116 139 / 20%);
  border-color: rgb(100 116 139 / 40%);
}

.empty-data-sec {
    color: var(--pp-muted);
    font-size: 14px;
    padding: 20px;
    max-width: 127px;
    width: 127px;
}

/* earning new card */
.earnings-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.earnings-ticker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px;
    border-radius: 7px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.18s;
    cursor: pointer;
    max-width: 127px;
    width: 127px;
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    font-family: "JetBrains Mono", monospace;
}
.earnings-ticker:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}
.earningLogo {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: var(--pp-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.earningLogo img {
    width: 23px;
    height: 23px;
    object-fit: contain;
    padding: 2px;
}

/* end earning new card */





.ticker-badge {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: var(--pp-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.ticker-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  padding: 2px;
}

.ticker-info {
  flex: 1;
  min-width: 0;
}

.ticker-sym {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.earnings-item.miss .ticker-sym {
  color: var(--red);
}
.earnings-item.beat .ticker-sym {
  color: var(--green);
}

.ticker-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--pp-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
  width: 60px;
}

.result-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
}

.result-badge.beat {
  color: var(--green);
}
.result-badge.miss {
  color: var(--red);
}
.result-badge.meet {
  color: #a2aebf;
}
.mergCard-sec {
    border-top: 1px solid var(--pp-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.fri-mergCard {
    display: unset;
}
.preCard, .aftrCard {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.indicator-tab {
  /* border-top: 1px solid var(--pp-border); */
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

span.dot-indicate {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: block;
}

.market-intell-section {
  padding: 100px 0;
  position: relative;
}

.intell-mrkt-contin {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.intell-card {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  overflow: hidden;
}
.intell-card .ic-ttl {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pp-muted);
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--pp-border);
}

.fear-intell-body {
  padding: 25px;
}
/* Fear Greed */
.fg-wrap svg {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
}
.fg-vb {
  text-align: center;
  margin-top: 10px;
}
.fg-num {
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
.fg-lbl {
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.fg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 25px;
}
.fg-cell {
  background: #172032;
  border: 1px solid #242f46;
  border-radius: 8px;
  padding: 10px 12px;
}
/* .fg-cell {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(139, 92, 246, 0.08)
  );
  border: 1px solid var(--pp-border);
  border-radius: 8px;
  padding: 10px 12px;
} */
.fg-cl {
  font-size: 11px;
  color: var(--pp-muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.fg-cv {
  font-size: 20px;
  font-weight: 700;
}

/* ───── SECTOR PERFORMANCE ───── */
.sector-rows {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sector-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--pp-border);
    padding-bottom: 10px;
}
.sector-row:last-child {
    border-bottom:unset;
    padding-bottom: unset;
}

.sector-name {
  font-size: 13px;
  color: var(--pp-muted);
  width: 130px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: var(--surface3);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill.pos {
  background: var(--green);
}
.bar-fill.neg {
  background: var(--red);
}

.sector-pct {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  width: 54px;
  text-align: right;
  flex-shrink: 0;
}

.sector-pct.pos {
  color: var(--green);
}
.sector-pct.neg {
  color: var(--red);
}

.sector-header-icon {
  color: var(--cyan);
  font-size: 18px;
}

/* ===== FOOTER ===== */
.mp-page #footer.hp-footer {
  border-top: 1px solid var(--pp-border) !important;
  background: var(--pp-surface) !important;
  padding: 64px 0 40px !important;
  box-shadow: none !important;
}
.mp-page #footer.hp-footer .footersec {
  display: block !important;
}
.mp-page #footer.hp-footer .footer-link {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  gap: 60px !important;
  width: 100% !important;
  margin-bottom: 56px;
}
.mp-page #footer.hp-footer .footer-column h4 {
  font-family: "Outfit", sans-serif;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-purple) !important;
  margin-bottom: 16px;
}
.mp-page #footer.hp-footer .footer-brand-desc {
  color: var(--pp-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 230px;
  font-family: "Manrope", sans-serif;
}
.mp-page #footer.hp-footer .menulist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mp-page #footer.hp-footer .menulist li {
  padding: 0;
  margin: 0;
}
.mp-page #footer.hp-footer .menulist li a {
  color: var(--pp-muted) !important;
  font-size: 13px;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  transition: color 0.2s;
}
.mp-page #footer.hp-footer .menulist li a:hover {
  color: var(--pp-text) !important;
}
.mp-page #footer.hp-footer .ftr-social-icons {
  display: flex;
  gap: 10px;
}
.mp-page #footer.hp-footer .ftr-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(8, 11, 24, 0.8);
  border: 1px solid var(--pp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-muted);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 15px;
}
.mp-page #footer.hp-footer .ftr-social-icons a:hover {
  border-color: var(--pp-purple);
  color: var(--pp-purple);
}
.mp-page #footer.hp-footer .footer-bottom {
  border-top: 1px solid var(--pp-border);
  padding-top: 28px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mp-page #footer.hp-footer .footer-bottom p {
  color: var(--pp-muted);
  font-size: 12px;
  font-family: "Manrope", sans-serif;
  margin: 0;
}

.respons-mrkt-slide {
    display: none;
}






.Mrktmodal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,11,24,.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.Mrktmodal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mrktEcoModal {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: 16px;
    max-width: 70%;
    width: 100%;
    max-height: 80vh;
    overflow: auto;
    transform: scale(0.9) translateY(20px);
}
.mrktMdl-header {
    padding: 24px 24px 15px;
    border-bottom: 1px solid rgb(130 130 130 / 15%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.crossMrkt-btn{
  width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.25), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--pp-muted);
}
.mrktMdl-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}
.marketEco-bdy {
    padding: 25px;
}

.mrkt-trade-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eco-full-tabs {
    display: flex;
    gap: 10px;
    overflow: auto;
}
.eco-full-tab-btn {
    padding: 7px 16px;
    font-size: 15px;
    border: none;
    background: rgba(129, 95, 255, 0.2);
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    color: #ddd;
    transition: .3s;
}
.eco-full-tab-pane{
  display:none;
}

.eco-full-tab-pane.eco-full-show{
  display:block;
}
.eco-full-tab-btn.eco-full-active {
    background: #815fff;
    color: #fff;
    border-bottom: 1px solid #fff;
}


.eco-full-table-wrap {
    width: 100%;
    overflow-x: auto;
}
.tradeTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    position: relative;
}
.tradeTable th {
    background: linear-gradient(
119deg, #171f3ab3 0%, #171f3a 100%);
    padding: 12px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a0a0a5;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom:1px solid rgb(130 130 130 / 25%);
}
.tradeTable td {
    padding: 12px 8px;
    border-top: 1px solid rgb(65 79 124 / 50%);
    background: linear-gradient(135deg, #171f3ab3 0%, #171f3a 100%);
    position: relative;
    white-space: nowrap;
}
.tradeTable tbody tr:nth-child(even) td, .financial-table tbody tr:nth-child(even) td, .insiderData tbody tr:nth-child(even) td, .chart-data-table tbody tr:nth-child(even) td {
    background: linear-gradient(135deg, #171f3abf 0%, #19223e8c 100%);
}
.tradeTable tr:first-child td {
    border-top: unset;
}
td.cmpName-ttl {
    font-size: 15px;
    font-weight: 600;
}
.country-data , .estim-data {
    text-align: center;
}

td.country-data span {
    display: inline-block;
    background: #1a2040;
    border: 0.5px solid #2a3060;
    color: #7986cb;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}
td.estim-data span {
    color: #7ec8e3;
    font-size: 16px;
    font-weight: 700;
}



/* ===== RESPONSIVE ===== */

@media (max-width: 600px) {
  .mp-page #footer.hp-footer .footer-link {
    grid-template-columns: 1fr !important;
  }


  .eco-days-grid , .days-grid  {
    grid-template-columns: 1fr;
    gap: 25px;
}
.pg-mrkt-hdr {
    flex-direction: column;
    align-items: self-start;
    gap: 10px;
    padding: 50px 0 10px;
}
.hdr-mrkt-right {
    justify-content: space-between;
    width: 100%;
}
.sl-mrkt-ctrls {
    justify-content: end;
}
.economic-card {
    padding: 25px;
}
.ern-card-header {
    gap: 10px;
}
.intell-mrkt-contin {
    grid-template-columns: 1fr;
}
.sector-name {
    width: 100px;
}
.icon-btn {
    width: 28px;
    height: 28px;
    font-size: 13px;
}
.mrkt-trade-grid {
    overflow: hidden;
}
.mrktEcoModal {
    max-width: 100%;
}
.mrktMdl-title {
    font-size: 20px;
}
.crossMrkt-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
}
.mrktMdl-header {
    padding: 18px 18px 12px;
}
.marketEco-bdy {
    padding: 18px;
}

}

@media(min-width:601px) and (max-width:991px){
  .eco-days-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
 .days-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}
.intell-mrkt-contin {
    grid-template-columns: 1fr;
}
.mrktEcoModal {
    max-width: 100%;
}
.earnings-list {
    flex-wrap: wrap;
    flex-direction: unset;
}
.earnings-ticker {
    width: 100px;
}

}



@media (max-width: 960px) {
  .mp-page #footer.hp-footer .footer-link {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }
    .copy-logosec {
    grid-column: 1 / -1;
    width: 100%;
}
.mp-page #footer.hp-footer .footer-brand-desc {
    max-width: 100%;
}
}


@media(min-width:992px) and (max-width:1200px){
  .eco-days-grid , .days-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

}

@media(min-width:1201px) and (max-width:1400px){
.days-grid {
    grid-template-columns: repeat(3, 1fr);
}
.earnings-ticker {
    padding: 6px;
    font-size: 14px;
}

}
