body {
  background-color: #fef9f3;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding-bottom: 80px;
}

.app-header {
  background-color: #000;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
}

.app-header img {
  height: 40px;
  margin-right: 10px;
}

.section-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.card-smooth {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

.btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-black {
  background-color: #000;
  color: white;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
}

.btn-share {
  background-color: #e4d5b7;
  border: none;
  color: #000;
  border-radius: 10px;
  font-weight: 500;
  padding: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.post-img {
  border-radius: 10px;
  width: 100%;
  margin-top: 10px;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.bottom-nav a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  text-align: center;
}

.bottom-nav i {
  display: block;
  font-size: 20px;
}

.profile-pic {
  width: 30px;
  height: 30px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

#appVersion {
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  margin-top: 20px;
  margin-bottom: 10px;
}

.update-banner {
  position: fixed;
  bottom: 80px;
  left: 10px;
  right: 10px;
  background-color: #e4d5b7;
  color: #000;
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 500;
  z-index: 1050;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}