.site-footer {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  position: sticky;
  bottom: 0;
  z-index: 10;
}
.site-footer__bar {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer__count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.site-footer__count svg {
  width: 15px; height: 15px;
  stroke: var(--text-secondary);
  flex-shrink: 0;
  animation: spin 2s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.site-footer__report-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  border: none;
  padding: 12px 12px;
  cursor: pointer;
  background: none;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.site-footer__report-btn:hover {
  color: var(--text);
}
.site-footer__report-btn svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}
.site-footer__copy {
  font-size: 11px;
  color: var(--text-tertiary);
  padding-bottom: 8px;
}
.site-footer__copy span {
  color: var(--text-secondary);
  font-weight: 500;
}





/* ===== ЛИЧНЫЙ КАБИНЕТ (CABINET PANEL) — Windows 11 Fluent Design ===== */
