/* third_party_services 子站样式 */
body { background: #15171c; color: #d6d9de; }
.tps-card { background: #1d2027; border: 1px solid #2a2f38; }
.tps-card .card-footer { background: transparent; }
.tps-content { line-height: 1.7; word-break: break-word; }
.tps-content a { color: #5dc8ff; }
.tps-content pre, .tps-content code { background: #0f1115; color: #e9c46a; padding: .1em .3em; border-radius: 3px; }
.tps-compliance-box { max-height: 240px; overflow-y: auto; background: #0f1115; }
.dark-subtle, .bg-dark-subtle { background-color: #181b22 !important; }
.navbar-brand { letter-spacing: .5px; }
.btn-outline-info:hover { color: #0a0d12; }
.badge.bg-info-subtle { background-color: #0d3b4a !important; }

/* 合规复选框未勾时的高亮抖动反馈 */
.tps-agree-flash {
  animation: tpsAgreeShake 0.5s ease-in-out 0s 2;
  outline: 2px solid #f5c2c7;
  outline-offset: 4px;
  border-radius: 4px;
  background-color: rgba(220, 53, 69, 0.12);
}
@keyframes tpsAgreeShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
