.ai-chart-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.ai-chart-tooltip-card {
    position: absolute;
    /* bottom: 130%; */
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: #2b2f33;
    color: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Show on hover */
.ai-chart-tooltip-wrapper:hover .ai-chart-tooltip-card {
    opacity: 1;
    visibility: visible;
}

/* Header */
.ai-chart-tooltip-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 10px;
}

.ai-chart-tooltip-close {
    opacity: 0.6;
}

/* Chart */
.ai-chart-tooltip-chart {
    position: relative;
    margin-bottom: 12px;
}

.ai-chart-tooltip-chart img {
    width: 100%;
    border-radius: 10px;
}

/* .ai-chart-tooltip-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #1f2937;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 8px;
    border: 1px solid #f59e0b;
} */

/* Text */
.ai-chart-tooltip-title {
    font-weight: 600;
    margin: 12px 0;
    text-align: left;
    font-size: 12px;
}

.ai-chart-tooltip-list {
    padding-left: 0px;
    font-size: 10px;
    line-height: 1.5;
    list-style: none;
    text-align: left;
}

.ai-chart-tooltip-list li {
    margin-bottom: 6px;
}

/* Links & CTA */
.ai-chart-tooltip-learn {
    display: block;
    color: #93c5fd;
    font-size: 13px;
    margin: 8px 0;
    text-decoration: none;
    float: right;
}

.ai-chart-tooltip-learn:hover {
    color: #fff;
    
}

.ai-chart-tooltip-cta {
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(90deg, #a855f7, #facc15);
    border: none;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}


/* MAIN BANNER */
.ads-invest-banner {
  background: url("../img/ads_images/gradient-bg1.svg") center/cover no-repeat;
  padding: 60px 40px;
  color: #fff;
  position: relative;
}

/* DARK OVERLAY */
.ads-invest-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.2) 100%
  );
}

.ads-invest-banner-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.ads-invest-banner-content {
  max-width: 600px;
}

.ads-invest-banner-content h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ads-invest-banner-content h1 span {
  color: #ff9a3c;
}

.banner-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 28px;
}

.ads-invest-banner-content p strong {
  color: #fff;
}

/* CTA BUTTON */
.ads-invest-banner-btn {
  display: inline-block;
  padding: 14px 60px;
  background: linear-gradient(135deg, #ff8a00, #ff5f00);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 20px;
}

.ads-invest-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,138,0,0.4);
}

/* RIGHT IMAGE */
.ads-invest-banner-visual {
  flex-shrink: 0;
}

.ads-invest-banner-visual img {
  max-width: 400px;
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ads-invest-banner-container {
    flex-direction: column;
    text-align: center;
  }

  .ads-invest-banner-content h1 {
    font-size: 30px;
  }

  .ads-invest-banner-visual img {
    max-width: 240px;
  }
}

@media (max-width: 576px) {
  .ads-invest-banner {
    padding: 40px 20px;
  }

  .ads-invest-banner-content h1 {
    font-size: 24px;
  }

  .ads-invest-banner-content p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
    .ai-chart-tooltip-card {
        width: 300px;
        left: -28vh;
        transform: translateX(-50%);
        padding: 14px;
    }

    .ai-chart-tooltip-title {
        font-size: 14px;
    }

    .ai-chart-tooltip-list {
        font-size: 12px;
    }
}


@media (min-width: 768px) and (max-width: 991px){
    .ai-chart-tooltip-card {
        left: -12vh;
        }
        
}

/* MAIN BANNER */
.side-invest-banner {
  background: url("../img/ads_images/gradient-bg1.svg") center/cover no-repeat;
  padding: 10px;
  color: #fff;
  position: relative;
}

/* DARK OVERLAY */
.side-invest-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.2) 100%
  );
}

.side-invest-banner-container {
  position: relative;
  /* max-width: 1200px; */
  margin: auto;
  display: block;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.side-invest-banner-content {
  /* max-width: 400px; */
  text-align: center;
}

.side-invest-banner-content h1 {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.side-invest-banner-content h1 span {
  color: #ff9a3c;
}

.side-invest-banner-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 28px;
}

.side-invest-banner-content p strong {
  color: #fff;
}

/* CTA BUTTON */
.side-invest-banner-btn {
  display: inline-block;
  padding: 10px 60px;
  background: linear-gradient(135deg, #ff8a00, #ff5f00);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-invest-banner-visual
{
    text-align: center;
}

.side-invest-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,138,0,0.4);
}

/* RIGHT IMAGE */
.side-invest-banner-visual {
  flex-shrink: 0;
}

.side-invest-banner-visual img {
  max-width: 200px;
  width: 100%;
}

.green-ban-hero {
    width: 100%;
    height: 100%;
    background: url("../img/ads_images/green125.svg") no-repeat;
    background-position: center;
    background-size: contain;
    object-fit: contain;
  }

  .green-ban-hero-content {
    width: 100%;
    color: #ffffff;
    padding: 20px 15%;
  }

  .green-ban-hero-logo {
    width: 80px;
    margin-bottom: 20px;
  }

  .green-ban-hero-head{
    font-size: 18px;
    font-weight: 900;
    color: #fbbf04;
    margin-bottom: 2px;
    letter-spacing:1px;
  }

  .green-ban-hero-title {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing:1px;
  }

  .green-ban-hero-btn {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #f4c430, #ff9f00);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 10px;
  }

  a.green-ban-hero-btn:hover {
    text-decoration: none;
    color: white;
  }

  .green-ban-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  /* Tablet */
  @media (max-width: 992px) {
    .green-ban-hero-title {
      font-size: 32px;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .green-ban-hero {
      padding: 40px 6%;
      text-align: center;
    }

    .green-ban-hero-content {
      margin: auto;
    }

    .green-ban-hero-logo {
      margin: 0 auto 20px;
    }

    .green-ban-hero-title {
      font-size: 26px;
    }
  }


  .purple-ban-hero {
    width: 100%;
    height: 100%;
    background: url("../img/ads_images/purple128.svg") no-repeat;
    background-position: center;
    background-size: contain;
    object-fit: contain;
  }

  .purple-ban-hero-content {
    width: 100%;
    color: #ffffff;
    text-align: center;
    padding: 8px 20%;
  }

  .purple-ban-hero-logo {
    width: 80px;
    margin-bottom: 20px;
  }

  .purple-ban-hero-head{
    font-size: 18px;
    font-weight: 900;
    color: #04affb;
    margin-bottom: 2px;
    letter-spacing:1px;
  }

  .purple-ban-hero-title {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing:1px;
  }

  .purple-ban-hero-btn {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #04affb, #00ff8e);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 10px;
  }

  a.purple-ban-hero-btn:hover {
    text-decoration: none;
    color: white;
  }

  .purple-ban-hero-btn:hover {
    transform: translateY(-2px);
  }

  /* Tablet */
  @media (max-width: 992px) {
    .purple-ban-hero-title {
      font-size: 32px;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .purple-ban-hero {
      padding: 8px;
      text-align: center;
    }

    .purple-ban-hero-content {
      margin: auto;
      padding: 8px 0px;
    }

    .purple-ban-hero-logo {
      margin: 0 auto 20px;
    }

    .purple-ban-hero-head {
    font-size: 7px;
    font-weight: 900;
    color: #04affb;
    margin-bottom: 2px;
    }

    .purple-ban-hero-title {
      font-size: 6px;
    }

    .purple-ban-hero-btn {
    display: inline-block;
    padding: 2px 5px;
    background: linear-gradient(135deg, #04affb, #00ff8e);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 6px;
  }
  }


  
  .trading-ban-hero {
    width: 100%;
    height: 100%;
    background: url("../img/ads_images/blue125.svg") no-repeat;
    background-position: center;
    background-size: contain;
    object-fit: contain;
  }

  .trading-ban-hero-content {
    width: 100%;
    color: #ffffff;
    text-align: center;
    padding: 8px 0px;
  }

  .trading-ban-hero-logo {
    width: 80px;
    margin-bottom: 20px;
  }

  .trading-ban-hero-head{
    font-size: 18px;
    font-weight: 900;
    color: #29fb04;
    margin-bottom: 2px;
    letter-spacing:1px;
  }

  .trading-ban-hero-title {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing:1px;
  }

  .trading-ban-hero-btn {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #29fb04, #00ff8e);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 10px;
  }

  a.trading-ban-hero-btn:hover {
    text-decoration: none;
    color: white;
  }

  .trading-ban-hero-btn:hover {
    transform: translateY(-2px);
  }

  /* Tablet */
  @media (max-width: 992px) {
    .trading-ban-hero-title {
      font-size: 32px;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .trading-ban-hero {
      padding: 40px 6%;
      text-align: center;
    }

    .trading-ban-hero-content {
      margin: auto;
    }

    .trading-ban-hero-logo {
      margin: 0 auto 20px;
    }

    .trading-ban-hero-title {
      font-size: 26px;
    }
  }

/* RESPONSIVE */
/* @media (max-width: 992px) {
  .side-invest-banner-container {
    flex-direction: column;
    text-align: center;
  }

  .side-invest-banner-content h1 {
    font-size: 30px;
  }

  .side-invest-banner-visual img {
    max-width: 240px;
  }
}

@media (max-width: 576px) {
  .side-invest-banner {
    padding: 40px 20px;
  }

  .side-invest-banner-content h1 {
    font-size: 24px;
  }

  .side-invest-banner-content p {
    font-size: 14px;
  }
} */


/*side bar css btc*/

.btc_sidebar-banner {
    position: relative;
    width: 100%;
    max-width: 470px;
    border-radius: 14px;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    margin: auto;
  }

  .btc_sidebar-banner img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
  }

  .btc_banner-overlay {
    position: absolute;
    inset: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.15),
      transparent
    );
  }

  .btc_banner-headline {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .btc_banner-subtext {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 10px;
  }

  .btc_banner-btn {
    z-index: 9999;
    display: inline-block;
    align-self: flex-start;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0b0b0b;
    background: #00f2a9;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .btc_banner-btn:hover {
    background: #00d696;
    transform: translateY(-1px);
  }

  /* Responsive tweaks */
  @media (max-width: 480px) {
    .btc_banner-headline {
      font-size:10px;
    }

    .btc_banner-subtext {
      font-size: 6px;
      margin-bottom: 0;
    }

    .btc_banner-btn {
      font-size: 8px;
      padding: 5px 8px;
    }
  }