.site-menu-wrap {
  position: sticky;
  top: 0;
  z-index: 150;
  padding: 10px 14px;
}

.site-menu {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.neo-glass {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(148,163,184,.25);
  box-shadow: 0 12px 26px rgba(15,23,42,.10);
  backdrop-filter: blur(8px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.site-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  transition: all .16s ease;
}

.site-link:hover {
  color: #0f172a;
  background: rgba(59,130,246,.12);
}

.site-link.is-active {
  color: #fff;
  background: linear-gradient(135deg,#2563eb,#1d4ed8);
}

.site-menu-toggle {
  display: none;
  border: 0;
  background: rgba(15,23,42,.08);
  color: #0f172a;
  border-radius: 10px;
  width: 38px;
  height: 38px;
}

@media (max-width: 860px) {
  .site-menu {
    flex-wrap: wrap;
  }

  .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 6px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-link {
    width: 100%;
    justify-content: center;
  }
}

body.easter-mode {
  filter: hue-rotate(18deg) saturate(1.08);
}

body.easter-mode::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 15%, rgba(236, 72, 153, 0.14), transparent 38%),
              radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.18), transparent 42%);
  z-index: 1;
}

.easter-toast {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.24);
}
