.intertrader-guide-popup.desktop {
  position: fixed;
  width: 900px;
  height: 725px;
  padding: 32px 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 10000;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.intertrader-guide-popup.mobile {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 70vh;
  background: #fff;
  z-index: 10000;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tv-guide-content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 2em 1em 2em;
  font-size: 1.5em;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
}

.tv-guide-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}

.guide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: start;
}

.guide-content-title {
  color: rgba(0, 0, 0, 0.87);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.46px;
  text-transform: capitalize;
}

.guide-text {
  margin-top: 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.60);
  margin-bottom: 20px;
}

.cta-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 360px;
  height: 48px;
  background: #4C61FF;
  color: #fff;
  border: none;
  font-size: 15px;
  letter-spacing: 0.46px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(45,108,246,0.08);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #1a4db8;
}

.guide-steps-indicator {
  margin-top: 1.5em;
  color: #888;
  font-size: 1em;
}

.guide-loading {
  margin-top: -80px;
  text-align: center;
  font-size: 1.2em;
  color: #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex: 1;
}

.guide-loading img {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
}

.guide-navbar {
  display: flex;
  gap: 2px;
  scroll-behavior: smooth;
}

.guide-nav-item {
  display: flex;
  width: 140px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 4px 0px 0px;
  background: rgba(245, 245, 245, 0.60);
  border-bottom: 2px solid rgba(76, 97, 255, 0.10);
  cursor: pointer;
}

.guide-nav-item-active  {
  border-bottom: 2px solid  #1D3854;
  background:rgba(133, 147, 255, 0.08);
}

.guide-nav-item-text {
  color: rgba(0, 0, 0, 0.60);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 173.333% */
  letter-spacing: 0.46px;
  text-transform: capitalize;
}

.guide-nav-item-text-active {
  color: #15202B;
}

.mobile-iframe-tradingview {
  width: 100%;
  height: 420px;
  display: block;
  margin: 0 auto;
  margin-top: 50px;
  min-height: '300px';
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .intertrader-guide-popup.desktop {
    width: 98vw;
    height: 90vh;
  }
}
@media (max-width: 600px) {
  .guide-header {
    font-size: 1.1em;
    padding: 1em;
  }
  .guide-content {
    padding: 1em;
  }
  .guide-content img {
    max-width: 100%;
    max-height: 180px;
  }

  .tv-get-started-title {
    padding-left: 16px;
    padding-right: 16px;
  }
  .tv-guide-close-btn {
    position: absolute;
    font-size: 36px;
    top: 2px;
    right: 16px;
  }
  .guide-navbar {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  .guide-nav-item {
    flex: 0 0 140px;
    min-width: 140px;
    max-width: 140px;
  }
}

.tv-get-started-title {
  font-size: 20px;
  line-height: 160%;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
  letter-spacing: 0.15px;
}
