:root {
    --pm-blue: #1e62ff;
    --pm-dark: #12141d;
    --pm-gray: #6b7280;
    --pm-light: #f3f4f6;
    --pm-green: #10b981;
}

.pred-mkt-hero {
    padding: 80px 5%;
    overflow: hidden;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.pred-mkt-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LEFT CONTENT */
.pred-mkt-left {
    flex: 1;
    z-index: 10;
}

.pred-mkt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pm-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pred-mkt-dot {
    width: 8px;
    height: 8px;
    background: var(--pm-blue);
    border-radius: 50%;
}

.pred-mkt-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--pm-dark);
    margin-bottom: 24px;
}

.pred-mkt-gradient {
    color: var(--pm-blue);
}

.pred-mkt-subtitle {
    font-size: 1.15rem;
    color: var(--pm-gray);
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 40px;
}

/* FORM */
.pred-mkt-input-wrap {
    display: flex;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 500px;
}

.pred-mkt-input-wrap input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    outline: none;
    font-size: 1rem;
}

.pred-mkt-input-wrap button {
    background: var(--pm-blue);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.pred-mkt-input-wrap button:hover {
    background: #0049e6;
    transform: translateY(-2px);
}

.pred-mkt-disclaimer {
    font-size: 0.85rem;
    color: var(--pm-gray);
    margin-top: 15px;
}

/* RIGHT VISUAL */
.pred-mkt-right {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pred-mkt-circle-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--pm-blue);
    border-radius: 50%;
    z-index: 1;
}

.pred-mkt-main-asset {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    width: 100%;
}

.pred-mkt-main-asset img {
    max-width: 108%;
    height: auto;
    position: absolute;
    left: 0%;
    bottom: -195px;
    border-radius: 4%;
}

/* FLOATING CARDS */
.pred-mkt-float {
    position: absolute;
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 5;
    animation: pm-float-anim 4s ease-in-out infinite;
}

.float-1 { top: 10%; left: 0%; width: 220px; }
.float-2 { bottom: 5%; right: 0%; width: 200px; animation-delay: 1s; }
.float-3 { top: 40%; right: -10%; width: 180px; animation-delay: 2s; }

/* Card styles */
.pm-card-header { display: flex; gap: 10px; align-items: center; margin-bottom: 10px;}
.pm-card-header img { width: 35px; border-radius: 50%; }
.pm-card-header div { display: flex; flex-direction: column; }
.pm-card-header strong { font-size: 0.85rem; }
.pm-card-header span { font-size: 0.7rem; color: var(--pm-gray); }

.pm-pill { padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: bold; }
.pm-pill.green { background: #ecfdf5; color: var(--pm-green); }

.pm-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 5px 0; border-top: 1px solid #f3f4f6;}
.pm-event { font-weight: bold; margin-bottom: 8px; font-size: 0.9rem;}
.pm-val.blue { color: var(--pm-blue); font-weight: bold;}

/* DECO DOTS */
.pred-mkt-dot-deco { position: absolute; width: 15px; height: 15px; border-radius: 50%; z-index: 3;}
.d1 { background: #ff4785; top: 10%; right: 20%; }
.d2 { background: #ffb400; bottom: 20%; left: 10%; }
.d3 { background: var(--pm-blue); bottom: 10%; left: 40%; width: 10px; height: 10px;}

@keyframes pm-float-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pred-mkt-container { flex-direction: column; text-align: center; }
    .pred-mkt-subtitle { margin: 0 auto 40px; }
    .pred-mkt-input-wrap { margin: 0 auto; }
    .pred-mkt-float { display: none; } /* Simplify on tablet/mobile */
}

:root {
    --cp-bg: #F8F7FF; /* Light lavender background from image */
    --cp-purple-dark: #2A1B54;
    --cp-text: #4A4A68;
    --cp-accent: #7B61FF;
}

.cp-feat-wrapper {
    background-color: var(--cp-bg);
    padding: 100px 5%;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.cp-feat-header {
    text-align: center;
    margin-bottom: 80px;
}

.cp-feat-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cp-purple-dark);
    font-weight: 800;
    line-height: 1.1;
}

.cp-feat-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Row Styling */
.cp-feat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 120px;
    opacity: 0; /* For JS reveal */
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.cp-feat-row.cp-feat-visible {
    opacity: 1;
    transform: translateY(0);
}

.cp-feat-reverse {
    flex-direction: row-reverse;
}

/* Image Box */
.cp-feat-image-box {
    flex: 1;
    background: #EBEAFF;
    border-radius: 40px;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(123, 97, 255, 0.05);
}

.cp-feat-placeholder {
    color: var(--cp-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Box */
.cp-feat-text-box {
    flex: 1;
    max-width: 500px;
}

.cp-feat-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #D1D1E9;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cp-purple-dark);
    margin-bottom: 25px;
}

.cp-feat-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cp-purple-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cp-feat-desc {
    font-size: 1.1rem;
    color: var(--cp-text);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .cp-feat-row, .cp-feat-reverse {
        flex-direction: column;
        text-align: center;
        margin-bottom: 80px;
    }
    .cp-feat-image-box {
        width: 100%;
        margin-bottom: 30px;
    }
    .cp-feat-text-box {
        max-width: 100%;
    }
}


.catb-action-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.catb-btn-primary,
.catb-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.catb-btn-primary {
  background: #0a0a0a;
  color: #fff;
  border: 1px solid #0a0a0a;
}

.catb-btn-primary:hover {
  background: #1b1b1b;
  color: #fff;
}

.catb-btn-secondary {
  background: transparent;
  color: #111;
  border: 2px solid #111;
}

.catb-btn-secondary:hover {
  background: #111;
  color: #fff;
}

.catb-btn-icon {
  font-size: 15px;
  line-height: 1;
}






/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
  .pred-mkt-container,
  .cp-feat-container,
  .cp-feat-header {
    width: min(100% - 28px, 100%);
  }

  .pred-mkt-hero {
    padding: 42px 0 30px;
  }

  .pred-mkt-title {
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
  }

  .pred-mkt-subtitle {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .catb-action-group {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .catb-btn-primary,
  .catb-btn-secondary {
    width: 100%;
    min-height: 52px;
    padding: 13px 20px;
    font-size: 15px;
  }

  .pred-mkt-right {
    min-height: 360px;
  }

  .pred-mkt-circle-bg {
    width: 280px;
    height: 280px;
  }

  .pred-mkt-main-asset {
    max-width: 230px;
  }

  .pred-mkt-float {
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.12);
  }

  .float-2 {
    width: 160px;
    padding: 12px;
    right: 0;
    bottom: 18px;
  }

  .float-3 {
    width: 150px;
    padding: 12px;
    right: 0;
    top: 22px;
  }

  .pm-event {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .pm-row {
    font-size: 12px;
    margin-top: 6px;
    gap: 8px;
  }

  .pm-status {
    font-size: 12px;
    gap: 8px;
  }

  .pm-volume {
    margin-top: 6px;
    font-size: 12px;
  }

  .pred-mkt-dot-deco.d1 {
    width: 10px;
    height: 10px;
    right: 32px;
    top: 44px;
  }

  .pred-mkt-dot-deco.d2 {
    width: 10px;
    height: 10px;
    left: 20px;
    bottom: 45px;
  }

  .pred-mkt-dot-deco.d3 {
    width: 8px;
    height: 8px;
    right: 25px;
    top: 150px;
  }

  .cp-feat-wrapper {
    padding: 48px 0;
  }

  .cp-feat-header {
    margin-bottom: 28px;
  }

  .cp-feat-main-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .cp-feat-container {
    gap: 28px;
  }

  .cp-feat-row {
    gap: 18px;
  }

  .cp-feat-placeholder {
    border-radius: 20px;
  }

  .cp-feat-index {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .cp-feat-title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .cp-feat-desc {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* =========================
   Extra small mobile
========================= */
@media (max-width: 480px) {
  .pred-mkt-title {
    font-size: 24px;
  }

  .pred-mkt-subtitle {
    font-size: 13px;
  }

  .pred-mkt-right {
    min-height: 320px;
  }

  .pred-mkt-circle-bg {
    width: 240px;
    height: 240px;
  }

  .pred-mkt-main-asset {
    max-width: 200px;
  }

  .float-2 {
    width: 145px;
    bottom: 10px;
    right: -2px;
  }

  .float-3 {
    width: 136px;
    top: 10px;
    right: -2px;
  }

  .cp-feat-title {
    font-size: 20px;
  }
}