.main-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  width: 100%;
}

.topbar {
  background: #16a34a;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-container {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.topbar-item:hover {
  opacity: 0.9;
}

.topbar-icon {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.topbar-follow {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.topbar-socials a:hover {
  background: rgba(238, 238, 238, 0.16);
  transform: translateY(-2px);
}