/* Binance CTA */
.binance-cta {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.cta-gold-border {
  height: 4px;
  background: linear-gradient(90deg, #f0b90b, #f7d44a, #f0b90b);
}
.cta-content {
  padding: 1.5rem 2rem;
}
.cta-title {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: #f0b90b;
}
.cta-text {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-button-primary,
.cta-button-secondary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-button-primary {
  background: #f0b90b;
  color: #000;
}
.cta-button-primary:hover {
  background: #f7d44a;
  transform: translateY(-1px);
}
.cta-button-secondary {
  background: transparent;
  color: #f0b90b;
  border: 1px solid #f0b90b;
}
.cta-button-secondary:hover {
  background: rgba(240, 185, 11, 0.1);
}
.cta-disclaimer {
  font-size: 0.75rem;
  color: #666;
  margin: 0.8rem 0 0;
}

/* Newsletter CTA - article end */
.newsletter-cta {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-cta-content {
  padding: 1.5rem 2rem;
}
.newsletter-cta h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1.2rem;
}
.newsletter-cta p {
  margin: 0 0 1rem;
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer newsletter */
.footer-newsletter {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0.5rem;
}
.footer-newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}
.footer-newsletter-inner strong {
  color: #f0b90b;
}
.footer-newsletter-inner span {
  color: #888;
  font-size: 0.85rem;
}
.footer-subscribe-btn {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: #f0b90b;
  color: #000;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}
.footer-subscribe-btn:hover {
  background: #f7d44a;
}
