/* ══════════════════════════════════════════════════
   TIKTOK PUBLISHER — shared styles
   ══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap');

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface2: #1a1a1a;
  --border: #2a2a2a;
  --tt-pink: #fe2c55;
  --tt-cyan: #25f4ee;
  --tt-white: #ffffff;
  --text: #f0f0f0;
  --text-muted: #666;
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .4;
}

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--tt-pink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--tt-cyan);
  font-size: 18px;
}
.logo span { color: var(--tt-pink); }

.user-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  font-size: 13px;
  font-weight: 500;
}
.user-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tt-pink), var(--tt-cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

/* ── MAIN ── */
main { position: relative; z-index: 1; flex: 1; }

/* ── LOGIN SCREEN ── */
#loginScreen {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - 69px);
  padding: 40px;
}

.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 56px;
  max-width: 480px; width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.login-card::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(254,44,85,.15) 0%, transparent 70%);
  pointer-events: none;
}

.login-graphic {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--tt-pink) 0%, #7928ca 100%);
  border-radius: 24px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  box-shadow: 0 0 40px rgba(254,44,85,.4), 4px 4px 0 var(--tt-cyan);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(254,44,85,.4), 4px 4px 0 var(--tt-cyan); }
  50% { box-shadow: 0 0 60px rgba(254,44,85,.6), 4px 4px 0 var(--tt-cyan); }
}

.login-card h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; letter-spacing: 2px;
  line-height: 1; margin-bottom: 12px;
}
.login-card p {
  color: var(--text-muted);
  font-size: 15px; line-height: 1.6;
  margin-bottom: 36px;
}

/* CONFIG SECTION */
.config-section {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}
.config-section h3 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--tt-cyan);
  margin-bottom: 14px;
}
.input-group { margin-bottom: 12px; }
.input-group:last-child { margin-bottom: 0; }
.input-group label {
  display: block;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 6px; font-weight: 500;
}
.input-group input, .input-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  transition: border-color .2s;
}
.input-group input:focus, .input-group select:focus {
  outline: none;
  border-color: var(--tt-pink);
}
.input-group input::placeholder { color: #444; }

/* ── BUTTONS ── */
.btn-tiktok {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--tt-pink);
  color: white;
  border: none; border-radius: 12px;
  padding: 16px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.btn-tiktok::before {
  content: ''; position: absolute;
  inset: 0; background: white; opacity: 0;
  transition: opacity .15s;
}
.btn-tiktok:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,44,85,.5); }
.btn-tiktok:hover::before { opacity: .05; }
.btn-tiktok:active { transform: translateY(0); }

.btn-secondary {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 10px;
  padding: 10px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--tt-pink); color: var(--text); }

.btn-logout {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-logout:hover { border-color: var(--tt-pink); color: var(--tt-pink); }

.hint {
  font-size: 12px; color: #444;
  margin-top: 16px; line-height: 1.5;
}
.hint a { color: var(--tt-cyan); text-decoration: none; }

/* ── DASHBOARD ── */
#dashboard { display: none; padding: 32px; max-width: 1200px; margin: 0 auto; }

.dash-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 32px; gap: 16px; flex-wrap: wrap;
}
.dash-title { font-family: 'Bebas Neue', sans-serif; font-size: 38px; letter-spacing: 2px; }
.dash-title span { color: var(--tt-pink); }
.dash-sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* STATS ROW */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 32px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent, var(--tt-pink));
}
.stat-label { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 36px; margin-top: 6px; line-height: 1; }
.stat-value.cyan { color: var(--tt-cyan); }
.stat-value.pink { color: var(--tt-pink); }

/* TWO-COL LAYOUT */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* VIDEO LIST */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.panel-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.panel-header h2 { font-size: 15px; font-weight: 600; }
.panel-header small { font-size: 12px; color: var(--text-muted); }

.video-list { max-height: 520px; overflow-y: auto; }
.video-list::-webkit-scrollbar { width: 4px; }
.video-list::-webkit-scrollbar-track { background: transparent; }
.video-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.video-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
  position: relative;
}
.video-item:last-child { border-bottom: none; }
.video-item:hover { background: var(--surface2); }
.video-item.selected { background: rgba(254,44,85,.08); }
.video-item.selected::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--tt-pink);
}

.video-thumb {
  width: 52px; height: 52px; border-radius: 8px;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.video-thumb-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  border-radius: 8px;
}
.video-info { flex: 1; min-width: 0; }
.video-name { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.video-meta { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.video-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
  transition: all .2s;
}
.video-item.selected .video-check {
  background: var(--tt-pink); border-color: var(--tt-pink); color: white;
}

/* EMPTY STATE */
.empty {
  padding: 48px 24px; text-align: center;
  color: var(--text-muted); font-size: 14px;
}
.empty .empty-icon { font-size: 36px; margin-bottom: 12px; }

/* SERVER URL BAR */
.server-bar {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex; gap: 10px;
  background: var(--surface2);
}
.server-bar input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}
.server-bar input:focus { outline: none; border-color: var(--tt-cyan); }

/* PUBLISH PANEL */
.publish-panel { position: sticky; top: 85px; }

.selected-preview {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.selected-preview h3 { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }

.selected-video-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex; gap: 12px; align-items: center;
}
.selected-video-card .thumb {
  width: 42px; height: 42px; border-radius: 6px;
  background: linear-gradient(135deg, var(--tt-pink) 0%, #7928ca 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.no-selection {
  text-align: center; padding: 24px;
  color: var(--text-muted); font-size: 13px;
}
.no-selection .icon { font-size: 28px; margin-bottom: 8px; }

.publish-form { padding: 20px; }
.publish-form h3 { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.form-group textarea, .form-group select, .form-group input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  resize: vertical;
  transition: border-color .2s;
}
.form-group textarea:focus, .form-group select:focus, .form-group input:focus {
  outline: none; border-color: var(--tt-pink);
}
.char-count { font-size: 11px; color: var(--text-muted); text-align: right; margin-top: 4px; }

.privacy-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 16px;
}
.privacy-option {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  transition: all .2s;
}
.privacy-option:hover { border-color: var(--tt-pink); }
.privacy-option.active { border-color: var(--tt-pink); color: var(--tt-pink); background: rgba(254,44,85,.08); }
.privacy-option .p-icon { font-size: 18px; margin-bottom: 4px; }

.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.toggle {
  width: 36px; height: 20px;
  background: var(--border);
  border-radius: 10px;
  position: relative; cursor: pointer;
  transition: background .2s;
}
.toggle.on { background: var(--tt-pink); }
.toggle::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: white;
  transition: transform .2s;
}
.toggle.on::after { transform: translateX(16px); }

/* PUBLISH BUTTON */
.publish-actions { padding: 16px 20px; border-top: 1px solid var(--border); }

.btn-publish {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--tt-pink), #c0254a);
  color: white;
  border: none; border-radius: 10px;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.btn-publish:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(254,44,85,.5); }
.btn-publish:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-direct-post {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 10px;
  padding: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s;
}
.btn-direct-post:hover { border-color: var(--tt-cyan); color: var(--tt-cyan); }
.btn-direct-post:disabled { opacity: .4; cursor: not-allowed; }

/* ── STATUS TOAST ── */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  z-index: 999;
  transform: translateY(80px); opacity: 0;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 360px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: var(--tt-cyan); }
.toast.error { border-color: var(--tt-pink); }
.toast-icon { font-size: 20px; }

/* ── LOADING SPINNER ── */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 480px; width: 100%;
  transform: scale(.9) translateY(20px);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal h2 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; margin-bottom: 12px; }
.modal p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.modal pre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  font-size: 12px; font-family: monospace;
  color: var(--tt-cyan);
  overflow-x: auto;
  margin-bottom: 20px;
  white-space: pre-wrap; word-break: break-all;
}
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ── TABS ── */
.tabs {
  display: flex; gap: 4px;
  padding: 4px;
  background: var(--surface2);
  border-radius: 10px;
  margin-bottom: 20px;
}
.tab {
  flex: 1; padding: 8px 12px;
  border-radius: 7px; border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .2s;
  text-align: center;
}
.tab.active { background: var(--bg); color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,.3); }

/* ── CALLBACK SCREEN ── */
#callbackScreen {
  display: none;
  align-items: center; justify-content: center;
  min-height: calc(100vh - 69px);
  padding: 40px;
}
.callback-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  max-width: 420px; width: 100%;
  text-align: center;
}
.callback-card h2 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; margin-bottom: 12px; }
.callback-spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--tt-pink);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 24px;
}

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(37,244,238,.1);
  border: 1px solid rgba(37,244,238,.3);
  color: var(--tt-cyan);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .5px;
}
.badge.pink {
  background: rgba(254,44,85,.1);
  border-color: rgba(254,44,85,.3);
  color: var(--tt-pink);
}

/* ── TAG INPUT ── */
.tag-input {
  display: flex; flex-wrap: wrap; gap: 6px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: text;
  min-height: 42px; align-items: center;
  transition: border-color .2s;
}
.tag-input:focus-within { border-color: var(--tt-pink); }
.tag {
  background: rgba(254,44,85,.15);
  border: 1px solid rgba(254,44,85,.3);
  color: var(--tt-pink);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px; font-weight: 500;
  display: flex; align-items: center; gap: 4px;
}
.tag button { background: none; border: none; color: inherit; cursor: pointer; padding: 0; font-size: 14px; line-height: 1; }
.tag-input input {
  flex: 1; min-width: 80px;
  background: none; border: none; outline: none;
  color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 13px;
  padding: 0;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 1.5px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.footer-brand span { color: var(--tt-pink); }
.footer-links {
  display: flex; align-items: center; gap: 4px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.footer-links a:hover { color: var(--text); background: var(--surface2); }
.footer-links .sep {
  color: var(--border);
  font-size: 12px;
  user-select: none;
}
.footer-copy {
  font-size: 11px; color: #333;
}

/* ══════════════════════════════════════════════════
   LEGAL PAGES (terms / privacy)
   ══════════════════════════════════════════════════ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px 64px;
}
.legal-page .page-eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--tt-cyan); margin-bottom: 12px;
}
.legal-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px; letter-spacing: 2px; line-height: 1;
  margin-bottom: 8px;
}
.legal-page h1 span { color: var(--tt-pink); }
.legal-page .last-updated {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px;
  color: var(--tt-cyan);
  margin: 36px 0 14px;
}
.legal-page p {
  font-size: 14px; line-height: 1.8;
  color: #aaa;
  margin-bottom: 14px;
}
.legal-page ul {
  list-style: none;
  margin: 0 0 14px; padding: 0;
}
.legal-page ul li {
  font-size: 14px; line-height: 1.8; color: #aaa;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.legal-page ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--tt-pink);
  font-size: 12px;
}
.legal-page a { color: var(--tt-cyan); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-page .highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--tt-pink);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px; color: var(--text-muted); line-height: 1.7;
}
.legal-page .highlight-box strong { color: var(--text); }
