.ark_trade_jan_para {
  font-size: 13.9px;
  line-height: 23.48px;
  text-align: justify;
  margin-bottom: 12px;
  color: #4b5675;
  padding: 0 22px;
  font-weight: 400;
  font-family: system-ui;
}

.ark_trade_jan_h2 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
  padding: 0 22px;
  line-height: 2.12rem;
  font-family: system-ui;
}

.ark_trade_jan_h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
  padding-top: 20px;
  line-height: 2.12rem;
  font-family: system-ui;
}

/* SECTION 1: VALUES CARDS */
.ark_trade_jan_value_card {
  background: #fffafa;
  border-radius: 20px;
  border: none;
  transition: transform 0.3s ease;
}

.ark_trade_jan_icon_box {
  color: #e95726;
  width: 45px;
  margin-left: 22px;
}

/* SECTION 2: TIMELINE OFFSET CARDS */
.ark_trade_jan_step_row {
  transition: all 0.4s ease;
}

.ark_trade_jan_big_num {
  font-size: 5rem;
  font-weight: 900;
  color: #f1f3f5;
  line-height: 1;
  transition: color 0.4s ease;
}

.ark_trade_jan_card {
  border-left: 5px solid #e95726 !important;
  border: 1px solid #eef0f2;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ark_trade_jan_step_label {
  margin-left: 22px;
  font-size: 11px;
  font-weight: 800;
  color: #e95726;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ark_trade_jan_step_row:hover .ark_trade_jan_card {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(233, 87, 38, 0.1);
  border-color: #e95726;
}

.ark_trade_jan_step_row:hover .ark_trade_jan_big_num {
  color: #e95726;
  opacity: 0.2;
}

/* SECTION 3: REPLICA COMPARISON TABLE */
.ark_trade_jan_table_container {
  border: 1px solid #eff2f5;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.ark_trade_jan_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.ark_trade_jan_table th {
  padding: 25px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  border-bottom: 1px solid #eff2f5;
}

.ark_trade_jan_table th:first-child {
  background-color: #f8fafc;
}

.ark_trade_jan_table td {
  padding: 20px 25px;
  border-bottom: 1px solid #eff2f5;
  vertical-align: middle;
  font-size: 12px;
  color: #4b5675;
}

.ark_trade_jan_row_header {
  background-color: #f8fafc;
  font-weight: 600;
  color: #2d3748;
  width: 280px;
}

.ark_trade_jan_icon_circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}

.ark_trade_jan_bg_red {
  background-color: #fca5a5;
}
.ark_trade_jan_bg_green {
  background-color: #e95726;
} /* Using your orange for the check */

.ark_trade_jan_row_label_icon {
  width: 20px;
  margin-right: 10px;
  color: #fff !important;
}
/* WRAPPER SCOPE */
.throxy-wrapper {
  --theme-orange: #e75227;
  --theme-bg-light: #fff8f6;
  --bg-dark: #111111;
  --text-muted: #b0b0b0;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--bg-dark);
  height: 650px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TYPOGRAPHY */
.throxy-wrapper .h1_ark {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  padding-top: 20px;
  border: transparent;
  line-height: 2.12rem;
  font-family: system-ui;
}

.throxy-wrapper .ark_para {
  font-size: 13.9px;
  line-height: 23.48px;
  text-align: justify;
  margin-bottom: 25px;
  color: var(--text-muted);
  padding: 0 22px 0 0;
  word-spacing: normal;
  font-weight: 400;
  font-family: system-ui;
  max-width: 480px;
}

/* LAYOUT */
.throxy-wrapper .split-layout {
  height: 100%;
  display: flex;
}

.throxy-wrapper .left-panel {
  background-color: var(--bg-dark);
  padding: 0 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}

.throxy-wrapper .right-panel {
  background-color: var(--theme-bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* BUTTON */
.throxy-wrapper .btn-theme {
  background-color: var(--theme-orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(231, 82, 39, 0.3);
  border: 1px solid transparent;
}

.throxy-wrapper .btn-theme:hover {
  background-color: transparent;
  color: var(--theme-orange);
  border-color: var(--theme-orange);
  transform: translateY(-2px);
}

/* MARQUEE ANIMATION */
.throxy-wrapper .marquee-container {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  mask-image: linear-gradient(
    to bottom,
    transparent 2%,
    black 15%,
    black 85%,
    transparent 98%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 2%,
    black 15%,
    black 85%,
    transparent 98%
  );
}

.throxy-wrapper .marquee-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 380px;
  padding: 20px 0;
  /* Speed set to 15s for a nice flow */
  animation: marqueeScroll 15s linear infinite;
}

/* Pause on Hover */
.throxy-wrapper .right-panel:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* CARDS */
.throxy-wrapper .feature-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
  border-left: 4px solid transparent;
  cursor: pointer;
}

.throxy-wrapper .feature-card:hover {
  transform: scale(1.02);
  border-left: 4px solid var(--theme-orange);
}

.throxy-wrapper .icon-box {
  width: 48px;
  height: 48px;
  background: rgba(231, 82, 39, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  color: var(--theme-orange);
  margin-top: 50px;
}

.throxy-wrapper .card-text {
  font-family: system-ui;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #333;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .throxy-wrapper {
    height: auto;
    overflow-y: auto;
  }
  .throxy-wrapper .split-layout {
    flex-direction: column;
    height: auto;
  }
  .throxy-wrapper .left-panel {
    padding: 60px 20px;
    min-height: 400px;
  }
  .throxy-wrapper .right-panel {
    height: 500px;
    padding: 20px;
  }
  .throxy-wrapper .marquee-track {
    width: 90%;
  }
}
/* Responsive wrapper */
.ark_trade_jan_table_wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Ensure table can scroll on small screens */
.ark_trade_jan_table {
  width: 100%;
  min-width: 720px; /* forces horizontal scroll instead of breaking */
  border-collapse: collapse;
}

.ark_trade_jan_table th,
.ark_trade_jan_table td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid #e9eef5;
  text-align: left;
  font-family: system-ui;
  font-size: 17px;
  font-weight: 600;
}

/* Mobile stacked view (optional but best) */
@media (max-width: 576px) {
  .ark_trade_jan_table {
    min-width: 100%;
  }

  .ark_trade_jan_table thead {
    display: none;
  }

  .ark_trade_jan_table,
  .ark_trade_jan_table tbody,
  .ark_trade_jan_table tr,
  .ark_trade_jan_table td {
    display: block;
    width: 100%;
  }

  .ark_trade_jan_table tr {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
  }

  .ark_trade_jan_table td {
    border: none;
    border-bottom: 1px solid #eef2f7;
  }

  .ark_trade_jan_table td:last-child {
    border-bottom: none;
  }

  /* Show label before each cell */
  .ark_trade_jan_table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
  }
}
