:root { --nav-h: 54px; }

body {
  margin: 0;
  padding: 0 0 var(--nav-h);
  background-color: #fafafa;
  color: #222;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}


.page-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  padding: 10px 32px;
  margin-bottom: 10px;
}

.page-logo-container img {
  height: 60px;
  width: 60px;
  opacity: 0.95;
}

.page-logo-container h1,
.feed-header .page-logo-container h1 {
  margin: 0;
  font-family: "Poppins", Inter, system-ui, sans-serif;
  font-style: normal !important;
  font-weight: 800 !important;
  font-size: 2rem;
  letter-spacing: 0.8px;
  line-height: 1.7;
  background: linear-gradient(90deg, #ff6600, #ff007f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main.content-wrapper {
  margin: 20px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 24px;
  max-width: 850px;
}

.bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--nav-h);
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0;
  box-sizing: border-box;
}

.bottom-nav img {
  width: 26px;
  height: 26px;
  opacity: 0.9;
  transition: transform .2s, opacity .2s;
}
.bottom-nav img:hover { opacity: 1; transform: scale(1.08); }
