body { margin: 0; }
.container { max-width: 1000px; margin: 0 auto; padding: 16px; }
.site-header { border-bottom: 1px solid #eee; }
.logo { font-weight: 700; text-decoration: none; }
.nav a { margin-right: 12px; text-decoration: none; }
.btn { padding: 8px 12px; border: 1px solid #ddd; border-radius: 8px; }

/* === UV Footer (из uv-footer.css, фон локально) === */
:root {
  --uv-footer-height: 115px;
  --uv-footer-bg-color: #8a758a;
  --uv-footer-gap: 50px;
  --uv-footer-maxw: 1000px;
  --uv-footer-font-size: 16px;
  --uv-footer-font-weight: 300;
  --uv-footer-line-height: 1.25;
  --uv-footer-bg-url: url("/assets/images/Footer_BG.png");
  --uv-footer-bg-width: 1251px;
  --uv-footer-bg-height: 115px;
}
.uv-sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
#uv-forum-footer {
  position: relative; width: 100%; height: var(--uv-footer-height);
  background-color: var(--uv-footer-bg-color);
  background-image: var(--uv-footer-bg-url);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: var(--uv-footer-bg-width) var(--uv-footer-bg-height);
  display: flex; align-items: center; justify-content: center;
  box-sizing: border-box; padding: 12px 20px; z-index: 10;
}
#uv-forum-footer .uv-footer-inner {
  width: 100%; max-width: var(--uv-footer-maxw);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: start; justify-items: start; gap: var(--uv-footer-gap);
}
#uv-forum-footer .uv-footer-col {
  font-family: "TildaSans", "Tilda Sans", "TildaSans-Light", Inter, Arial, sans-serif;
  font-weight: var(--uv-footer-font-weight);
  font-size: var(--uv-footer-font-size);
  line-height: var(--uv-footer-line-height);
  color: #fff;
}
#uv-forum-footer .uv-footer-links { list-style: none; padding: 0; margin: 0; }
#uv-forum-footer .uv-footer-links li { margin: 2px 0; }
#uv-forum-footer a { color: #fff !important; text-decoration: none; }
#uv-forum-footer a:hover,
#uv-forum-footer a:focus { text-decoration: underline; outline: none; }
@media (max-width: 700px) {
  :root { --uv-footer-gap: 24px; }
  #uv-forum-footer { padding: 10px 14px; }
}
@media (max-width: 420px) {
  #uv-forum-footer .uv-footer-inner { justify-items: center; text-align: center; }
}
