/* 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;
}

/* Newsletter forms */
.newsletter-form,
.footer-newsletter-form {
  width: 100%;
}
.newsletter-label {
  display: block;
  color: #bbb;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.newsletter-form-row,
.footer-form-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter-input,
.footer-newsletter-input {
  flex: 1;
  min-width: 180px;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(240, 185, 11, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  -webkit-appearance: none;
}
.newsletter-input:focus,
.footer-newsletter-input:focus {
  border-color: #f0b90b;
}
.newsletter-submit {
  padding: 0.65rem 1.4rem;
  background: #f0b90b;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  transition: background 0.2s;
}
.newsletter-submit:hover {
  background: #f7d44a;
}
@media (max-width: 480px) {
  .newsletter-form-row,
  .footer-form-row {
    flex-direction: column;
  }
  .newsletter-input,
  .footer-newsletter-input,
  .newsletter-submit {
    width: 100%;
  }
}

/* Article-top risk note */
.article-risk-note {
  background: rgba(240, 185, 11, 0.07);
  border-left: 3px solid #f0b90b;
  border-radius: 0 6px 6px 0;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
